处理了数据云图中哥哥模块统计数据时间

xuhongjie
许宏杰 2 weeks ago
parent f939ea9726
commit 53b14b7ff3

@ -7,7 +7,7 @@ ENV = 'development'
# 金鸡湖现代服务业品牌管理系统/开发环境 # 金鸡湖现代服务业品牌管理系统/开发环境
VUE_APP_BASE_API = 'http://192.168.0.123:9040' VUE_APP_BASE_API = 'http://192.168.0.123:9040'
# 测试环境数据库 # 测试环境数据库
# VUE_APP_BASE_API = 'http://39.101.188.84:9040' VUE_APP_BASE_API = 'http://39.101.188.84:9040'
# 脱敏三方测试用数据库 # 脱敏三方测试用数据库
# VUE_APP_BASE_API = 'http://39.101.188.84:9031' # VUE_APP_BASE_API = 'http://39.101.188.84:9031'
# 正式环境数据库 # 正式环境数据库

@ -1,6 +1,6 @@
{ {
"name": "ruoyi", "name": "ruoyi",
"version": "1.0.202502181028", "version": "1.0.202504021009",
"description": "金鸡湖现代服务业品牌管理系统", "description": "金鸡湖现代服务业品牌管理系统",
"author": "若依", "author": "若依",
"license": "MIT", "license": "MIT",
@ -39,7 +39,7 @@
"@riophae/vue-treeselect": "0.4.0", "@riophae/vue-treeselect": "0.4.0",
"@wangeditor/editor": "^5.1.23", "@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^1.0.2", "@wangeditor/editor-for-vue": "^1.0.2",
"autofit.js": "^3.1.0", "autofit.js": "^3.2.1",
"axios": "0.24.0", "axios": "0.24.0",
"bpmn-js-token-simulation": "0.10.0", "bpmn-js-token-simulation": "0.10.0",
"clipboard": "2.0.8", "clipboard": "2.0.8",
@ -55,6 +55,7 @@
"jsencrypt": "3.0.0-rc.1", "jsencrypt": "3.0.0-rc.1",
"jspdf": "^2.5.1", "jspdf": "^2.5.1",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"moment": "^2.30.1",
"node-forge": "^1.3.1", "node-forge": "^1.3.1",
"nprogress": "0.2.0", "nprogress": "0.2.0",
"quill": "1.3.7", "quill": "1.3.7",

@ -10,7 +10,7 @@
<span class="dataCloudMap-birght"></span> <span class="dataCloudMap-birght"></span>
<span class="dataCloudMap-title">服务业发展总览</span> <span class="dataCloudMap-title">服务业发展总览</span>
</div> </div>
<span class="dataCloudMap-data">统计数据截至2024-01</span> <span class="dataCloudMap-data">统计数据截至{{firstMonthOfYear}}</span>
</div> </div>
<div class="rightBigNav"> <div class="rightBigNav">
<div class="right-nav"> <div class="right-nav">
@ -38,7 +38,7 @@
<span class="dataCloudMap-birght"></span> <span class="dataCloudMap-birght"></span>
<span class="dataCloudMap-title">行业纵深情况</span> <span class="dataCloudMap-title">行业纵深情况</span>
</div> </div>
<span class="dataCloudMap-data">统计数据截至2024-01</span> <span class="dataCloudMap-data">统计数据截至{{firstMonthOfYear}}</span>
</div> </div>
<div class="rightBtn" @click="industryBtn">>></div> <div class="rightBtn" @click="industryBtn">>></div>
</div> </div>
@ -91,7 +91,7 @@
<span class="dataCloudMap-birght"></span> <span class="dataCloudMap-birght"></span>
<span class="dataCloudMap-title">企业情况</span> <span class="dataCloudMap-title">企业情况</span>
</div> </div>
<span class="dataCloudMap-data">统计数据截至2024-01</span> <span class="dataCloudMap-data">统计数据截至{{firstMonthOfYear}}</span>
</div> </div>
<div class="dataCloudMap-enterprise-bottom"> <div class="dataCloudMap-enterprise-bottom">
<div class="dataCloudMap-enterprise"> <div class="dataCloudMap-enterprise">
@ -209,7 +209,7 @@
<span class="dataCloudMap-birght"></span> <span class="dataCloudMap-birght"></span>
<span class="dataCloudMap-title">荣誉情况</span> <span class="dataCloudMap-title">荣誉情况</span>
</div> </div>
<span class="dataCloudMap-data">统计数据截至2024-01</span> <span class="dataCloudMap-data">统计数据截至{{firstMonthOfYear}}</span>
</div> </div>
<div class="rightBtn" @click="honorBtn">>></div> <div class="rightBtn" @click="honorBtn">>></div>
</div> </div>
@ -317,6 +317,7 @@
</div> </div>
</template> </template>
<script> <script>
const moment = require('moment');
import honorDialogVue from './components/honorDialog.vue'; import honorDialogVue from './components/honorDialog.vue';
import headqEnterprise from './components/headquarterEnterprise.vue' import headqEnterprise from './components/headquarterEnterprise.vue'
import serviceIndustry from './components/serviceIndustry.vue' import serviceIndustry from './components/serviceIndustry.vue'
@ -328,6 +329,7 @@ export default {
dicts: ["project_small_type"], dicts: ["project_small_type"],
data() { data() {
return { return {
firstMonthOfYear:moment().startOf('year').format('YYYY-MM'),
activeIndex:1, activeIndex:1,
options1: [ options1: [
{ {

Loading…
Cancel
Save