[update] 新法规导入流程

This commit is contained in:
lideqin
2024-07-10 16:51:54 +08:00
parent 4021adf3d5
commit 4b21f0bf42
2 changed files with 3 additions and 3 deletions
+1 -2
View File
@@ -5,8 +5,7 @@
:value="nameStr || value" :value="nameStr || value"
:title="value" :title="value"
disabled disabled
:max-length="500" :max-length="500">
:placeholder="placeholder">
</a-input> </a-input>
<a-button type="primary" class="button-box" @click="standardClick"> <a-button type="primary" class="button-box" @click="standardClick">
{{ $t('lookDetail') }} {{ $t('lookDetail') }}
@@ -123,6 +123,7 @@
:tree-data="countryOptions" :tree-data="countryOptions"
tree-checkable tree-checkable
treeCheckStrictly treeCheckStrictly
:disabled="disabled"
:placeholder="$t('pleaseSelect')+$t('workCenter.newRegulationImportProcess.applicableMarket')" /> :placeholder="$t('pleaseSelect')+$t('workCenter.newRegulationImportProcess.applicableMarket')" />
</a-form-model-item> </a-form-model-item>
</div> </div>
@@ -245,7 +246,7 @@ export default {
// 拿到外面传进来的businessInfoDTO // 拿到外面传进来的businessInfoDTO
initData (data) { initData (data) {
// 给表单赋值 // 给表单赋值
data.applicableMarket = data.applicableMarket.map(item => { data.applicableMarket = data.applicableMarket.split(',').map(item => {
return { value: item } return { value: item }
}) })
this.formInline = Object.assign({}, data) this.formInline = Object.assign({}, data)