[fix uat126]全局替换 “国家/地区”改为“试用市场”
This commit is contained in:
@@ -83,7 +83,7 @@
|
||||
v-decorator="['manifestName', validatorRules.manifestName]" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<!-- 国家/地区 -->
|
||||
<!-- 适用市场 -->
|
||||
<a-col :span="24">
|
||||
<a-form-item
|
||||
:labelCol="$i18n.locale === EN ? longLabelColEn : longLabelCol"
|
||||
@@ -231,7 +231,7 @@ export default {
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
// 获取国家/地区下拉数据
|
||||
// 获取适用市场下拉数据
|
||||
this.getCountryOption()
|
||||
// 初始化节点
|
||||
const nodeId = this.$route.query.nodeId
|
||||
@@ -361,12 +361,12 @@ export default {
|
||||
formInline: {},
|
||||
approvalInfoForm: this.$form.createForm(this), // 审批信息表单
|
||||
personnelInfoData: [],
|
||||
countryOptions: [], // 国家/地区下拉框
|
||||
countryOptions: [], // 适用市场下拉框
|
||||
isLook: false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// 获取国家/地区下拉框数据
|
||||
// 获取适用市场下拉框数据
|
||||
getCountryOption () {
|
||||
getFormDictTreeList({ dictId: '1801130851452059649' }).then(res => {
|
||||
if (res.success) {
|
||||
@@ -405,7 +405,7 @@ export default {
|
||||
processInfo.manifestName = this.model.businessInfoDTO.manifestName
|
||||
// 清单说明
|
||||
processInfo.manifestDesc = this.model.businessInfoDTO.manifestDesc
|
||||
// 国家/地区
|
||||
// 适用市场
|
||||
processInfo.country = this.model.businessInfoDTO.country.split(',').map(item => {
|
||||
return { value: item }
|
||||
})
|
||||
@@ -428,7 +428,7 @@ export default {
|
||||
processInfo.manifestName = this.draftModel.businessInfoDTO.manifestName
|
||||
// 清单说明
|
||||
processInfo.manifestDesc = this.draftModel.businessInfoDTO.manifestDesc
|
||||
// 国家/地区
|
||||
// 适用市场
|
||||
processInfo.country = this.draftModel.businessInfoDTO.country.split(',').map(item => {
|
||||
return { value: item }
|
||||
})
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
:placeholder="disabled ? '' : $t('autoTakeout')" />
|
||||
</a-form-model-item>
|
||||
</div>
|
||||
<!-- 国家/地区 -->
|
||||
<!-- 适用市场 -->
|
||||
<div class="box-title-text form-flex-item form-flex-item-half">
|
||||
<div class="title-text title-text-long">
|
||||
<span class="title-text-text" :title="$t('countryRegion')">
|
||||
@@ -365,7 +365,7 @@ export default {
|
||||
formInline.file = result.file
|
||||
// 版本号
|
||||
formInline.manifestVersion = result.manifestVersion
|
||||
// 国家/地区
|
||||
// 适用市场
|
||||
if (result.country) {
|
||||
formInline.country = result.country.split(',').map(item => {
|
||||
return { value: item }
|
||||
@@ -478,7 +478,7 @@ export default {
|
||||
formInline.file = result.file
|
||||
// 版本号
|
||||
formInline.manifestVersion = result.manifestVersion
|
||||
// 国家/地区
|
||||
// 适用市场
|
||||
if (result.country) {
|
||||
formInline.country = result.country.split(',').map(item => {
|
||||
return { value: item }
|
||||
|
||||
Reference in New Issue
Block a user