2023-1-16
This commit is contained in:
@@ -130,7 +130,7 @@
|
||||
mode="aspectFill"></image>
|
||||
</scroll-view>
|
||||
<list-cell icon="icon-iconfontweixin" iconColor="#e07472" title="我的订单"
|
||||
@eventClick="navTo('../../pages/order/order?status=0')"></list-cell>
|
||||
@eventClick="navTo('../../pages/order/order?status=0')" ></list-cell>
|
||||
<list-cell icon="icon-dizhi" iconColor="#5fcda2" title="地址管理"
|
||||
@eventClick="navTo('../../pagesU/address/address')"></list-cell>
|
||||
<list-cell icon="icon-tuandui" iconColor="#EE82EE" title="个人资料"
|
||||
@@ -179,6 +179,9 @@
|
||||
<list-cell icon="icon-shezhi1" iconColor="#e07472" title="系统设置" border=""
|
||||
@eventClick="navTo('/pages/set/set')"></list-cell>
|
||||
<!-- <list-cell icon="icon-shezhi1" iconColor="#e07472" title="test" border="" @eventClick="navTo('/pages/search/test')"></list-cell> -->
|
||||
|
||||
<!-- <view>{{push}}</view> -->
|
||||
|
||||
</view>
|
||||
</view>
|
||||
<neil-modal :show="inputShow" @close="cancel" title="编辑" @cancel="cancel" @confirm="confirm">
|
||||
@@ -206,6 +209,8 @@
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
push: "11111111111",
|
||||
cid: "",
|
||||
inputShow: false,
|
||||
feild: undefined,
|
||||
inputContent: '',
|
||||
@@ -236,6 +241,11 @@
|
||||
this.viewList = []
|
||||
this.listCollect = 0
|
||||
this.getData();
|
||||
let cids = uni.getStorageSync('cid')
|
||||
let message = uni.getStorageSync('message')
|
||||
this.cid = cids
|
||||
this.push = message
|
||||
|
||||
},
|
||||
|
||||
// #ifndef MP
|
||||
@@ -351,7 +361,7 @@
|
||||
// });
|
||||
// this.listCollect = orderList.length
|
||||
// }
|
||||
|
||||
|
||||
}
|
||||
},
|
||||
upData() {
|
||||
|
||||
@@ -126,7 +126,7 @@
|
||||
},
|
||||
{
|
||||
status: 3,
|
||||
text: '已发货',
|
||||
text: '待收货',
|
||||
loadingType: 'more',
|
||||
orderList: []
|
||||
},
|
||||
|
||||
@@ -522,7 +522,8 @@
|
||||
// return;
|
||||
let params = {
|
||||
phone: this.phone,
|
||||
authCode: this.code
|
||||
authCode: this.code,
|
||||
cid: uni.getStorageSync('cid')
|
||||
};
|
||||
let data = await Api.apiCall('post', Api.index.loginByCode, params);
|
||||
//this.logining = false;
|
||||
@@ -548,8 +549,10 @@
|
||||
}
|
||||
let params = {
|
||||
phone: this.phone,
|
||||
password: this.password
|
||||
password: this.password,
|
||||
cid: uni.getStorageSync('cid')
|
||||
};
|
||||
console.log("params>>>>",params);
|
||||
let data = await Api.apiCall('post', Api.index.login, params);
|
||||
if (data) {
|
||||
console.log(data);
|
||||
|
||||
@@ -173,7 +173,8 @@
|
||||
|
||||
let params2 = {
|
||||
phone: this.phone,
|
||||
password: this.password
|
||||
password: this.password,
|
||||
cid: uni.getStorageSync('cid')
|
||||
};
|
||||
let data2 = await Api.apiCall('post', Api.index.login, params2);
|
||||
//this.logining = false;
|
||||
|
||||
Reference in New Issue
Block a user