xuqiang 4 anni fa
parent
commit
54502af81c
2 ha cambiato i file con 6 aggiunte e 8 eliminazioni
  1. 1 1
      src/pages/Applydetails.vue
  2. 5 7
      src/pages/orderdetails.vue

+ 1 - 1
src/pages/Applydetails.vue

@@ -38,7 +38,7 @@
                     <img :src="store.logo" alt="" />
                     <p>{{ store.storeName }}</p>
                 </div>
-                <div class="box-tit-seller">联系卖家</div>
+                <div class="box-tit-seller" @click="wait">联系卖家</div>
             </div>
             <div v-for="(item, index) in Boxes" :key="index.id">
                 <div class="box-con">

+ 5 - 7
src/pages/orderdetails.vue

@@ -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({