{
- this.$nextTick(() => {
- var myChart = echarts.init(document.getElementById("nucleusThrough"));
+ methods: {
+ init(){
+ this.dateTime = new Date();
+ this.bindEventTypePublishManageMonth();
+ },
+ bindEventTypePublishManageMonth(){
+ request({
+ url: `/business/manage/eventTypePublishManageMonth`,
+ method: "post",
+ data: {publishTime:moment(this.dateTime).format('YYYY-MM-DD HH:mm:ss')},
+ })
+ .then((result) => {
+ if (result.code != 200) return;
+ const total = [0,0,0,0,0,0,0];
+ result.data.forEach(e => {
+ total[e.publishChannels-1] = total[e.publishChannels-1] + e.number
+ });
+ const data = [[],[],[],[],[],[],[]]
+ result.data.forEach(e => {
+ data[e.publishChannels-1].push(total[e.publishChannels-1] ? e.number/total[e.publishChannels-1]:0)
+ });
+ chartsStatistics.series.forEach((e,i) => {
+ e.data = data[i]
+ });
+ var myChart = echarts.init(document.getElementById("nucleusThrough"));
myChart.setOption(chartsStatistics);
- });
- });
+ // let sdata = [[],[],[],[],[],[],[]]
+ // for(let i of result.data){
+ // sdata[i.publishChannels-1].push(i.number)
+ // }
+ // chartsStatistics.series.forEach((e,i) => {
+ // e.data = sdata[i]
+ // });
+ // var myChart = echarts.init(document.getElementById("postTrendsMonth"));
+ // myChart.setOption(chartsStatistics);
+ })
+ },
+ },
+ mounted() {
+
+ this.init();
+ // setTimeout(() => {
+ // this.$nextTick(() => {
+ // var myChart = echarts.init(document.getElementById("nucleusThrough"));
+ // myChart.setOption(chartsStatistics);
+ // });
+ // });
},
};
@@ -147,7 +187,7 @@ export default {
}
.charts {
- height: 300px;
+ height: 100%;
width: 100%;
}
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/nucleusThroughLine/assets/charts3.js b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/nucleusThroughLine/assets/charts3.js
new file mode 100644
index 00000000..9676e228
--- /dev/null
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/nucleusThroughLine/assets/charts3.js
@@ -0,0 +1,305 @@
+import * as echarts from "echarts";
+
+let xData = [
+ "1月",
+ "2月",
+ "3月",
+ "4月",
+ "5月",
+ "6月",
+ "7月",
+ "8月",
+ "9月",
+ "10月",
+ "11月",
+ "12月",
+];
+let data1 = [200, 530, 920, 400, 600, 700, 300, 800, 900, 120, 570, 800];
+let data2 = [120, 340, 750, 600, 400, 700, 900, 200, 540, 320, 370, 500];
+let data3 = [200, 530, 920, 400, 600, 700, 300, 800, 900, 120, 570, 800];
+let options = {
+ tooltip: {
+ show: true,
+ trigger: "axis",
+ valueFormatter: function (value) {
+ return value + " 起";
+ },
+ },
+ grid: {
+ left: "0",
+ right: "0",
+ top: "80px",
+ bottom: "25px",
+ containLabel: true,
+ },
+ xAxis: {
+ data: xData,
+ show: true,
+ axisTick: {
+ show: false,
+ lineStyle: {
+ color: "#fff",
+ },
+ },
+ axisLine: {
+ lineStyle: {
+ color: "#2CC9EC",
+ },
+ },
+ axisLabel: {
+ interval: 0,
+ align: "center",
+ rotate: "1",
+ margin: "20",
+ textStyle: {
+ fontSize: 10,
+ color: "#fff",
+ },
+ },
+ },
+ yAxis: [
+ {
+ name: "(起)",
+ nameTextStyle: {
+ color: "#fff",
+ fontSize: 10,
+ align: "right",
+ verticalAlign: "center",
+ },
+ axisLine: {
+ lineStyle: {
+ color: "#1D7B93",
+ },
+ },
+ splitLine: {
+ show: true,
+ lineStyle: {
+ color: "rgba(28, 130, 197, .3)",
+ type: "solid",
+ },
+ },
+ axisLabel: {
+ color: "#fff",
+ textStyle: {
+ fontSize: 10,
+ },
+ },
+ axisTick: {
+ show: false,
+ },
+ },
+ ],
+ legend: {
+ // orient: 'vertical',
+ icon: "circle",
+ itemHeight: 8,
+ itemWidth: 8,
+ top: "5%",
+ right: "10%",
+ textStyle: {
+ color: "#fff",
+ },
+
+ data: [
+ {
+ name: "审核通过",
+ itemStyle: {
+ color: "#08BAF4",
+ },
+ },
+ {
+ name: "待审核",
+ itemStyle: {
+ color: "#51BFA4",
+ },
+ },
+ {
+ name: "审核不通过",
+ itemStyle: {
+ color: "#E2BA74",
+ },
+ },
+ ],
+ },
+ series: [
+ {
+ name: "审核通过",
+ type: "bar",
+ barWidth: "10px",
+ selectedMode: false,
+ select: {
+ itemStyle: {
+ opacity: 1,
+ color: function (params) {
+ var a = params;
+
+ return new echarts.graphic.LinearGradient(
+ 0,
+ 0,
+ 0,
+ 1,
+ [
+ {
+ offset: 0,
+ color: "#1AC5FD", // 0% 处的颜色
+ },
+ {
+ offset: 1,
+ color: "#08BAF4", // 100% 处的颜色
+ },
+ ],
+ false
+ );
+ },
+ },
+ },
+ itemStyle: {
+ // lenged文本
+ opacity: 0.9,
+ color: function (params) {
+ var a = params.name;
+ // console.log("==========a=============",a);
+ return new echarts.graphic.LinearGradient(
+ 0,
+ 0,
+ 0,
+ 1,
+ [
+ {
+ offset: 0,
+ color: "#1AC5FD", // 0% 处的颜色
+ },
+ {
+ offset: 1,
+ color: "#003B4E", // 100% 处的颜色
+ },
+ ],
+ false
+ );
+ },
+ },
+ data: data2,
+ },
+ // 下半截柱状图linear-gradient(180deg, #61D8FF 0%, #003B4E 100%); linear-gradient(180deg, #06D7B1 0%, #003B4E 100%)
+ {
+ name: "待审核",
+ type: "bar",
+ barWidth: "10px",
+ barGap: "120%",
+ selectedMode: false,
+ select: {
+ itemStyle: {
+ opacity: 1,
+ color: function (params) {
+ var a = params;
+
+ return new echarts.graphic.LinearGradient(
+ 0,
+ 0,
+ 0,
+ 1,
+ [
+ {
+ offset: 0,
+ color: "#00E4BB53", // 0% 处的颜色
+ },
+ {
+ offset: 1,
+ color: "#51BFA4", // 100% 处的颜色
+ },
+ ],
+ false
+ );
+ },
+ },
+ },
+ itemStyle: {
+ // lenged文本
+ opacity: 0.9,
+ color: function (params) {
+ var a = params.name;
+ // console.log("==========a=============",a);
+ return new echarts.graphic.LinearGradient(
+ 0,
+ 0,
+ 0,
+ 1,
+ [
+ {
+ offset: 0,
+ color: "#00E4BB", // 0% 处的颜色
+ },
+ {
+ offset: 1,
+ color: "#00E4BB00", // 100% 处的颜色
+ },
+ ],
+ false
+ );
+ },
+ },
+ data: data1,
+ },
+
+ {
+ name: "审核不通过",
+ type: "bar",
+ barWidth: "10px",
+ selectedMode: false,
+ select: {
+ itemStyle: {
+ opacity: 1,
+ color: function (params) {
+ var a = params;
+
+ return new echarts.graphic.LinearGradient(
+ 0,
+ 0,
+ 0,
+ 1,
+ [
+ {
+ offset: 0,
+ color: "#1AC5FD", // 0% 处的颜色
+ },
+ {
+ offset: 1,
+ color: "#E2BA74", // 100% 处的颜色
+ },
+ ],
+ false
+ );
+ },
+ },
+ },
+ itemStyle: {
+ // lenged文本
+ opacity: 0.9,
+ color: function (params) {
+ var a = params.name;
+ // console.log("==========a=============",a);
+ return new echarts.graphic.LinearGradient(
+ 0,
+ 0,
+ 0,
+ 1,
+ [
+ {
+ offset: 0,
+ color: "#FCBE39", // 0% 处的颜色
+ },
+ {
+ offset: 1,
+ color: "#FCBE3900", // 100% 处的颜色
+ },
+ ],
+ false
+ );
+ },
+ },
+ data: data2,
+ },
+ ],
+};
+
+export default options;
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/nucleusThroughLine/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/nucleusThroughLine/index.vue
new file mode 100644
index 00000000..a2f5215d
--- /dev/null
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/nucleusThroughLine/index.vue
@@ -0,0 +1,153 @@
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsDay/assets/charts.js b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsDay/assets/charts.js
index e33b1f3d..0f33f352 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsDay/assets/charts.js
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsDay/assets/charts.js
@@ -1,17 +1,29 @@
/* 数据 */
let nameList = [
"00:00",
+ "01:00",
"02:00",
+ "03:00",
"04:00",
+ "05:00",
"06:00",
+ "07:00",
"08:00",
+ "09:00",
"10:00",
+ "11:00",
"12:00",
+ "13:00",
"14:00",
+ "15:00",
"16:00",
+ "17:00",
"18:00",
+ "19:00",
"20:00",
+ "21:00",
"22:00",
+ "23:00",
]; // 类别
let valueList = [
800, 520, 650, 950, 420, 600, 450, 720, 303, 503, 203, 703, 903,
@@ -133,7 +145,7 @@ var options = {
],
series: [
{
- name: "情报板发布",
+ name: "手机短信",
type: "line",
symbol: "circle",
symbolSize: 0,
@@ -148,26 +160,23 @@ var options = {
x2: 0,
y2: 1,
colorStops: [
- { offset: 0.389, color: "#32BB8A90" },
- { offset: 1, color: "#32BB8A00" },
+ { offset: 0.389, color: "#51BFA490" },
+ { offset: 1, color: "#51BFA400" },
],
global: false,
},
},
// yAxisIndex: 1, // 与第二个 y 轴关联
itemStyle: {
- color: "#32BB8A",
+ color: "#51BFA4",
},
lineStyle: {
width: 2,
},
-
- data: [
- 1000, 800, 520, 600, 900, 700, 700, 1000, 800, 520, 600, 900, 700, 700,
- ], // 折线图的数据
+ data: [],
},
{
- name: "服务网站",
+ name: "微信公众号",
type: "line",
symbol: "circle",
symbolSize: 0,
@@ -196,12 +205,10 @@ var options = {
global: false,
},
},
- data: [
- 600, 700, 900, 400, 500, 800, 600, 600, 700, 900, 400, 500, 800, 600,
- ], // 折线图的数据
+ data: [],
},
{
- name: "微信发布",
+ name: "微博",
type: "line",
symbol: "circle",
symbolSize: 0,
@@ -229,20 +236,76 @@ var options = {
lineStyle: {
width: 2,
},
- data: [
- 850, 810, 712, 580, 480, 480, 780, 850, 810, 712, 580, 480, 480, 780,
- ], // 折线图的数据
+ data: [],
},
{
- name: "微博发布",
+ name: "情报板",
type: "line",
symbol: "circle",
symbolSize: 0,
// yAxisIndex: 1, // 与第二个 y 轴关联
itemStyle: {
- color: "#51BFA4",
+ color: "#FB6D07",
+ },
+ smooth: true,
+ areaStyle: {
+ width: 4,
+ opacity: 0.25,
+ color: {
+ type: "linear",
+ x: 0,
+ y: 0,
+ x2: 0,
+ y2: 1,
+ colorStops: [
+ { offset: 0.389, color: "#FB6D0799" },
+ { offset: 1, color: "#FB6D0700" },
+ ],
+ global: false,
+ },
+ },
+ lineStyle: {
+ width: 2,
+ },
+ data: [],
+ },
+ {
+ name: "服务网站",
+ type: "line",
+ symbol: "circle",
+ symbolSize: 0,
+ // yAxisIndex: 1, // 与第二个 y 轴关联
+ itemStyle: {
+ color: "#07DEFB",
},
smooth: true,
+ areaStyle: {
+ width: 4,
+ opacity: 0.25,
+ color: {
+ type: "linear",
+ x: 0,
+ y: 0,
+ x2: 0,
+ y2: 1,
+ colorStops: [
+ { offset: 0.389, color: "#07DEFB90" },
+ { offset: 1, color: "#07DEFB00" },
+ ],
+ global: false,
+ },
+ },
+ lineStyle: {
+ width: 2,
+ },
+ data: [],
+ },
+ {
+ name: "微信小程序",
+ type: "line",
+ symbol: "circle",
+ symbolSize: 0,
+ smooth: true,
areaStyle: {
width: 4,
opacity: 0.25,
@@ -259,22 +322,28 @@ var options = {
global: false,
},
},
+ // yAxisIndex: 1, // 与第二个 y 轴关联
+ itemStyle: {
+ color: "#51BFA4",
+ },
lineStyle: {
width: 2,
},
- data: [
- 850, 810, 712, 580, 480, 480, 780, 850, 810, 712, 580, 480, 480, 780,
- ], // 折线图的数据
+ data: [],
},
{
- name: "短信发布",
+ name: "语音广播",
type: "line",
symbol: "circle",
symbolSize: 0,
+
// yAxisIndex: 1, // 与第二个 y 轴关联
itemStyle: {
color: "#08BAF4",
},
+ lineStyle: {
+ width: 2,
+ },
smooth: true,
areaStyle: {
width: 4,
@@ -292,12 +361,7 @@ var options = {
global: false,
},
},
- lineStyle: {
- width: 2,
- },
- data: [
- 850, 410, 712, 680, 50, 280, 480, 850, 810, 712, 580, 480, 480, 780,
- ], // 折线图的数据
+ data: [],
},
],
};
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsDay/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsDay/index.vue
index 788cd6ed..2f4af1bc 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsDay/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsDay/index.vue
@@ -11,6 +11,7 @@
import WgtTitle from "@screen/pages/perception/widgets/title";
import * as echarts from "echarts";
import chartsStatistics from "./assets/charts";
+import request from "@/utils/request";
export default {
name: 'RailWayDay',
components: {
@@ -26,15 +27,35 @@ export default {
},
methods: {
-
+ bindTrendsPublishManage(){
+ request({
+ url: `/business/manage/trendsPublishManage`,
+ method: "post",
+ data: {},
+ })
+ .then((result) => {
+ if (result.code != 200) return;
+ // console.log(result,'-----------------')
+ let sdata = [[],[],[],[],[],[],[]]
+ for(let i of result.data){
+ sdata[i.publishChannels-1].push(i.number)
+ }
+ chartsStatistics.series.forEach((e,i) => {
+ e.data = sdata[i]
+ });
+ var myChart = echarts.init(document.getElementById("postTrendsDay"));
+ myChart.setOption(chartsStatistics);
+ })
+ },
},
mounted() {
- setTimeout(() => {
- this.$nextTick(() => {
- var myChart = echarts.init(document.getElementById('postTrendsDay'));
- myChart.setOption(chartsStatistics);
- });
- });
+ this.bindTrendsPublishManage();
+ // setTimeout(() => {
+ // this.$nextTick(() => {
+ // var myChart = echarts.init(document.getElementById('postTrendsDay'));
+ // myChart.setOption(chartsStatistics);
+ // });
+ // });
},
}
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsMonth/assets/charts.js b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsMonth/assets/charts.js
index 1b52e691..090f6794 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsMonth/assets/charts.js
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsMonth/assets/charts.js
@@ -1,22 +1,33 @@
/* 数据 */
let nameList = [
"00:00",
+ "01:00",
"02:00",
+ "03:00",
"04:00",
+ "05:00",
"06:00",
+ "07:00",
"08:00",
+ "09:00",
"10:00",
+ "11:00",
"12:00",
+ "13:00",
"14:00",
+ "15:00",
"16:00",
+ "17:00",
"18:00",
+ "19:00",
"20:00",
+ "21:00",
"22:00",
+ "23:00",
]; // 类别
let valueList = [
800, 520, 650, 950, 420, 600, 450, 720, 303, 503, 203, 703, 903, 903,
]; // 人数
-var yList = ["1000", "800", "轻度拥堵", "基本畅通", "畅通"];
/* 数据整合 */
let dataList = [];
nameList.map((item, index) => {
@@ -81,7 +92,7 @@ var options = {
top: "80px", //上边距
right: "0", //右边距
left: "0", //左边距
- bottom: "10px", //下边距
+ bottom: "20px", //下边距
containLabel: true,
},
xAxis: {
@@ -134,7 +145,7 @@ var options = {
],
series: [
{
- name: "情报板发布",
+ name: "手机短信",
type: "line",
symbol: "circle",
symbolSize: 0,
@@ -162,11 +173,10 @@ var options = {
lineStyle: {
width: 2,
},
-
- data: [1000, 800, 520, 600, 900, 700, 700, 1000, 800, 520, 600, 900], // 折线图的数据
+ data: [],
},
{
- name: "服务网站",
+ name: "微信公众号",
type: "line",
symbol: "circle",
symbolSize: 0,
@@ -195,10 +205,10 @@ var options = {
global: false,
},
},
- data: [600, 700, 900, 400, 500, 800, 600, 600, 700, 900, 400, 500], // 折线图的数据
+ data: [],
},
{
- name: "微信发布",
+ name: "微博",
type: "line",
symbol: "circle",
symbolSize: 0,
@@ -226,10 +236,10 @@ var options = {
lineStyle: {
width: 2,
},
- data: [850, 810, 712, 580, 480, 480, 780, 850, 810, 712, 580, 480], // 折线图的数据
+ data: [],
},
{
- name: "微博发布",
+ name: "情报板",
type: "line",
symbol: "circle",
symbolSize: 0,
@@ -257,10 +267,10 @@ var options = {
lineStyle: {
width: 2,
},
- data: [850, 810, 712, 580, 480, 480, 780, 850, 810, 712, 580, 480], // 折线图的数据
+ data: [],
},
{
- name: "短信发布",
+ name: "服务网站",
type: "line",
symbol: "circle",
symbolSize: 0,
@@ -288,7 +298,70 @@ var options = {
lineStyle: {
width: 2,
},
- data: [850, 410, 712, 680, 50, 280, 480, 850, 810, 712, 580, 480], // 折线图的数据
+ data: [],
+ },
+ {
+ name: "微信小程序",
+ type: "line",
+ symbol: "circle",
+ symbolSize: 0,
+ smooth: true,
+ areaStyle: {
+ width: 4,
+ opacity: 0.25,
+ color: {
+ type: "linear",
+ x: 0,
+ y: 0,
+ x2: 0,
+ y2: 1,
+ colorStops: [
+ { offset: 0.389, color: "#51BFA490" },
+ { offset: 1, color: "#51BFA400" },
+ ],
+ global: false,
+ },
+ },
+ // yAxisIndex: 1, // 与第二个 y 轴关联
+ itemStyle: {
+ color: "#51BFA4",
+ },
+ lineStyle: {
+ width: 2,
+ },
+ data: [],
+ },
+ {
+ name: "语音广播",
+ type: "line",
+ symbol: "circle",
+ symbolSize: 0,
+
+ // yAxisIndex: 1, // 与第二个 y 轴关联
+ itemStyle: {
+ color: "#08BAF4",
+ },
+ lineStyle: {
+ width: 2,
+ },
+ smooth: true,
+ areaStyle: {
+ width: 4,
+ opacity: 0.25,
+ color: {
+ type: "linear",
+ x: 0,
+ y: 0,
+ x2: 0,
+ y2: 1,
+ colorStops: [
+ { offset: 0.389, color: "#08BAF490" },
+ { offset: 1, color: "#08BAF400" },
+ ],
+ global: false,
+ },
+ },
+ data: [],
},
],
};
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsMonth/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsMonth/index.vue
index 1b058b2c..bdef0ab3 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsMonth/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/postTrendsMonth/index.vue
@@ -17,9 +17,10 @@
size="mini"
class="btnSearch"
icon="el-icon-search"
+ @click="bindMonthTrendsPublishManage()"
>查询
- 重置
@@ -32,6 +33,8 @@
import WgtTitle from "@screen/pages/perception/widgets/title";
import * as echarts from "echarts";
import chartsStatistics from "./assets/charts";
+import request from "@/utils/request";
+import moment from "moment";
export default {
name: "postTrendsMonth",
components: {
@@ -44,14 +47,33 @@ export default {
},
created() {},
- methods: {},
+ methods: {
+ bindMonthTrendsPublishManage(){
+ request({
+ url: `/business/manage/monthTrendsPublishManage`,
+ method: "post",
+ data: {publishTime:moment(this.dateTime).format('YYYY-MM-DD HH:mm:ss')},
+ })
+ .then((result) => {
+ if (result.code != 200) return;
+ let sdata = [[],[],[],[],[],[],[]]
+ for(let i of result.data){
+ sdata[i.publishChannels-1].push(i.number)
+ }
+ chartsStatistics.series.forEach((e,i) => {
+ e.data = sdata[i]
+ });
+ var myChart = echarts.init(document.getElementById("postTrendsMonth"));
+ myChart.setOption(chartsStatistics);
+ })
+ },
+ init(){
+ this.dateTime = new Date();
+ this.bindMonthTrendsPublishManage();
+ }
+ },
mounted() {
- setTimeout(() => {
- this.$nextTick(() => {
- var myChart = echarts.init(document.getElementById("postTrendsMonth"));
- myChart.setOption(chartsStatistics);
- });
- });
+ this.init();
},
};
@@ -139,7 +161,7 @@ export default {
}
.charts {
- height: 300px;
+ height: 100%;
width: 100%;
}
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/topComponent/assets/设备设施隐患.png b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/topComponent/assets/设备设施隐患.png
new file mode 100644
index 00000000..35d501d6
Binary files /dev/null and b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/topComponent/assets/设备设施隐患.png differ
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/topComponent/assets/非法上路.png b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/topComponent/assets/非法上路.png
new file mode 100644
index 00000000..17c4bb9c
Binary files /dev/null and b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/topComponent/assets/非法上路.png differ
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/topComponent/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/topComponent/index.vue
index 89b65bcb..5c9a99b3 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/topComponent/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/topComponent/index.vue
@@ -1,7 +1,8 @@