完成小程序端接单模块的前端部分

This commit is contained in:
2025-06-01 10:43:37 +08:00
parent 97f9dad10d
commit 62a6b0eec6
23 changed files with 394 additions and 81 deletions

View File

@ -7,10 +7,7 @@ Page({
* 页面的初始数据
*/
data: {
items: [null, null, null],
cxz: "",
cxz2: "",
cxz3: "",
items: [null],
nickName: "",
userAvatar: "",
phoneNumber: "",
@ -19,7 +16,22 @@ Page({
currentBalance: "", // 当前余额
withdrawalAmount: "", // 提现中的余额
withdrawnAmount: "", // 已提现的余额
totalIncome:"" // 累计收入
totalIncome:"", // 累计收入
showPopup: false, // 控制弹窗显示与否
qrcode: "https://img.picui.cn/free/2025/05/29/6837c53582068.gif", // 设置二维码图片的路径
},
// 点击二维码时,显示弹窗
showPromoPopup() {
this.setData({
showPopup: true
});
},
// 关闭弹窗
closePopup() {
this.setData({
showPopup: false
});
},
myteam(){
wx.navigateTo({