|
@@ -6,6 +6,7 @@
|
|
--cus-dialog_min-height: ${minHeight};
|
|
--cus-dialog_min-height: ${minHeight};
|
|
`"
|
|
`"
|
|
:modal-class="`
|
|
:modal-class="`
|
|
|
|
+ ${uuid}
|
|
__cus-dialog ${maxHeight === 'unset' ? '' : '__cus-dialog-auto-height'} ${hiddenStyle ? '__cus-dialog-hidden-style' : ''}
|
|
__cus-dialog ${maxHeight === 'unset' ? '' : '__cus-dialog-auto-height'} ${hiddenStyle ? '__cus-dialog-hidden-style' : ''}
|
|
`"
|
|
`"
|
|
v-bind="$attrs"
|
|
v-bind="$attrs"
|
|
@@ -63,6 +64,8 @@ import {
|
|
nextTick
|
|
nextTick
|
|
} from 'vue'
|
|
} from 'vue'
|
|
import {ElMessage, ElMessageBox} from "element-plus";
|
|
import {ElMessage, ElMessageBox} from "element-plus";
|
|
|
|
+import { v4 } from "uuid";
|
|
|
|
+import {useDialogLevelStore} from "@/stores/dialog-level";
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
name: 'CusDialog',
|
|
name: 'CusDialog',
|
|
@@ -100,6 +103,7 @@ export default defineComponent({
|
|
},
|
|
},
|
|
setup(props, {emit}) {
|
|
setup(props, {emit}) {
|
|
const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
|
|
const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
|
|
|
|
+ const DialogLevelStore = useDialogLevelStore()
|
|
const state = reactive({
|
|
const state = reactive({
|
|
showDialog: false,
|
|
showDialog: false,
|
|
closeConfirmTextTemp: {
|
|
closeConfirmTextTemp: {
|
|
@@ -107,10 +111,16 @@ export default defineComponent({
|
|
message: '请确认是否关闭?',
|
|
message: '请确认是否关闭?',
|
|
submit: '确定',
|
|
submit: '确定',
|
|
close: '取消',
|
|
close: '取消',
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ uuid: v4()
|
|
})
|
|
})
|
|
watch(() => props.show, (n) => {
|
|
watch(() => props.show, (n) => {
|
|
state.showDialog = n
|
|
state.showDialog = n
|
|
|
|
+ if (n) {
|
|
|
|
+ DialogLevelStore.add(state.uuid)
|
|
|
|
+ } else {
|
|
|
|
+ DialogLevelStore.del(state.uuid)
|
|
|
|
+ }
|
|
})
|
|
})
|
|
const beforeClose = (done) => {
|
|
const beforeClose = (done) => {
|
|
CDClose(done)
|
|
CDClose(done)
|