|
@@ -19,9 +19,17 @@
|
|
|
:label-col="formItemLayout.labelCol"
|
|
|
:wrapper-col="formItemLayout.wrapperCol"
|
|
|
>
|
|
|
- <a-form-model-item label="收货客户名称">
|
|
|
+ <a-form-model-item label="收货客户名称" v-if="dealerLevel != 'OTHER'">
|
|
|
<dealerSubareaScopeList ref="custList" defValKey="buyerSn" @change="custChange" v-model="form.receiverSn" />
|
|
|
</a-form-model-item>
|
|
|
+ <a-form-model-item label="收货客户名称" v-else>
|
|
|
+ <a-input
|
|
|
+ id="dealerAccountEdit-receiverName"
|
|
|
+ :maxLength="30"
|
|
|
+ v-model.trim="form.receiverName"
|
|
|
+ placeholder="请输入收货客户名称"
|
|
|
+ allowClear />
|
|
|
+ </a-form-model-item>
|
|
|
<a-form-model-item label="发货编号" prop="sendNo">
|
|
|
<a-input
|
|
|
id="dealerAccountEdit-phone"
|
|
@@ -64,6 +72,10 @@ export default {
|
|
|
openModal: { // 弹框显示状态
|
|
|
type: Boolean,
|
|
|
default: false
|
|
|
+ },
|
|
|
+ dealerLevel: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
}
|
|
|
},
|
|
|
data () {
|