mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 04:46:46 +08:00
Merge branch 'master' of ssh://gitlab.dongwu-inc.com:10022/BOE/fe-manage
This commit is contained in:
@@ -192,6 +192,7 @@
|
||||
v-model:chooseStageId="chooseStageId"
|
||||
v-model:isLiveEdit="isLiveEdit"
|
||||
v-model:EditLiveId="EditLiveId"
|
||||
v-model:projectTaskId="projectTaskId"
|
||||
/>
|
||||
</div>
|
||||
<!-- 添加直播侧弹窗 -->
|
||||
@@ -208,11 +209,13 @@
|
||||
<div>
|
||||
<add-ref
|
||||
v-model:addrefVisible="addrefvisible"
|
||||
:isLevel=false
|
||||
@changeData="updateTableData"
|
||||
v-model:projectId="projectId"
|
||||
v-model:chooseStageId="chooseStageId"
|
||||
v-model:isRefEdit="isRefEdit"
|
||||
v-model:EditRefId="EditRefId"
|
||||
v-model:projectTaskId="projectTaskId"
|
||||
/>
|
||||
</div>
|
||||
<!-- 添加外链侧弹窗 -->
|
||||
@@ -867,8 +870,8 @@ export default {
|
||||
: null,
|
||||
chooseStageId: null,
|
||||
edit: false,
|
||||
isRefEdit: 1, //外链编辑
|
||||
isLiveEdit: 1, //直播编辑
|
||||
isRefEdit: false, //外链编辑
|
||||
isLiveEdit:false, //直播编辑
|
||||
EditRefId: null, //要编辑的外链的id
|
||||
EditLiveId: null, //要编辑的直播的id
|
||||
editDiscussId:null,//要编辑的讨论的id
|
||||
@@ -1714,7 +1717,9 @@ export default {
|
||||
const showDrawerAddLive = () => {
|
||||
state.addlivevisible = true;
|
||||
};
|
||||
const showDrawerAddRef = () => {
|
||||
const showDrawerAddRef = (id,eleId) => {
|
||||
state.EditRefId = id
|
||||
state.projectTaskId = eleId;
|
||||
state.addrefvisible = true;
|
||||
};
|
||||
const showDrawerAddDiscuss = () => {
|
||||
@@ -1824,7 +1829,7 @@ export default {
|
||||
//打开编辑外链的弹窗
|
||||
const showEditRefDrawer = (id) => {
|
||||
state.addrefvisible = true;
|
||||
state.isRefEdit = 2;
|
||||
state.isRefEdit = true;
|
||||
state.EditRefId = id;
|
||||
};
|
||||
//打开编辑直播的弹窗
|
||||
|
||||
Reference in New Issue
Block a user