qingcheng-xiaochengxu/pages/personCenter/component/commissionRatePop/commissionRatePop.js

29 lines
448 B
JavaScript
Raw Normal View History

2025-05-29 00:56:35 +00:00
Component({
/**
* 组件的属性列表
*/
properties: {
2025-05-29 13:29:32 +00:00
show: { // 控制显示/隐藏
type: Boolean,
value: false
},
2025-05-29 00:56:35 +00:00
},
/**
* 组件的方法列表
*/
methods: {
2025-05-29 13:29:32 +00:00
close() {
this.triggerEvent('close');
},
cancel() {
this.triggerEvent('cancel');
},
confirm() {
// 触发confirm事件带数据
this.triggerEvent('confirm', {/*数据*/});
},
2025-05-29 00:56:35 +00:00
}
2025-05-29 13:29:32 +00:00
})