连接了我的项目,我的抽成

This commit is contained in:
2025-05-30 08:30:19 +08:00
parent c0c56914b8
commit e39ba3508e
18 changed files with 58 additions and 373 deletions

View File

@ -1,28 +1,24 @@
// pages/personCenter/component/commissionRatePop/commissionRatePop.js
Component({
/**
* 组件的属性列表
*/
properties: {
show: { // 控制显示/隐藏
type: Boolean,
value: false
},
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
close() {
this.triggerEvent('close');
},
cancel() {
this.triggerEvent('cancel');
},
confirm() {
// 触发confirm事件带数据
this.triggerEvent('confirm', {/*数据*/});
},
}
})
}
})