// components/selfShowModal/selfShowModal.js Component({ /** * 组件的属性列表 */ properties: { title:{ type: String, value: true, define: '提示' }, content:{ type: String, value: false, }, }, /** * 组件的初始数据 */ data: { }, /** * 组件的方法列表 */ methods: { yesButton(){ //点击确定按钮 this.triggerEvent('buttonEvent','success') } } })