dykj-outsource-12123/uni_modules/uni-ui/components/uni-popup/message.js
2024-06-26 09:12:03 +08:00

23 lines
356 B
JavaScript

export default {
created() {
if (this.type === 'message') {
// 不显示遮罩
this.maskShow = false
// 获取子组件对象
this.childrenMsg = null
}
},
methods: {
customOpen() {
if (this.childrenMsg) {
this.childrenMsg.open()
}
},
customClose() {
if (this.childrenMsg) {
this.childrenMsg.close()
}
}
}
}