|
|
@@ -277,11 +277,12 @@ export default {
|
|
|
onLoad(e) {
|
|
|
this.orderId = e.id
|
|
|
this.getOrderDetailByOrderId(e.id)
|
|
|
- this.userInfo = uni.getStorageSync('userInfo')
|
|
|
-
|
|
|
+ this.getUserInfo();
|
|
|
},
|
|
|
methods: {
|
|
|
-
|
|
|
+ getUserInfo() {
|
|
|
+ this.userInfo = uni.getStorageSync('userInfo');
|
|
|
+ },
|
|
|
balancePay(){
|
|
|
|
|
|
let that = this;
|
|
|
@@ -361,6 +362,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
qenPayInfo(){
|
|
|
+ this.getUserInfo();
|
|
|
let orderServiceIds = []
|
|
|
this.order.child.forEach(i=>{
|
|
|
if (i.tick){
|