|
|
@@ -257,11 +257,15 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
- <!--<el-col :span="8">
|
|
|
+ <el-col :span="8">
|
|
|
<el-form-item label="币种">
|
|
|
- <el-input v-model="formData.Currency" placeholder="请输入" style="width: 100%"></el-input>
|
|
|
+ <el-select v-model="formData.Currency" :disabled="!canUpdateSupplier" placeholder="请选择"
|
|
|
+ style="width: 100%;">
|
|
|
+ <el-option v-for="item in CurrencyOptions" :key="item.Value" :label="item.Key" :value="item.Value">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
- </el-col>-->
|
|
|
+ </el-col>
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="成立时间">
|
|
|
@@ -574,6 +578,7 @@
|
|
|
OperTypeOptions: [],
|
|
|
InOptions: [],
|
|
|
CompanyTypeOptions: [],
|
|
|
+ CurrencyOptions: [],
|
|
|
UnitRelationAry: [],
|
|
|
countryoptions: [],
|
|
|
countryListOptions: [],
|
|
|
@@ -816,9 +821,10 @@
|
|
|
if (this.dictData) {
|
|
|
this.ManagementUnitOptions=this.dictData['ManagementUnit']
|
|
|
this.UnitRelationOptions = this.dictData['UnitRelation']
|
|
|
- this.OperTypeOptions = this.dictData['OperType']
|
|
|
+ this.OperTypeOptions = this.dictData['OperType']
|
|
|
this.InOptions = this.dictData['InOptions']
|
|
|
this.CompanyTypeOptions = this.dictData['CompanyType']
|
|
|
+ this.CurrencyOptions = this.dictData['CurrencyType']
|
|
|
this.getCityList(this.dictData['GaodeMapChinaAreas'])
|
|
|
this.getCountryList(this.dictData['CountryList'])
|
|
|
let suppliers = this.dictData['CompanyNames']
|