|
@@ -50,7 +50,8 @@
|
|
|
<avue-form :option="optionForm" v-model="form" ref="form">
|
|
|
<template slot-scope="{row,index}" slot="contacts">
|
|
|
<!-- 联系人 -->
|
|
|
- <el-select v-model="form.contacts" placeholder="请选择" size="small" style="width:60%" filterable allow-create default-first-option
|
|
|
+ <el-select v-model="form.contacts" placeholder="请选择" size="small" style="width:60%"
|
|
|
+ clearable filterable allow-create default-first-option
|
|
|
@change="contactsChange($event)" :disabled=isContacts>
|
|
|
<el-option v-for="item in contactsOption" :key="item.cname" :label="item.cname"
|
|
|
:value="item.contacts" />
|
|
@@ -58,7 +59,8 @@
|
|
|
</template>
|
|
|
<template slot-scope="{row,index}" slot="recAddress">
|
|
|
<!-- 地址 -->
|
|
|
- <el-select v-model="form.recAddress" placeholder="请选择" size="small" style="width:60%" filterable allow-create default-first-option
|
|
|
+ <el-select v-model="form.recAddress" placeholder="请选择" size="small" style="width:60%"
|
|
|
+ clearable filterable allow-create default-first-option
|
|
|
:disabled=isContacts>
|
|
|
<el-option v-for="item in recAddressOption" :key="item.id"
|
|
|
:label="item.belongtoarea + item.detailedAddress"
|