mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-16 14:12:51 +00:00
fix: 会议窗口恢复不显示的情况
This commit is contained in:
parent
175864403e
commit
7ad8abce6b
@ -45,6 +45,7 @@
|
|||||||
<Modal
|
<Modal
|
||||||
v-model="meetingShow"
|
v-model="meetingShow"
|
||||||
:title="addData.name"
|
:title="addData.name"
|
||||||
|
ref="meetingModal"
|
||||||
:mask="false"
|
:mask="false"
|
||||||
:mask-closable="false"
|
:mask-closable="false"
|
||||||
:closable="false"
|
:closable="false"
|
||||||
@ -173,6 +174,11 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
$A.eeuiAppKeepScreenOff()
|
$A.eeuiAppKeepScreenOff()
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
meetingMini(val) {
|
||||||
|
if (!val) {
|
||||||
|
this.$refs.meetingModal.modalIndex = this.$refs.meetingModal.handleGetModalIndex()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -211,6 +217,10 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
onSubmit() {
|
onSubmit() {
|
||||||
|
if (this.meetingShow) {
|
||||||
|
$A.modalWarning("正在会议中,无法进入其他会议室");
|
||||||
|
return;
|
||||||
|
}
|
||||||
this.$refs.addForm.validate((valid) => {
|
this.$refs.addForm.validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.loadIng++;
|
this.loadIng++;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user