diff --git a/ruoyi-ui/src/views/JiHeExpressway/components/InputSearch/index.vue b/ruoyi-ui/src/views/JiHeExpressway/components/InputSearch/index.vue index f5e4f510..36f75163 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/components/InputSearch/index.vue +++ b/ruoyi-ui/src/views/JiHeExpressway/components/InputSearch/index.vue @@ -23,8 +23,8 @@ v-model="value" :placeholder="placeholder" clearable - @change="handleSearch" - > + @keyup.enter.native="handleSearch" + >
{{ placeholder }} - +
@@ -128,24 +128,28 @@ export default { }; }, }, - mounted(){ + mounted() { // document.getElementById("app") - document.addEventListener("click" , ()=>{ - if(!this.isClickedBtn){ - setTimeout(() => { - this.visible = false; - }, 100) - } - this.isClickedBtn = false; - } , false) + document.addEventListener( + "click", + () => { + if (!this.isClickedBtn) { + setTimeout(() => { + this.visible = false; + }, 100); + } + this.isClickedBtn = false; + }, + false + ); }, methods: { - onOpenPop(){ - this.isClickedBtn = true; - this.visible = !this.visible; + onOpenPop() { + this.isClickedBtn = true; + this.visible = !this.visible; }, - onClickMask(){ + onClickMask() { this.visible = false; }, handleShow() { @@ -193,7 +197,7 @@ export default { console.log("catch"); }); } - } + }, }, }; diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/RoadAndEvents/utils/httpList.js b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/RoadAndEvents/utils/httpList.js index 0001db2e..3f288ed5 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/RoadAndEvents/utils/httpList.js +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/RoadAndEvents/utils/httpList.js @@ -9,14 +9,20 @@ import request from "@/utils/request"; * @param {1 | 2 | 3} media 参数说明: 1: http+flv; 2: rtmp; 3: hls * @returns */ -export function getCameraStream(camId, media = 1) { - return request({ - url: "/video/externalVideoStreaming", - method: "get", - params: { - camId, - }, - }); +export async function getCameraStream(camId, media = 1) { + let data = await request({ + url: "/video/externalVideoStreaming", + method: "get", + params: { + camId, + }, + }); + + if (data.code == 200){ + data.data.liveUrl = "https://10.0.81.202/camera?target=" + data.data.liveUrl.substring(7); + } + + return data; } /** @@ -276,7 +282,7 @@ export function getEventTopicList(eventType) { request({ url: `/business/trafficIncidents/getEventList/${eventType}`, - method: "get", + method: "post", }) .then(({ code, data }) => { if (code != 200) { diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/governanceAnalysis/components/channelAnalytics/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/governanceAnalysis/components/channelAnalytics/index.vue index c328c6bb..d1f91e4e 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/governanceAnalysis/components/channelAnalytics/index.vue +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/governanceAnalysis/components/channelAnalytics/index.vue @@ -1,56 +1,52 @@ - + - - - \ No newline at end of file diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/governanceAnalysis/components/eventTypeAnalysis/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/governanceAnalysis/components/eventTypeAnalysis/index.vue index 1e9dc408..7018f8f7 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/governanceAnalysis/components/eventTypeAnalysis/index.vue +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/governanceAnalysis/components/eventTypeAnalysis/index.vue @@ -1,53 +1,49 @@ - + - - - \ No newline at end of file diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/auditAnalytics/assets/charts.js b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/auditAnalytics/assets/charts.js index 1013bb11..146c6fa8 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/auditAnalytics/assets/charts.js +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/auditAnalytics/assets/charts.js @@ -117,7 +117,7 @@ var options = { } var percert = total == 0 ? 0 : ((tarValue / total) * 100).toFixed(2); const arr = name + " " + tarValue; - return `{text|${name}} {number|${percert}%}`; + return `{text|${name}} {number|${tarValue} 起 } {number|${percert}%}`; }, pageIconColor: "#fff", pageIconSize: 10, diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/channelAnalytics/assets/charts.js b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/channelAnalytics/assets/charts.js index d73c12da..5f48cc43 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/channelAnalytics/assets/charts.js +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/channelAnalytics/assets/charts.js @@ -118,7 +118,7 @@ var options = { } var percert = total == 0 ? 0 : ((tarValue / total) * 100).toFixed(2); const arr = name + " " + tarValue; - return `{text|${name}} {number|${percert}%}`; + return `{text|${name}} {number|${tarValue} 起 } {number|${percert}%}`; }, pageIconColor: "#fff", pageIconSize: 10, diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/eventTypeAnalysis/assets/charts.js b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/eventTypeAnalysis/assets/charts.js index 7359dcad..4d9f3b62 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/eventTypeAnalysis/assets/charts.js +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/service/publicService/components/eventTypeAnalysis/assets/charts.js @@ -143,7 +143,7 @@ var options = { } var percert = total == 0 ? 0 : ((tarValue / total) * 100).toFixed(2); const arr = name + " " + tarValue; - return `{text|${name}} {number|${percert}%}`; + return `{text|${name}} {number|${tarValue} 起 } {number|${percert}%}`; }, pageIconColor: "#fff", pageIconSize: 10, diff --git a/ruoyi-ui/src/views/websocket.vue b/ruoyi-ui/src/views/websocket.vue index ac7d4437..964ea251 100644 --- a/ruoyi-ui/src/views/websocket.vue +++ b/ruoyi-ui/src/views/websocket.vue @@ -30,7 +30,8 @@ export default { // console.log(location.hostname ) // 建立 websocket 连接 this.socket.initialize({ - url: 'ws://' + location.hostname + ':' + port + path, + // url: 'ws://' + location.hostname + ':' + port + path, + url: 'wss://' + location.hostname + ':' + window.location.port || 80 + '/ws', // url: "ws://10.7.179.15" + ":" + port + path, // url: "ws://10.168.64.171" + ":" + port + path, // url: 'ws://10.168.78.127'+ ':' + port + path, diff --git a/ruoyi-ui/vue.config.js b/ruoyi-ui/vue.config.js index 25f5969a..930c4c40 100644 --- a/ruoyi-ui/vue.config.js +++ b/ruoyi-ui/vue.config.js @@ -31,6 +31,7 @@ module.exports = { devServer: { host: "0.0.0.0", port: port, + https: true, open: true, proxy: { // detail: https://cli.vuejs.org/config/#devserver-proxy