Files
bodyWeight/miniprogram/components/equipmentDialog/equipmentDialog.ts
T

27 lines
502 B
TypeScript

Component({
properties: {
/** 是否显示弹框 */
show: {
type: Boolean,
value: false
},
/** 标题 */
title: {
type: String,
value: ''
},
/** 副标题(支持 \n 换行) */
content: {
type: String,
value: ''
}
},
methods: {
/** 点击遮罩关闭 */
onTapMask() {
this.triggerEvent('close')
}
}
})