commission--yt-commit

This commit is contained in:
2025-06-04 10:41:47 +08:00
parent 80923c3d66
commit d58e024f23
10 changed files with 143 additions and 29 deletions

View File

@ -7,6 +7,18 @@ Component({
type: Boolean,
value: false
},
pgencyPrice: 0, // 代理价
commissionRate: 0, // 抽成比例
},
/**
* 处理输入框的变化
*/
handleInputChange(e) {
const { field } = e.target.dataset; // 获取字段名
this.setData({
[field]: e.detail.value, // 动态更新输入框数据
});
},
/**