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