mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-11 18:42:54 +00:00
77 lines
1.6 KiB
Vue
77 lines
1.6 KiB
Vue
<template>
|
|
<Modal
|
|
:value="visible"
|
|
:mask="false"
|
|
:mask-closable="false"
|
|
:footer-hide="true"
|
|
:transition-names="['mobile-dialog', '']"
|
|
:beforeClose="onBeforeClose"
|
|
class-name="dialog-modal"
|
|
fullscreen>
|
|
<DialogWrapper v-if="windowPortrait && dialogId > 0" :dialogId="dialogId" :beforeBack="onBeforeClose" location="modal"/>
|
|
</Modal>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
body {
|
|
.ivu-modal-wrap {
|
|
&.dialog-modal {
|
|
position: absolute;
|
|
overflow: hidden;
|
|
|
|
.ivu-modal {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
.ivu-modal-content {
|
|
background: transparent;
|
|
|
|
.ivu-modal-close {
|
|
display: none;
|
|
}
|
|
|
|
.ivu-modal-body {
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import {mapState} from "vuex";
|
|
import DialogWrapper from "./DialogWrapper";
|
|
|
|
export default {
|
|
name: "DialogModal",
|
|
components: {DialogWrapper},
|
|
|
|
data() {
|
|
return {
|
|
timer: null,
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
...mapState(['dialogId']),
|
|
|
|
visible() {
|
|
return this.dialogId > 0 && this.windowPortrait
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onBeforeClose() {
|
|
return new Promise(_ => {
|
|
this.$store.dispatch("openDialog", 0)
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|