Commit ed883f0c authored by YangAo's avatar YangAo 🇨🇳

58413 bug 修复

parent 66b37ce2
...@@ -13,12 +13,32 @@ const state = () => ({ ...@@ -13,12 +13,32 @@ const state = () => ({
}, { }, {
prop: 'policyIllustrationType', prop: 'policyIllustrationType',
key: 'policy_illustration' key: 'policy_illustration'
}, {
prop: 'enterpriseType',
key: 'enterprise_type'
}, {
prop: 'enterpriseField',
key: 'enterprise_field'
}, {
prop: 'enterpriseQualifications',
key: 'enterprise_qualifications'
}, {
prop: 'enterpriseAblity',
key: 'enterprise_ablity'
}, {
prop: 'enterpriseNature',
key: 'enterprise_nature'
}], }],
// 字典数据 // 字典数据
policyTypeOptions: [], // 政策类型 policyTypeOptions: [], // 政策类型
policyLevelOptions: [], // 政策级别 policyLevelOptions: [], // 政策级别
industryTypeOptions: [], // 产业类型 industryTypeOptions: [], // 产业类型
policyIllustrationTypeOptions: [], // 政策图解类型 policyIllustrationTypeOptions: [], // 政策图解类型
enterpriseTypeOptions: [], // 企业类型
enterpriseFieldOptions: [], // 企业所属领域
enterpriseQualificationsOptions: [], // 企业资质
enterpriseAblityOptions: [], // 企业技术能力
enterpriseNatureOptions: [], // 企业性质
orderTypeOptions: [{ orderTypeOptions: [{
dictValue: 0, dictValue: 0,
dictLabel: '不排序' dictLabel: '不排序'
......
...@@ -196,7 +196,7 @@ ...@@ -196,7 +196,7 @@
</el-row> </el-row>
</div> </div>
<div class="title-tips">定性指标</div> <div class="title-tips">定性指标</div>
<div class="no-data-image"> <div v-if="info.qualitativeIndicators === undefined || info.qualitativeIndicators === null || info.qualitativeIndicators.trim() === ''" class="no-data-image">
<el-image :src="ZanWuShuJu" /> <el-image :src="ZanWuShuJu" />
</div> </div>
<div <div
......
...@@ -414,16 +414,16 @@ export default { ...@@ -414,16 +414,16 @@ export default {
// 打开订阅添加弹窗 // 打开订阅添加弹窗
addSubscription() { addSubscription() {
let tempSelectTabIdList = [] let tempSelectTabIdList = []
// 确认当前已选择 tab id
if (this.editOpen) {
// 如果处于编辑状态, 则获取编辑状态下的id
tempSelectTabIdList = this.addForm.tabIdList
} else {
// 其他情况从信息中获取
tempSelectTabIdList = this.info.tabIdList
}
this.resetAddForm() this.resetAddForm()
if (!this.addOrUpdate) { if (!this.addOrUpdate) {
// 确认当前已选择 tab id
if (this.editOpen) {
// 如果处于编辑状态, 则获取编辑状态下的id
tempSelectTabIdList = this.addForm.tabIdList
} else {
// 其他情况从信息中获取
tempSelectTabIdList = this.info.tabIdList
}
// 缓存被选择的id (生成需要显示的选项信息) // 缓存被选择的id (生成需要显示的选项信息)
this.addSubscriptionIdSelect = tempSelectTabIdList this.addSubscriptionIdSelect = tempSelectTabIdList
// eslint-disable-next-line prefer-const // eslint-disable-next-line prefer-const
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment