|
|
@@ -1,7 +1,7 @@
|
|
|
<config>
|
|
|
{
|
|
|
"navigationBarBackgroundColor": "#ff6c00",
|
|
|
- "navigationBarTextStyle": "black",
|
|
|
+ "navigationBarTextStyle": "white",
|
|
|
"backgroundTextStyle":"light"
|
|
|
}
|
|
|
</config>
|
|
|
@@ -46,12 +46,12 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="box-bg"></div>
|
|
|
- <div class="box-tit">
|
|
|
+ <div class="box-tit" @click="navigateTo('/pages/store/homePage?id=' + store.id)">
|
|
|
<div>
|
|
|
<img :src="store.logo" alt="" />
|
|
|
<p>{{ store.storeName }}</p>
|
|
|
</div>
|
|
|
- <div class="box-tit-seller" @click="seller">联系卖家</div>
|
|
|
+ <div class="box-tit-seller" @click.stop="wait">联系卖家</div>
|
|
|
</div>
|
|
|
<div v-for="(item, index) in Boxes" :key="index.id">
|
|
|
<div class="box-con">
|
|
|
@@ -302,6 +302,7 @@ export default {
|
|
|
this.$http
|
|
|
.get('/orderInfo/get/' + this.$mp.query.id)
|
|
|
.then(res => {
|
|
|
+ console.log(res);
|
|
|
this.hideLoading();
|
|
|
this.caseId = res.caseId;
|
|
|
this.status = res;
|
|
|
@@ -427,10 +428,7 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
Apply() {
|
|
|
- wx.showToast({
|
|
|
- title: '敬请开放',
|
|
|
- icon: 'none'
|
|
|
- });
|
|
|
+ this.navigateTo('/pages/Apply?id=' + this.orderInfoId);
|
|
|
},
|
|
|
pay() {
|
|
|
wx.showLoading({
|