|
@@ -159,11 +159,16 @@
|
|
|
v-model="dataModel.registeredCapital" class="custom">
|
|
|
</ion-input>
|
|
|
</div>
|
|
|
- <div class="form-input" >
|
|
|
+ <div class="form-select">
|
|
|
<ion-label>企业注册地址行政区划</ion-label>
|
|
|
- <ion-input placeholder="请输入企业注册地址行政区划" label-placement="stacked" :clear-input="true"
|
|
|
- v-model="dataModel.signInPoliticalArea" class="custom">
|
|
|
- </ion-input>
|
|
|
+ <ion-select interface="action-sheet" placeholder="请选择" cancel-text="取消"
|
|
|
+ id="signInPoliticalArea" v-model="dataModel.signInPoliticalArea"
|
|
|
+ style="width: 100%;text-align: left;">
|
|
|
+ <ion-select-option v-for="(record,key) in regionList" :key="key"
|
|
|
+ v-model:value="record.code">
|
|
|
+ {{ record.name }}
|
|
|
+ </ion-select-option>
|
|
|
+ </ion-select>
|
|
|
</div>
|
|
|
<div class="form-input" >
|
|
|
<ion-label>企业邮箱</ion-label>
|
|
@@ -510,6 +515,9 @@ export default defineComponent({
|
|
|
formState.dataModel.companyEmail = matchedFirmInfo.companyEmail;
|
|
|
formState.dataModel.companyAddress = matchedFirmInfo.companyAddress;
|
|
|
formState.dataModel.businScope = matchedFirmInfo.businScope;
|
|
|
+ formState.dataModel.industryID = matchedFirmInfo.industryID;
|
|
|
+ formState.dataModel.industryName = matchedFirmInfo.industryName;
|
|
|
+ formState.dataModel.signInPoliticalArea = matchedFirmInfo.signInPoliticalArea;
|
|
|
await setInfoLoadingOpen(false);
|
|
|
infoAlterData.title = "提示";
|
|
|
infoAlterData.message = "同步成功!";
|