|
@@ -104,6 +104,7 @@
|
|
:subscribeAreaMap="projectDetailFilters.subscribeAreaMap"
|
|
:subscribeAreaMap="projectDetailFilters.subscribeAreaMap"
|
|
:subscribeBuyerClass="projectDetailFilters.subscribeBuyerClass"
|
|
:subscribeBuyerClass="projectDetailFilters.subscribeBuyerClass"
|
|
:industryOptions="projectDetailFilters.industryMap"
|
|
:industryOptions="projectDetailFilters.industryMap"
|
|
|
|
+ :showIndustry="showIndustry"
|
|
/>
|
|
/>
|
|
</el-tab-pane>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</el-tabs>
|
|
@@ -224,7 +225,8 @@ export default {
|
|
subscribeBuyerClass: [],
|
|
subscribeBuyerClass: [],
|
|
industryMap: {}
|
|
industryMap: {}
|
|
},
|
|
},
|
|
- from: ''
|
|
|
|
|
|
+ from: '',
|
|
|
|
+ showIndustry: true
|
|
}
|
|
}
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
@@ -366,7 +368,12 @@ export default {
|
|
this.projectDetailFilters.subscribeBuyerClass = []
|
|
this.projectDetailFilters.subscribeBuyerClass = []
|
|
}
|
|
}
|
|
if (res.data && res.data.industry) {
|
|
if (res.data && res.data.industry) {
|
|
|
|
+ if (this.ISP) {
|
|
|
|
+ this.showIndustry = Object.keys(res.data.industry).length > 0
|
|
|
|
+ }
|
|
this.projectDetailFilters.industryMap = res.data.industry
|
|
this.projectDetailFilters.industryMap = res.data.industry
|
|
|
|
+ } else {
|
|
|
|
+ this.showIndustry = !this.ISP
|
|
}
|
|
}
|
|
// 本周新增招标项目数量
|
|
// 本周新增招标项目数量
|
|
if (res.data.zhao_matchitem && res.data.zhao_matchitem.length > 0) {
|
|
if (res.data.zhao_matchitem && res.data.zhao_matchitem.length > 0) {
|