Kaynağa Gözat

添加绑定物流

pangqijun 1 yıl önce
ebeveyn
işleme
f0a800ad32

+ 3 - 2
api/groupon.js

@@ -19,13 +19,14 @@ export function reasonList() {
 
 //获取售后原因列表
 export function afterSalesSubmit(data) {
-    return request.post("/v1/after-sales/bindLogisticsNo",data);
+    return request.post("/v1/after-sales/submit",data);
 }
 
 
 //绑定物流单号
 export function bindLogisticsNo(data) {
-    return request.post("/v1/after-sales/submit",data);
+    let url = "?afterSalesNo="+data.afterSalesNo + "&logisticsNo="+data.logisticsNo
+    return request.post("/v1/after-sales/bindLogisticsNo" + url,data);
 }
 
 

+ 7 - 5
pages/users/user_return_list/module/mescrollUni-item.vue

@@ -70,8 +70,9 @@
             placeholder="请输入物流单号"
             border="surround"
             clearable
+			v-model="wlNo"
         ></u--input>
-        <u-button class="custom-style" :value="wlNo" text="提交" @click="bindLogistics"></u-button>
+        <u-button class="custom-style"  text="提交" @click="bindLogistics"></u-button>
       </view>
     </u-popup>
 	</mescroll-uni>
@@ -92,9 +93,9 @@
 
 		data() {
 			return {
-        show: false,
-        wlNo: '',
-        afterSalesNo: '',
+				show: false,
+				wlNo: '',
+				afterSalesNo: '',
 				downOption: {
 					auto: false // 不自动加载 (mixin已处理第一个tab触发downCallback)
 				},
@@ -154,9 +155,10 @@
           });
         }
         bindLogisticsNo({
-          afterSalesNo: '',
+          afterSalesNo: that.afterSalesNo,
           logisticsNo: that.wlNo
         }).then(res => {
+        	that.show = false;
           return that.$util.Tips({
             title: '绑定成功',
             icon: 'success'