|
@@ -121,7 +121,7 @@
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
<a-form-model-item label="关联客户" prop="customerSn">
|
|
|
- <custList ref="custList" :isEnabled="true" @change="custChange" v-model="form.customerSn"></custList>
|
|
|
+ <custList ref="custList" :isEnabled="true" @change="custChange"></custList>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col :span="12" v-if="form.settleType == 'CREDIT'">
|
|
@@ -210,7 +210,7 @@ export default {
|
|
|
},
|
|
|
// 关联客户
|
|
|
custChange (obj, row) {
|
|
|
- this.form.customerSn = row ? obj.key : undefined
|
|
|
+ this.form.customerSn = row ? row.customerSn : undefined
|
|
|
},
|
|
|
// 图片上传
|
|
|
changeImage1 (file) {
|