收银台
This commit is contained in:
parent
996d2ea94c
commit
37fa476a0f
fuintBackend/fuint-application/src/main/java/com/fuint/business/member/entity
gasStation-uni/pages/index
@ -115,4 +115,10 @@ public class LJStaff extends BaseEntity implements Serializable {
|
||||
|
||||
@ApiModelProperty("退款密码")
|
||||
private String refundPassword;
|
||||
|
||||
@ApiModelProperty("核销码")
|
||||
private String writeOffCode;
|
||||
|
||||
@ApiModelProperty("员工码")
|
||||
private String staffCode;
|
||||
}
|
||||
|
@ -136,10 +136,27 @@
|
||||
// 店铺福利信息
|
||||
welfare: [],
|
||||
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() {
|
||||
// this.getAddress();
|
||||
@ -148,6 +165,10 @@
|
||||
tabbar
|
||||
},
|
||||
methods: {
|
||||
// 获取门店信息
|
||||
getStore(){
|
||||
|
||||
},
|
||||
// 获取当前位置
|
||||
getAddress() {
|
||||
let _this = this;
|
||||
|
Loading…
Reference in New Issue
Block a user