fix: 项目--删除任务详情删除前有聊天记录显示异常修改

This commit is contained in:
韦荣超 2022-03-14 12:14:49 +08:00
parent 3f71162e9d
commit 42106e907d
2 changed files with 2 additions and 2 deletions

View File

@ -290,7 +290,7 @@
:value="taskId > 0" :value="taskId > 0"
:styles="{ :styles="{
width: '90%', width: '90%',
maxWidth: taskData.dialog_id ? '1200px' : '700px' maxWidth: taskData.dialog_id && !taskData.deleted_at ? '1200px' : '700px'
}" }"
:mask-closable="false" :mask-closable="false"
:footer-hide="true" :footer-hide="true"

View File

@ -619,7 +619,7 @@ export default {
}, },
hasOpenDialog() { hasOpenDialog() {
return this.taskDetail.dialog_id > 0 && !this.windowMax768; return this.taskDetail.dialog_id > 0 && !this.windowMax768 && !this.taskDetail.deleted_at;
}, },
dialogStyle() { dialogStyle() {