diff --git a/pages/market/components/cardMoudule.vue b/pages/market/components/cardMoudule.vue index b48cb00..2be83e9 100644 --- a/pages/market/components/cardMoudule.vue +++ b/pages/market/components/cardMoudule.vue @@ -17,7 +17,7 @@ - 为了精准掌握玉林中燃经营区域及周边市场发展态势,预测2023财年市场开发计划和未来市场发展方向,按照集团三年发展规划及高质量发展的要求,玉林中燃积极开展了一次全面、系统、深入的全方面市场调研工作。 + {{ item.value }} diff --git a/pages/market/components/reportModule1.vue b/pages/market/components/reportModule1.vue index 43acd59..cfc1f9f 100644 --- a/pages/market/components/reportModule1.vue +++ b/pages/market/components/reportModule1.vue @@ -34,19 +34,19 @@ - + 实施情况 - - {{reportData.implementationSituation}} + + {{reportData.implementationSituation || ""}} - - + + 预算主体附件 @@ -87,7 +87,6 @@ }, data() { return { - list:12 } }, computed: { diff --git a/pages/market/components/reportModule2.vue b/pages/market/components/reportModule2.vue index 60d9241..936cb3d 100644 --- a/pages/market/components/reportModule2.vue +++ b/pages/market/components/reportModule2.vue @@ -1,345 +1,412 @@ - - diff --git a/pages/market/components/reportModule3.vue b/pages/market/components/reportModule3.vue index e4bec20..c429bbd 100644 --- a/pages/market/components/reportModule3.vue +++ b/pages/market/components/reportModule3.vue @@ -9,20 +9,34 @@ + + + + + + + + + diff --git a/pages/market/reportDetails.vue b/pages/market/reportDetails.vue index babdfc0..6696520 100644 --- a/pages/market/reportDetails.vue +++ b/pages/market/reportDetails.vue @@ -14,8 +14,8 @@ - - + + @@ -55,7 +55,10 @@ reportNo:null, reportData1:{}, reportData2:{}, + reportData2attachment:{}, reportData3:{}, + reportData3newBuildingInfo:{}, + reportData3newBuildingItem:{}, reportData4:{}, reportData5:{}, tabList: [{ @@ -91,19 +94,38 @@ if(res.code === 200){ this.reportData1 = res.data; } - console.log(this.reportData1); + console.log("1、组织",this.reportData1); }) getGeneralOverview(this.reportNo).then(res =>{ if(res.code === 200){ this.reportData2 = res.data; } - console.log(this.reportData2); + console.log("2、天然气",this.reportData2); + }) + getGeneralOverviewAttach(this.reportNo).then(res =>{ + if(res.code === 200){ + this.reportData2attachment = res.data; + } + console.log("3、天然气附表",this.reportData2attachment); + }) + getBusinessAnalyze(this.reportNo).then(res =>{ + if(res.code === 200){ + this.reportData3 = res.data; + } + console.log("4、重点业务市场分析",this.reportData3); + }) + getNewBuildingInfo(this.reportNo).then(res =>{ + if(res.code === 200){ + this.reportData3newBuildingInfo = res.data; + } + console.log("5、楼盘预计未来三年确认的新建楼盘信息",this.reportData3newBuildingInfo); + }) + getNewBuildingItem(this.reportNo).then(res =>{ + if(res.code === 200){ + this.reportData3newBuildingItem = res.data; + } + console.log("6、预计未来三年安装确认项目",this.reportData3newBuildingItem); }) - // getGeneralOverview() - // getGeneralOverviewAttach - // getBusinessAnalyze - // getNewBuildingInfo - // getNewBuildingItem // getDevelopmentPlan // getTargetSuggestion } -- libgit2 0.21.2