|
@@ -263,6 +263,7 @@ export default {
|
|
|
kipUserId: (state) => state.kipUserId,
|
|
|
userInfo: (state) => state.userInfo,
|
|
|
member: (state) => state.member,
|
|
|
+ mobile: (state) => state.mobile,
|
|
|
}),
|
|
|
/* groupId: (state) => state.groupId,
|
|
|
openid: (state) => state.openid,
|
|
@@ -514,14 +515,13 @@ export default {
|
|
|
uni.showLoading({
|
|
|
title: '加载中',
|
|
|
});
|
|
|
- console.log(514, this.userInfo);
|
|
|
- return;
|
|
|
+
|
|
|
const params = {
|
|
|
carno,
|
|
|
mallid: this.mallId,
|
|
|
openid: this.openid,
|
|
|
vipcode: this.member.vipcode,
|
|
|
- mobile: this.member.mobile,
|
|
|
+ mobile: this.mobile,
|
|
|
groupId: this.groupId,
|
|
|
createuser: 'sys_miniprogram',
|
|
|
};
|
|
@@ -548,10 +548,11 @@ export default {
|
|
|
// url: 'http://172.21.90.87:8083/xcrm-api/api/1.0/park/checkCarIsInParkAndCarFee',
|
|
|
data: params,
|
|
|
method: 'POST',
|
|
|
- header: uni.getStorageSync('handleUser'),
|
|
|
+ header: JSON.parse(uni.getStorageSync('handleUser')),
|
|
|
timeout: 10000,
|
|
|
})
|
|
|
.then((res) => {
|
|
|
+ console.log(555555, res);
|
|
|
uni.hideLoading();
|
|
|
if (res.data.code === 0) {
|
|
|
this.$router.push({
|