mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:19:56 +00:00
fix: 项目--删除任务详情删除前有聊天记录显示异常修改
This commit is contained in:
parent
3f71162e9d
commit
42106e907d
@ -290,7 +290,7 @@
|
||||
:value="taskId > 0"
|
||||
:styles="{
|
||||
width: '90%',
|
||||
maxWidth: taskData.dialog_id ? '1200px' : '700px'
|
||||
maxWidth: taskData.dialog_id && !taskData.deleted_at ? '1200px' : '700px'
|
||||
}"
|
||||
:mask-closable="false"
|
||||
:footer-hide="true"
|
||||
|
||||
@ -619,7 +619,7 @@ export default {
|
||||
},
|
||||
|
||||
hasOpenDialog() {
|
||||
return this.taskDetail.dialog_id > 0 && !this.windowMax768;
|
||||
return this.taskDetail.dialog_id > 0 && !this.windowMax768 && !this.taskDetail.deleted_at;
|
||||
},
|
||||
|
||||
dialogStyle() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user