|
@@ -47,6 +47,7 @@
|
|
<el-select :disabled="showG" v-model="applyform.country" class="firstbox" clearable placeholder="所属省份" @change="getcont">
|
|
<el-select :disabled="showG" v-model="applyform.country" class="firstbox" clearable placeholder="所属省份" @change="getcont">
|
|
<el-option
|
|
<el-option
|
|
v-for="item in countryOptions"
|
|
v-for="item in countryOptions"
|
|
|
|
+ :key="item.id"
|
|
:label="item.name"
|
|
:label="item.name"
|
|
:value="item.id">
|
|
:value="item.id">
|
|
</el-option>
|
|
</el-option>
|
|
@@ -54,6 +55,7 @@
|
|
<el-select :disabled="showG" v-model="applyform.area" class="firstbox" clearable placeholder="所属城市">
|
|
<el-select :disabled="showG" v-model="applyform.area" class="firstbox" clearable placeholder="所属城市">
|
|
<el-option
|
|
<el-option
|
|
v-for="item in cityOptions"
|
|
v-for="item in cityOptions"
|
|
|
|
+ :key="item.id"
|
|
:label="item.name"
|
|
:label="item.name"
|
|
:value="item.id">
|
|
:value="item.id">
|
|
</el-option>
|
|
</el-option>
|