zs 2 년 전
부모
커밋
3bb31725d0
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      pagesMy/order/detail.vue

+ 3 - 1
pagesMy/order/detail.vue

@@ -43,7 +43,9 @@
 				const that = this;
 				that.$refs[ref].validate().then(async params => {
 					let form = that.form;
-					form.customer_transport_no = params.customer_transport_no;
+					let transport = {};
+					transport.customer_transport_no = params.customer_transport_no;
+					form.transport = transport;
 					const arr = await that.$api(`/afterSale/${that.id}`, 'POST', form);
 					if (arr.errcode == '0') {
 						uni.showToast({