|
|
|
@ -10,7 +10,7 @@
|
|
|
|
|
<span class="dataCloudMap-birght"></span>
|
|
|
|
|
<span class="dataCloudMap-title">服务业发展总览</span>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="dataCloudMap-data">【统计数据截至:2024-01】</span>
|
|
|
|
|
<span class="dataCloudMap-data">【统计数据截至:{{firstMonthOfYear}}】</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="rightBigNav">
|
|
|
|
|
<div class="right-nav">
|
|
|
|
@ -38,7 +38,7 @@
|
|
|
|
|
<span class="dataCloudMap-birght"></span>
|
|
|
|
|
<span class="dataCloudMap-title">行业纵深情况</span>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="dataCloudMap-data">【统计数据截至:2024-01】</span>
|
|
|
|
|
<span class="dataCloudMap-data">【统计数据截至:{{firstMonthOfYear}}】</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="rightBtn" @click="industryBtn">查看更多数据>></div>
|
|
|
|
|
</div>
|
|
|
|
@ -91,7 +91,7 @@
|
|
|
|
|
<span class="dataCloudMap-birght"></span>
|
|
|
|
|
<span class="dataCloudMap-title">企业情况</span>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="dataCloudMap-data">【统计数据截至:2024-01】</span>
|
|
|
|
|
<span class="dataCloudMap-data">【统计数据截至:{{firstMonthOfYear}}】</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="dataCloudMap-enterprise-bottom">
|
|
|
|
|
<div class="dataCloudMap-enterprise">
|
|
|
|
@ -122,7 +122,7 @@
|
|
|
|
|
<div class="card-number number-two">{{ item.allRevenue ? item.allRevenue : '-' }}</div>
|
|
|
|
|
<div class="card-unit unit-two">亿</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 正式/测试环境加上 v-if="item.servicesType !== 3" -->
|
|
|
|
|
<div class="card-items" v-if="item.servicesType !== 3">
|
|
|
|
|
<div class="card-item-left">
|
|
|
|
@ -209,7 +209,7 @@
|
|
|
|
|
<span class="dataCloudMap-birght"></span>
|
|
|
|
|
<span class="dataCloudMap-title">荣誉情况</span>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="dataCloudMap-data">【统计数据截至:2024-01】</span>
|
|
|
|
|
<span class="dataCloudMap-data">【统计数据截至:{{firstMonthOfYear}}】</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="rightBtn" @click="honorBtn">查看更多数据>></div>
|
|
|
|
|
</div>
|
|
|
|
@ -317,6 +317,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
const moment = require('moment');
|
|
|
|
|
import honorDialogVue from './components/honorDialog.vue';
|
|
|
|
|
import headqEnterprise from './components/headquarterEnterprise.vue'
|
|
|
|
|
import serviceIndustry from './components/serviceIndustry.vue'
|
|
|
|
@ -328,6 +329,7 @@ export default {
|
|
|
|
|
dicts: ["project_small_type"],
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
firstMonthOfYear:moment().startOf('year').format('YYYY-MM'),
|
|
|
|
|
activeIndex:1,
|
|
|
|
|
options1: [
|
|
|
|
|
{
|
|
|
|
@ -430,7 +432,7 @@ export default {
|
|
|
|
|
this.tableTwoData = res.data;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 荣誉情况查看更多数据按钮
|
|
|
|
|
honorBtn(){
|
|
|
|
|
this.$refs.honorDialog.open(this.honorTableData);
|
|
|
|
|