const _app = getApp() Component({ properties: { show: { type: Boolean, value: false, }, type: String, params: { type: Object, value() { return {} }, }, }, data: {}, methods: { handleOk() { this.setData({ show: false, }) this.triggerEvent('ok') }, handleCancel() { this.setData({ show: false, }) this.triggerEvent('cancel') }, }, })