Explorar o código

修改售后详情页

pangqijun hai 1 ano
pai
achega
6ec5261555
Modificáronse 1 ficheiros con 62 adicións e 1 borrados
  1. 62 1
      pages/groupbuying_details/order_details_list/index.vue

+ 62 - 1
pages/groupbuying_details/order_details_list/index.vue

@@ -177,6 +177,28 @@
               <view class="item-lable">退款金额</view>
               <view class="item-value">¥{{orderDetail.refundAmount}}</view>
             </view>
+            <view class="p-b-item" v-if="orderDetail.afterSales">
+              <view class="item-lable">物流单号</view>
+              <view class="item-value2">{{orderDetail.afterSales.logisticsNo || ''}}</view>
+            </view>
+          </view>
+
+          <view class="p_box"  v-if="orderDetail.store">
+            <view class="p-t">
+              供应商信息
+            </view>
+            <view class="p-b-item">
+              <view class="item-lable">名称</view>
+              <view class="item-value2">{{orderDetail.store.name}}</view>
+            </view>
+            <view class="p-b-item">
+              <view class="item-lable">电话</view>
+              <view class="item-value2">{{orderDetail.store.tel}}</view>
+            </view>
+            <view class="p-b-item">
+              <view class="item-lable">地址</view>
+              <view class="item-value2">{{orderDetail.store.storeAddress}}</view>
+            </view>
           </view>
 				</view>
 
@@ -187,6 +209,7 @@
 			<view class='footer op-area'>
 <!--				<button class="info-btn" v-if="orderDetail.orderState == 4" @click="RefundShow = true">申请售后</button>-->
 				<button class="info-btn" v-if="orderDetail.orderState == 1" @click="cancelOrder()">取消订单</button>
+        <button class="info-btn" v-if="!orderDetail.afterSales.logisticsNo" @click="bindLogisticsShow(orderDetail.afterSales.afterSalesNo)">填写物流单号</button>
 			</view>
 		</view>
 
@@ -247,6 +270,18 @@
 				</view>
 		</u-popup>
 
+    <u-popup :show="showWl" :round="10" mode="center" @close="showWl = false">
+      <view>
+        <u--input
+            placeholder="请输入物流单号"
+            border="surround"
+            clearable
+            v-model="wlNo"
+        ></u--input>
+        <u-button class="custom-style"  text="提交" @click="bindLogistics"></u-button>
+      </view>
+    </u-popup>
+
 		<payment :payMode="payMode" :pay_close="pay_close" @onChangeFun="onChangeFun" :order_id="pay_order_id"
 				 :totalPrice="totalPrice"></payment>
 
@@ -255,6 +290,7 @@
 <script>
 import couponListWindow from '@/components/couponListWindow';
 import addressWindow from '@/components/addressWindow';
+import {bindLogisticsNo} from '@/api/groupon.js'
 import home from '@/components/home';
 import {
 	toLogin
@@ -283,6 +319,8 @@ export default {
 	mixins: [colors],
 	data () {
 		return {
+      showWl: false,
+      wlNo: '',
 			pay_orderId: '',
 			totalPrice: '0',
 			pay_order_id: '',
@@ -468,7 +506,30 @@ export default {
 				this.selfTakeShow = false;
 				this.getOrderDetail(this.orderDetail.orderId)
 			})
-		}
+		},
+    bindLogisticsShow(item) {
+      this.afterSalesNo = item;
+      this.showWl = true;
+    },
+    bindLogistics() {
+      let that = this;
+      console.log(that.wlNo)
+      if (that.wlNo.trim().length < 1) {
+        return that.$util.Tips({
+          title: '请输入物流单号'
+        });
+      }
+      bindLogisticsNo({
+        afterSalesNo: that.afterSalesNo,
+        logisticsNo: that.wlNo
+      }).then(res => {
+        that.showWl = false;
+        return that.$util.Tips({
+          title: '绑定成功',
+          icon: 'success'
+        });
+      })
+    },
 	}
 }
 </script>