|
@@ -16,7 +16,7 @@ import * as API from '@/apis/common.js'
|
|
|
|
|
|
API.mergeInfo(this.id).then((response) => {
|
|
|
|
|
|
- this.pay.list=response.data;
|
|
|
+ this.pay=response.data;
|
|
|
this.$refs.common.showLoading(false);
|
|
|
}).catch(error => {
|
|
|
this.$refs.common.showLoading(false, error);
|
|
@@ -29,14 +29,17 @@ import * as API from '@/apis/common.js'
|
|
|
},
|
|
|
backBtn(){
|
|
|
uni.redirectTo({
|
|
|
- url: '/pages/buytickets/home?id='+this.pay.id
|
|
|
+ url: '/pages/buytickets/index?id='+this.pay.id
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
onLoad(op) {
|
|
|
this.id=op.id;
|
|
|
},onReady(){
|
|
|
- this.getPay();
|
|
|
+ if(!process.car.SIMPLE_RUN){
|
|
|
+ this.getPay();
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|