diff --git a/src/views/dataBoard/cpts/enterpriseInfo-detail.vue b/src/views/dataBoard/cpts/enterpriseInfo-detail.vue index d66b4be1f..66fcc416a 100644 --- a/src/views/dataBoard/cpts/enterpriseInfo-detail.vue +++ b/src/views/dataBoard/cpts/enterpriseInfo-detail.vue @@ -7,42 +7,34 @@
场所名称:
{{ info.place_org_name }}
-
占地面积:
{{ info.area_covered }}
-
场所规模:
{{ info.scale_total }}
-
所属组织:
{{ info.grid }}
-
场所类别:
{{ info.place_category }}
-
场所类型:
{{ info.place_type }}
-
负责人:
{{ info.person_in_charge }}
-
联系电话:
{{ info.mobile }}
-
场所地址:
{{ info.mobile }}
@@ -57,77 +49,91 @@ - - + \ No newline at end of file diff --git a/src/views/dataBoard/sida/cpts/fw02gxxq.vue b/src/views/dataBoard/sida/cpts/fw02gxxq.vue index 9fc2aa3d2..a605d7955 100644 --- a/src/views/dataBoard/sida/cpts/fw02gxxq.vue +++ b/src/views/dataBoard/sida/cpts/fw02gxxq.vue @@ -53,20 +53,17 @@ avoidLabelOverlap: false, labelLine: { show: true, - }, label: { - normal: { - show: false, + show: true, formatter: '{title|{b}}\n{d}%', - fontSize:24, + fontSize: 24, color: '#FFFFFF', rich: { title: { fontSize: 12, height: 25, - }, } } @@ -126,6 +123,7 @@ if (code === 0) { if (data && Array.isArray(data) && data.length > 0) { this.info = data; + console.log("this.info", this.info) } } else { this.$message.error(msg); @@ -157,6 +155,13 @@ let data = [...this.info]; data = JSON.parse(JSON.stringify(data).replace(/parent_type_name/g, 'name')); data = JSON.parse(JSON.stringify(data).replace(/common_demand_num/g, 'value')); + data.map((item) => { + if (item.value == 0) { + item.value = null + } + return item + }) + console.log("da2ta", data) this.pieData = data; this.iniPieChart(); }, diff --git a/src/views/dataBoard/sida/cpts/fw04gx.vue b/src/views/dataBoard/sida/cpts/fw04gx.vue index 3f1f3914e..072eb6201 100644 --- a/src/views/dataBoard/sida/cpts/fw04gx.vue +++ b/src/views/dataBoard/sida/cpts/fw04gx.vue @@ -1,6 +1,5 @@ - + .pieMain2 { + margin-left: 0px !important + } + \ No newline at end of file diff --git a/src/views/dataBoard/sida/cpts/fwBarOption01.js b/src/views/dataBoard/sida/cpts/fwBarOption01.js index ec6d6d6c0..a2855d658 100644 --- a/src/views/dataBoard/sida/cpts/fwBarOption01.js +++ b/src/views/dataBoard/sida/cpts/fwBarOption01.js @@ -75,9 +75,10 @@ export function pieOption() { }, }], series: [{ + realtimeSort: true, name: '公共服务', type: 'bar', - stack: 'Ad', + // stack: 'Ad', barWidth: 12, emphasis: { focus: 'series' @@ -93,10 +94,11 @@ export function pieOption() { }, data: [] }, { + name: '指派服务', type: 'bar', barWidth: 12, - stack: 'Ad', + // stack: 'Ad', emphasis: { focus: 'series' }, diff --git a/src/views/dataBoard/sida/cpts/fwBarOption04.js b/src/views/dataBoard/sida/cpts/fwBarOption04.js index 2b5f00d37..1289a2def 100644 --- a/src/views/dataBoard/sida/cpts/fwBarOption04.js +++ b/src/views/dataBoard/sida/cpts/fwBarOption04.js @@ -43,8 +43,7 @@ export function pieOption() { alignWithLabel: true }, axisLabel: { - interval:3, - + interval: 1, show: true, textStyle: { color: 'rgba(255,255,255,0.85)', //更改坐标轴文字颜色 @@ -55,8 +54,23 @@ export function pieOption() { }], yAxis: [{ type: 'value', - - splitNumber: 5, + splitLine: { + show: true, + lineStyle: { + color: 'rgba(255,255,255,0.15)', + width: 1, + type: 'solid' + } + }, + axisLabel: { + show: true, + textStyle: { + color: 'rgba(255,255,255,0.85)', //更改坐标轴文字颜色 + fontSize: 12 //更改坐标轴文字大小 + } + }, + }, { + type: 'value', splitLine: { show: true, lineStyle: { @@ -74,9 +88,9 @@ export function pieOption() { }, }], series: [{ - name: '个性服务', - type: 'bar', - + yAxisIndex: 0, + name: '服务完成率', + type: 'line', barWidth: 12, emphasis: { focus: 'series' @@ -84,7 +98,7 @@ export function pieOption() { itemStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, - color: '#6FDEFF' + color: '#FFAA00' }, { offset: 1, color: 'rgba(168,241,255,0)' @@ -92,17 +106,18 @@ export function pieOption() { }, data: [] }, { - name: '完成服务', + realtimeSort: true, + yAxisIndex: 1, + name: '个性服务', type: 'bar', barWidth: 12, - emphasis: { focus: 'series' }, itemStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, - color: '#eaff27' + color: '#6FDEFF' }, { offset: 1, color: 'rgba(168,241,255,0)' @@ -110,17 +125,18 @@ export function pieOption() { }, data: [] }, { - name: '服务完成率', - type: 'line', + // realtimeSort: true, + yAxisIndex: 1, + name: '完成服务', + type: 'bar', barWidth: 12, - stack: 'Ad', emphasis: { focus: 'series' }, itemStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, - color: '#FFAA00' + color: '#eaff27' }, { offset: 1, color: 'rgba(168,241,255,0)' @@ -129,4 +145,4 @@ export function pieOption() { data: [] }, ] } -} +} \ No newline at end of file diff --git a/src/views/dataBoard/sida/cpts/fwBarOption05.js b/src/views/dataBoard/sida/cpts/fwBarOption05.js index b484f6320..b742c545a 100644 --- a/src/views/dataBoard/sida/cpts/fwBarOption05.js +++ b/src/views/dataBoard/sida/cpts/fwBarOption05.js @@ -75,35 +75,36 @@ export function pieOption() { }, }], series: [{ - name: '发布政策数', + name: '指派服务数', type: 'bar', - barWidth: 12, + emphasis: { focus: 'series' }, itemStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, - color: '#6FDEFF' + color: '#eaff27' }, { offset: 1, color: 'rgba(168,241,255,0)' }]) }, data: [] - }, { - name: '指派服务数', + }, + { + name: '发布政策数', type: 'bar', - barWidth: 12, + barWidth: 12, emphasis: { focus: 'series' }, itemStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, - color: '#eaff27' + color: '#6FDEFF' }, { offset: 1, color: 'rgba(168,241,255,0)' diff --git a/src/views/dataBoard/sida/fuwu/gexingDetail.vue b/src/views/dataBoard/sida/fuwu/gexingDetail.vue deleted file mode 100644 index 21d94e9a1..000000000 --- a/src/views/dataBoard/sida/fuwu/gexingDetail.vue +++ /dev/null @@ -1,156 +0,0 @@ - - - - - diff --git a/src/views/dataBoard/sida/fuwu/gexingList.vue b/src/views/dataBoard/sida/fuwu/gexingList.vue deleted file mode 100644 index d1ebbdfcf..000000000 --- a/src/views/dataBoard/sida/fuwu/gexingList.vue +++ /dev/null @@ -1,198 +0,0 @@ - - - - - diff --git a/src/views/dataBoard/sida/fuwu/gonggongDetail.vue b/src/views/dataBoard/sida/fuwu/gonggongDetail.vue deleted file mode 100644 index ddabee70d..000000000 --- a/src/views/dataBoard/sida/fuwu/gonggongDetail.vue +++ /dev/null @@ -1,133 +0,0 @@ - - - - - diff --git a/src/views/dataBoard/sida/fuwu/gonggongList.vue b/src/views/dataBoard/sida/fuwu/gonggongList.vue deleted file mode 100644 index 4445f23d6..000000000 --- a/src/views/dataBoard/sida/fuwu/gonggongList.vue +++ /dev/null @@ -1,189 +0,0 @@ - - - \ No newline at end of file diff --git a/src/views/dataBoard/sida/wt/hiddenDanger-detail.vue b/src/views/dataBoard/sida/wt/hiddenDanger-detail.vue index 9914d411a..0ac1e2d26 100644 --- a/src/views/dataBoard/sida/wt/hiddenDanger-detail.vue +++ b/src/views/dataBoard/sida/wt/hiddenDanger-detail.vue @@ -7,42 +7,34 @@
场所名称:
{{ info.place_org_name }}
-
占地面积:
{{ info.area_covered }}
-
场所规模:
{{ info.scale_total }}
-
所属组织:
{{ info.grid }}
-
场所类别:
{{ info.place_category }}
-
场所类型:
{{ info.place_type }}
-
负责人:
{{ info.person_in_charge }}
-
联系电话:
{{ info.mobile }}
-
场所地址:
{{ info.mobile }}
@@ -60,7 +52,6 @@
隐患场所:
{{ info.danger_place_name }}
-
隐患内容:
{{ info.danger_content }}
@@ -69,17 +60,14 @@
所属组织:
{{ info.grid }}
-
上报人:
{{ info.report_person }}
-
联系电话:
{{ info.mobile }}
-
上报时间:
{{ info.report_time }}
@@ -88,9 +76,7 @@
- - 基本信息 - + 基本信息
@@ -123,23 +109,19 @@
- - 人员信息 - + 人员信息
-
-
+
+ @click="(currentTabIndex2 = index), gettab2(item)"> {{ item.name }}
-
+
@@ -184,7 +166,6 @@ 分类信息
-
居民分类:
@@ -214,28 +195,22 @@
-
其他信息
-
-
-
+
+
{{ item }}
-
+
-
@@ -248,7 +223,6 @@
-
@@ -261,7 +235,6 @@
-
@@ -274,7 +247,6 @@
-
@@ -347,7 +319,6 @@
-
@@ -368,7 +339,6 @@
-
@@ -381,7 +351,6 @@
-
@@ -406,7 +375,6 @@
-
@@ -443,7 +411,6 @@
-
@@ -492,7 +459,6 @@
-
@@ -517,7 +483,6 @@
-
@@ -554,7 +519,6 @@
-
@@ -599,7 +563,6 @@
-
@@ -612,7 +575,6 @@
-
@@ -625,7 +587,6 @@
-
@@ -634,7 +595,6 @@
-
@@ -643,7 +603,6 @@
-
@@ -668,7 +627,6 @@
-
@@ -689,7 +647,6 @@
-
@@ -734,238 +691,248 @@ - - + \ No newline at end of file diff --git a/src/views/dataBoard/sida/zy/gexingDetail.vue b/src/views/dataBoard/sida/zy/gexingDetail.vue index 21d94e9a1..951a0a352 100644 --- a/src/views/dataBoard/sida/zy/gexingDetail.vue +++ b/src/views/dataBoard/sida/zy/gexingDetail.vue @@ -7,42 +7,34 @@
需求类型:
{{ info.category }}
-
需求内容:
{{ info.content }}
-
状态:
{{ info.demand_status }}
-
需求人:
{{ info.demand_user_name }}
-
完成情况:
{{ info.finish_result }}
-
所属网格:
{{ info.grid }}
-
备注:
{{ info.remark }}
-
上报时间:
{{ info.report_time }}
-
上报类型:
{{ info.report_type }}
@@ -59,7 +51,6 @@
评价:
{{ info.score }}
-
服务方:
{{ info.server_name }}
@@ -73,84 +64,91 @@ - - + \ No newline at end of file diff --git a/src/views/dataBoard/sida/zy/gexingList.vue b/src/views/dataBoard/sida/zy/gexingList.vue index d1ebbdfcf..57a2cf441 100644 --- a/src/views/dataBoard/sida/zy/gexingList.vue +++ b/src/views/dataBoard/sida/zy/gexingList.vue @@ -96,6 +96,7 @@ export default { let item = this.srcTableData[index]; this.detailType = item.peop_child_type; this.detailId = item.user_demand_id; + // ceshi // this.detailType = '志愿者'; // this.detailId = '1501821704551272449'; diff --git a/src/views/dataBoard/sida/zy/gonggongDetail.vue b/src/views/dataBoard/sida/zy/gonggongDetail.vue index ddabee70d..e4b7917ba 100644 --- a/src/views/dataBoard/sida/zy/gonggongDetail.vue +++ b/src/views/dataBoard/sida/zy/gonggongDetail.vue @@ -109,7 +109,10 @@ export default { const { data, code, msg } = await requestPostBi( url, { - service_record_id: this.detailId + queryParam: { + service_record_id: this.detailId + } + }, { // mockId: 69980718, diff --git a/src/views/dataBoard/sida/zy/goodsRes-detail.vue b/src/views/dataBoard/sida/zy/goodsRes-detail.vue index aa973b8a5..d32412344 100644 --- a/src/views/dataBoard/sida/zy/goodsRes-detail.vue +++ b/src/views/dataBoard/sida/zy/goodsRes-detail.vue @@ -73,7 +73,7 @@