mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 12:56:45 +08:00
编辑外链
This commit is contained in:
@@ -183,6 +183,7 @@
|
||||
v-model:chooseStageId="chooseStageId"
|
||||
v-model:isLiveEdit="isLiveEdit"
|
||||
v-model:EditLiveId="EditLiveId"
|
||||
v-model:projectTaskId="projectTaskId"
|
||||
/>
|
||||
</div>
|
||||
<!-- 添加直播侧弹窗 -->
|
||||
@@ -199,11 +200,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>
|
||||
<!-- 添加外链侧弹窗 -->
|
||||
@@ -857,8 +860,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
|
||||
@@ -1694,7 +1697,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 = () => {
|
||||
@@ -1804,7 +1809,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