-- fix bug

This commit is contained in:
yuping
2023-03-02 16:59:23 +08:00
parent 8f33a96e67
commit a9900bc66c
2 changed files with 2 additions and 2 deletions

View File

@@ -408,7 +408,7 @@ watch(() => routerInfo.value.chapterList, () => {
}, { deep: true }); }, { deep: true });
const showModal = () => { const showModal = () => {
formValue.value = {}; formValue.value = {draftTaskList: []}
modal.value = true; modal.value = true;
}; };
function showEditModal(ele){ function showEditModal(ele){

View File

@@ -513,7 +513,7 @@ const closeModal = () => {
}; };
//显示添加阶段弹窗 //显示添加阶段弹窗
const showModal = () => { const showModal = () => {
formValue.value = {} formValue.value = {taskDraftDtoList: []}
stage.value = true stage.value = true
}; };
const editModal = () => { const editModal = () => {