reportDetails.vue 5.35 KB
<template>
  <view class="ComCss">
    <u-sticky bgColor="#fff" customNavHeight="0" offsetTop="0">
      <u-navbar class="navBarCss" :title="reportData1.reportName"
        :titleStyle="{'fontSize':'36rpx','color':'#333333','fontWeight':'700'}" leftClick="leftClick" :autoBack="true"
        safeAreaInsetTop placeholder />
      <view class="topCss">
        <u-tabs :list="tabList" @click="modifyCur" :current="current" lineColor="#f56c6c" :activeStyle="{
                     color: '#cf000d',
                     fontWeight: 'bold',
                     transform: 'scale(1.1)',
                     fontSize:'32rpx'
                 }" itemStyle="height: 78rpx;padding:22rpx 34rpx">
        </u-tabs>
      </view>
    </u-sticky>
    <view class="bodyCss">
      <reportModule1 v-if="current == 0" :reportData="reportData1"></reportModule1>
      <reportModule2 v-if="current == 1" :reportData="reportData2" :attachment="reportData2attachment"
        :fiscalYear="fiscalYear">
      </reportModule2>
      <reportModule3 v-if="current == 2" :reportData="reportData3" :newBuildingInfo="reportData3newBuildingInfo"
        :newBuildingItem="reportData3newBuildingItem" :fiscalYear="fiscalYear"></reportModule3>
      <reportModule4 v-if="current == 3" :reportData="reportData4" :fiscalYear="fiscalYear"></reportModule4>
      <reportModule5 v-if="current == 4" :reportData="reportData5" :fiscalYear="fiscalYear"></reportModule5>
    </view>
  </view>
</template>

<script>
  import {
    getOrganize,
    getGeneralOverview,
    getGeneralOverviewAttach,
    getBusinessAnalyze,
    getNewBuildingInfo,
    getNewBuildingItem,
    getDevelopmentPlan,
    getTargetSuggestion
  } from '@/api/organize.js'
  import reportModule1 from "./components/reportModule1.vue"
  import reportModule2 from "./components/reportModule2.vue"
  import reportModule3 from "./components/reportModule3.vue"
  import reportModule4 from "./components/reportModule4.vue"
  import reportModule5 from "./components/reportModule5.vue"
  export default {
    components: {
      reportModule1,
      reportModule2,
      reportModule3,
      reportModule4,
      reportModule5
    },
    props: {

    },
    data() {
      return {
        current: 0,
        reportNo: null,
        fiscalYear: "",
        reportData1: {},
        reportData2: {},
        reportData2attachment: {},
        reportData3: {},
        reportData3newBuildingInfo: {},
        reportData3newBuildingItem: {},
        reportData4: {},
        reportData5: {},
        tabList: [{
          name: '组织实施落实'
        }, {
          name: '天燃气市场总体概况',
        }, {
          name: '重点业务市场分析'
        }, {
          name: '未来发展规划、 所需资源配置 '
        }, {
          name: '目标思路建议'
        }],
      }
    },
    computed: {

    },
    onLoad(data) {
      if (data) {
        this.reportNo = data.reportNo;
        this.fiscalYear = data.fiscalYear;
      }
      console.log(this.reportNo);
      this.initData()
    },
    methods: {
      modifyCur(data) {
        this.current = data.index;

      },
      async initData() {
        await getOrganize(this.reportNo).then(res => {
          if (res.code === 200) {
            this.reportData1 = res.data;
          }
          console.log("1、组织", JSON.parse(JSON.stringify(this.reportData1)));
        })
        await getGeneralOverview(this.reportNo).then(res => {
          if (res.code === 200) {
            this.reportData2 = res.data;
          }
          console.log("2、天然气", JSON.parse(JSON.stringify(this.reportData2)));
        })
        await getGeneralOverviewAttach(this.reportNo).then(res => {
          if (res.code === 200) {
            this.reportData2attachment = res.data;
          }
          console.log("3、天然气附表", JSON.parse(JSON.stringify(this.reportData2attachment)));
        })
        await getBusinessAnalyze(this.reportNo).then(res => {
          if (res.code === 200) {
            this.reportData3 = res.data;
          }
          console.log("4、重点业务市场分析", JSON.parse(JSON.stringify(this.reportData3)));
        })
        await getNewBuildingInfo(this.reportNo).then(res => {
          if (res.code === 200) {
            this.reportData3newBuildingInfo = res.data;
          }
          console.log("5、楼盘预计未来三年确认的新建楼盘信息", JSON.parse(JSON.stringify(this.reportData3newBuildingInfo)));
        })
        await getNewBuildingItem(this.reportNo).then(res => {
          if (res.code === 200) {
            this.reportData3newBuildingItem = res.data;
          }
          console.log("6、预计未来三年安装确认项目", JSON.parse(JSON.stringify(this.reportData3newBuildingItem)));
        })
        await getDevelopmentPlan(this.reportNo).then(res => {
          if (res.code === 200) {
            this.reportData4 = res.data;
          }
          console.log("7、未来发展规划", JSON.parse(JSON.stringify(this.reportData4)));
        })
        await getTargetSuggestion(this.reportNo).then(res => {
          if (res.code === 200) {
            this.reportData5 = res.data;
          }
          console.log("8、目标思路建议", JSON.parse(JSON.stringify(this.reportData5)));
        })
      }
    }
  }
</script>

<style lang="scss" scoped>
  .ComCss {
    background: #f2f4f3;
  }

  .topCss {
    background: #fff;
  }

  .bodyCss {}
</style>