|
|
@@ -15,7 +15,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>-->
|
|
|
|
|
|
- <el-col :span="16">
|
|
|
+ <el-col :span="8">
|
|
|
<el-form-item label="供方名称" prop="SupplierName">
|
|
|
<el-autocomplete class="inline-input" v-model="formData.SupplierName" :readonly="companyReadonly"
|
|
|
:fetch-suggestions="querySearch" :maxlength="255" placeholder="请输入内容" style="width: 100%"
|
|
|
@@ -38,6 +38,17 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="准入方式">
|
|
|
+ <el-select ref="SpecType" v-model="formData.InStyle" :disabled="!canUpdateSupplier"
|
|
|
+ placeholder="请选择" style="width: 100%">
|
|
|
+ <el-option v-for="item in InOptions" :key="item.Id" :label="item.Key"
|
|
|
+ :value="item.Value">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="统一社会信用代码" prop="CommercialNo">
|
|
|
<el-input v-model="formData.CommercialNo" maxlength="50" :readonly="!canUpdateSupplier" placeholder="请输入"
|
|
|
@@ -71,7 +82,7 @@
|
|
|
<el-form-item label="注册地址" prop="Province">
|
|
|
<el-row>
|
|
|
<el-col :span="10">
|
|
|
- <el-cascader :options="countryoptions" :props="countryprops" maxlength="20"
|
|
|
+ <el-cascader :options="countryoptions" :props="countryprops" :disabled="!canUpdateSupplier"
|
|
|
:readonly="!canUpdateSupplier" placeholder="省市区" v-model="CityAry" style="width: 100%"
|
|
|
@change="handleAreaChange"></el-cascader>
|
|
|
</el-col>
|
|
|
@@ -96,7 +107,7 @@
|
|
|
<el-row>
|
|
|
<el-col :span="10">
|
|
|
<el-cascader :options="countryoptions" :props="countryprops" :disabled="!canUpdateSupplier"
|
|
|
- placeholder="省市区" v-model="LinkCityAry" maxlength="20" style="width: 100%"
|
|
|
+ placeholder="省市区" v-model="LinkCityAry" style="width: 100%"
|
|
|
@change="handleLinkAreaChange">
|
|
|
</el-cascader>
|
|
|
</el-col>
|
|
|
@@ -402,6 +413,7 @@
|
|
|
companyReadonly: false,
|
|
|
companynames: [],
|
|
|
UnitRelationOptions: [],
|
|
|
+ InOptions: [],
|
|
|
CompanyTypeOptions: [],
|
|
|
UnitRelationAry: [],
|
|
|
countryoptions: [],
|
|
|
@@ -620,6 +632,7 @@
|
|
|
getDictOptions() {
|
|
|
if (this.dictData) {
|
|
|
this.UnitRelationOptions = this.dictData['UnitRelation']
|
|
|
+ this.InOptions = this.dictData['InOptions']
|
|
|
this.getCityList(this.dictData['GaodeMapChinaAreas'])
|
|
|
this.CompanyTypeOptions = this.dictData['CompanyType']
|
|
|
let suppliers = this.dictData['CompanyNames']
|