Merge remote-tracking branch 'origin/master'

This commit is contained in:
@QQNZX 2023-11-28 17:28:00 +08:00
commit b7b317fb7d
4 changed files with 34 additions and 2 deletions

View File

@ -115,4 +115,10 @@ public class LJStaff extends BaseEntity implements Serializable {
@ApiModelProperty("退款密码") @ApiModelProperty("退款密码")
private String refundPassword; private String refundPassword;
@ApiModelProperty("核销码")
private String writeOffCode;
@ApiModelProperty("员工码")
private String staffCode;
} }

View File

@ -92,4 +92,7 @@ public class LJUser extends BaseEntity implements Serializable {
@ApiModelProperty("固定等级") @ApiModelProperty("固定等级")
private String fixingLevel; private String fixingLevel;
@ApiModelProperty("邀请员工id")
private Integer staffId;
} }

View File

@ -94,4 +94,6 @@ public class LJUserVo extends BaseEntity {
// 固定等级 // 固定等级
private String fixingLevel; private String fixingLevel;
// 邀请员工id
private Integer staffId;
} }

View File

@ -136,10 +136,27 @@
// //
welfare: [], welfare: [],
distance: "", distance: "",
storeId: "",
staffId: "",
} }
}, },
onLoad() { onLoad(query) {
const q = decodeURIComponent(query.q) //
let str = q.split("?")[1];
let arr = str.split("&");
let storeId = "";
let staffId = "";
arr.forEach(item => {
if (item.includes("storeId")){
storeId = item.split("=")[1]
}else{
staffId = item.split("=")[1]
}
})
uni.setStorageSync("inviteStoreId",storeId)
uni.setStorageSync("inviteStaffId",staffId)
this.storeId = uni.getStorageInfoSync("inviteStoreId")
this.staffId = uni.getStorageInfoSync("inviteStaffId")
}, },
onShow() { onShow() {
// this.getAddress(); // this.getAddress();
@ -148,6 +165,10 @@
tabbar tabbar
}, },
methods: { methods: {
//
getStore(){
},
// //
getAddress() { getAddress() {
let _this = this; let _this = this;