|
@@ -276,9 +276,18 @@ export default {
|
|
|
} else {
|
|
|
this.projectAmount.show = false
|
|
|
}
|
|
|
- this.nextweek_bidopen = res.data.nextweek_bidopen
|
|
|
- this.follow_ent = res.data.follow_ent
|
|
|
- this.follow_project = res.data.follow_project
|
|
|
+ // 下周开标提醒
|
|
|
+ if (res.data.nextweek_bidopen && res.data.nextweek_bidopen.length > 0) {
|
|
|
+ this.priority.nextweek_bidopen = res.data.nextweek_bidopen
|
|
|
+ }
|
|
|
+ // 重点关注企业
|
|
|
+ if (res.data.follow_ent && res.data.follow_ent.length > 0) {
|
|
|
+ this.priority.follow_ent = res.data.follow_ent
|
|
|
+ }
|
|
|
+ // 重点关注项目
|
|
|
+ if (res.data.follow_project && res.data.follow_project.length > 0) {
|
|
|
+ this.priority.follow_project = res.data.follow_project
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
},
|