diff --git a/ruoyi-ui/src/api/equipment/type/api.js b/ruoyi-ui/src/api/equipment/type/api.js
index 72980505..f4a47dd1 100644
--- a/ruoyi-ui/src/api/equipment/type/api.js
+++ b/ruoyi-ui/src/api/equipment/type/api.js
@@ -145,7 +145,7 @@ export function listDevicesType() {
// 设备在线率统计
export function deviceStatusList(id) {
return request({
- url: "/system/status/deviceStatusList?deviceld=" + id,
+ url: "/system/status/deviceStatusList/" + id,
method: "get",
});
}
diff --git a/ruoyi-ui/src/views/JiHeExpressway/components/ProgressBar.vue b/ruoyi-ui/src/views/JiHeExpressway/components/ProgressBar.vue
new file mode 100644
index 00000000..d3b9e270
--- /dev/null
+++ b/ruoyi-ui/src/views/JiHeExpressway/components/ProgressBar.vue
@@ -0,0 +1,225 @@
+
+
+
+
+
+
+
+
+
+
+
+
{{ item.title }}
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/components/BroadcastReleases.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/components/BroadcastReleases.vue
index 1aa3a6e0..e02c9b03 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/components/BroadcastReleases.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/components/BroadcastReleases.vue
@@ -8,7 +8,7 @@
id="otherConfig" label="deviceName">
- {{ data.deviceName }}(当前设备)
+ {{ data.deviceName }}(当前)
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/index.vue
index 2cc5b2f8..1c85889a 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/index.vue
@@ -12,7 +12,7 @@
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/components/CameraControlDialog.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/components/CameraControlDialog.vue
index 9149ed8d..82d803f2 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/components/CameraControlDialog.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/components/CameraControlDialog.vue
@@ -27,10 +27,7 @@
{{ item.label }}
-
雨刷
-
-
-
+
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/index.vue
index c1666b0a..d270a36b 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/index.vue
@@ -22,12 +22,34 @@
/>
+
+
+ 雨刷:
+
+
+
+
摄相机参数
@@ -53,11 +75,14 @@ import Video from "@screen/components/Video";
import Descriptions from "@screen/components/Descriptions.vue";
import CameraControlDialog from "./components/CameraControlDialog.vue";
import LineChart from "../../LineChart/index.vue";
+import { PanoramicCameraTypes } from "@screen/utils/enum.js";
import {
getRoadInfoByStakeMark,
getOrganizationName,
} from "@screen/pages/Home/components/RoadAndEvents/utils/httpList.js";
+import { controlCamera } from "@screen/pages/Home/components/RoadAndEvents/utils/httpList.js";
+import { throttle } from "lodash";
import { dialogDelayVisible } from "./../mixin";
@@ -75,6 +100,7 @@ export default {
},
data() {
return {
+ PanoramicCameraTypes,
activeName: "first",
controlDialogVisible: false,
data: {},
@@ -108,12 +134,12 @@ export default {
label: "设备状态",
key: "deviceState",
enum: "DeviceTypeEnum",
- gridColumn: 2,
+ // gridColumn: 2,
},
{
label: "状态更新时间",
key: "updateTime",
- gridColumn: 2,
+ // gridColumn: 2,
// enum: "CameraDirectionEnum"
},
// {
@@ -137,6 +163,9 @@ export default {
console.log(this.data, "this.data");
},
methods: {
+ controlClick: throttle(function (type) {
+ controlCamera(this.deviceId, type);
+ }, 150),
visibleClose(bool) {
if (bool) return;
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/DrivingGuidance/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/DrivingGuidance/index.vue
index 8ba65e9e..2b75466b 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/DrivingGuidance/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/DrivingGuidance/index.vue
@@ -11,7 +11,7 @@
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/FatigueWakesUp/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/FatigueWakesUp/index.vue
index 03508f22..22e2b3b1 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/FatigueWakesUp/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/FatigueWakesUp/index.vue
@@ -4,11 +4,20 @@
-
+
设备参数
-
+
@@ -17,7 +26,10 @@
-
+
@@ -25,7 +37,10 @@
import Dialog from "@screen/components/Dialog/index.vue";
import Descriptions from "@screen/components/Descriptions.vue";
import Button from "@screen/components/Buttons/Button.vue";
-import { getRoadInfoByStakeMark, getProduct } from "@screen/pages/Home/components/RoadAndEvents/utils/httpList.js"
+import {
+ getRoadInfoByStakeMark,
+ getProduct,
+} from "@screen/pages/Home/components/RoadAndEvents/utils/httpList.js";
import Video from "@screen/components/Video";
import DeviceControlDialog from "./components/DeviceControlDialog.vue";
@@ -99,7 +114,7 @@ export default {
if (roadInfo) this.$set(this.data, "roadName", roadInfo.roadName);
},
methods: {
- handleClickTabs() { },
+ handleClickTabs() {},
},
};
@@ -140,7 +155,7 @@ export default {
align-items: center;
justify-content: end;
- >div {
+ > div {
font-size: 16px;
padding: 6px 12px;
}
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/GuardrailCollision/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/GuardrailCollision/index.vue
index 05a05c68..61581fdc 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/GuardrailCollision/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/GuardrailCollision/index.vue
@@ -9,7 +9,7 @@
-
+
@@ -179,7 +179,7 @@ div.switcher {
align-items: center;
justify-content: end;
- >div {
+ > div {
font-size: 16px;
padding: 6px 12px;
}
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Intermodulation/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Intermodulation/index.vue
index 30942903..7c78195f 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Intermodulation/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Intermodulation/index.vue
@@ -9,17 +9,22 @@
-
+
当前车流量: {{ carNum }}辆
-
+
-
+
@@ -43,7 +48,7 @@ import { dialogDelayVisible } from "./../mixin";
import request from "@/utils/request";
import { Message } from "element-ui";
import RadioGroup from "@screen/components/FormConfig/components/RadioGroup/index.vue";
-import moment from 'moment/moment';
+import moment from "moment/moment";
// 广播发布
export default {
@@ -75,8 +80,8 @@ export default {
},
carNum: 0,
objectValue: {
- '1': 0,
- '3': 0
+ 1: 0,
+ 3: 0,
},
xData: [],
yData: [],
@@ -153,19 +158,19 @@ export default {
},
methods: {
changeRadio(value) {
- this.carNum = this.objectValue[value + ''];
+ this.carNum = this.objectValue[value + ""];
this.isShowCar = false;
if (value == 3) {
this.yData = this.jnYData;
} else {
this.yData = this.hzYData;
}
- console.log('xdata', this.xData);
- console.log('ydata', this.hzYData);
- console.log('rdata', this.jnYData);
+ // console.log('xdata', this.xData);
+ // console.log('ydata', this.hzYData);
+ // console.log('rdata', this.jnYData);
setTimeout(() => {
this.isShowCar = true;
- }, 1000)
+ }, 1000);
},
getPropertiesHistory(deviceId) {
this.xData = [];
@@ -179,18 +184,18 @@ export default {
method: "get",
}).then((result) => {
if (result.code != 200) return Message.error(result?.msg);
- this.objectValue = result.data[0];
- this.carNum = result.data[0]['1'];
- result.data.forEach(it => {
+ this.objectValue = result.data[result.data.length - 1];
+ this.carNum = result.data[result.data.length - 1]["1"];
+ result.data.forEach((it) => {
this.xData.push(moment(it.timestamp).format("HH:mm"));
- this.hzYData.push(it['1']);
- this.jnYData.push(it['3']);
+ this.hzYData.push(it["1"]);
+ this.jnYData.push(it["3"]);
this.yData = this.hzYData;
- })
+ });
this.isShowCar = true;
});
- }
- }
+ },
+ },
};
@@ -243,7 +248,7 @@ div.switcher {
align-items: center;
justify-content: end;
- >div {
+ > div {
font-size: 16px;
padding: 6px 12px;
}
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/SmartDevice/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/SmartDevice/index.vue
index a539da76..39049f20 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/SmartDevice/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/SmartDevice/index.vue
@@ -14,15 +14,22 @@
-
-
+
+
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/InfoBoard/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/InfoBoard/index.vue
index c3377bd1..cf5c629e 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/InfoBoard/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/InfoBoard/index.vue
@@ -94,7 +94,7 @@
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/eventPlanDialog/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/eventPlanDialog/index.vue
index d65be481..9812d198 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/eventPlanDialog/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/eventPlanDialog/index.vue
@@ -13,7 +13,7 @@
联动设备:
-
+
@@ -23,14 +23,16 @@
恢复操作:
-
+
-
+
+
@@ -40,12 +42,11 @@
+
+
\ No newline at end of file
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/index.vue
index 9ef9e2b3..f3355d78 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/index.vue
@@ -18,7 +18,8 @@
-
+
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/qbbDialog/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/qbbDialog/index.vue
new file mode 100644
index 00000000..78e2c569
--- /dev/null
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/qbbDialog/index.vue
@@ -0,0 +1,308 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/index.vue
index 78cf1f81..77a6cb8a 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/index.vue
@@ -161,7 +161,7 @@ export default {
getData() {
if (this.activeName === '-1') {
request({
- url: `/perceivedEvents/warning/perceivedEventsList`,
+ url: `/perceivedEvents/warning/perceivedEventsList`,//感知事件
method: "post",
params: { pageNum: this.searchData.pageNum, pageSize: this.searchData.pageSize },
data: { ...this.searchData, warningState: 1 }
@@ -255,9 +255,9 @@ export default {
},
firstBtnClick(id) {
console.log("id", id);
- if (this.activeName == '-1') {
+ if (this.activeName == '-1') { //除了 感知事件外的 事件专题 均须处理
request({
- url: `/perceivedEvents/warning/getWarningById`,
+ url: `/perceivedEvents/warning/getWarningById`,//感知事件
method: "post",
data: { id }
}).then((result) => {
@@ -297,6 +297,7 @@ export default {
if (result.code != 200) return Message.error(result?.msg);
let data = result.data;
data.stringDirection = gzDirectionMapping[data.direction] || data.direction;
+ data.startTime = data?.occurrenceTime || '';
data.videoList = [];
if (data.otherConfig) {
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/addAndEditDialog/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/addAndEditDialog/index.vue
index 97459bb7..f805d786 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/addAndEditDialog/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/addAndEditDialog/index.vue
@@ -245,15 +245,17 @@ export default {
})
},
- async loadData() {
- if (this.deviceData.length <= 0) {
- let result = await request({
- url: `business/device/query?deviceType=2`,
- method: "get",
- })
- if (result.code != 200) return Message.error(result?.msg);
+ async loadData(deviceType = 1) {
+ this.deviceData = [];
+ let result = await request({
+ url: `business/device/query?deviceType=${deviceType}`,
+ method: "get",
+ })
+ if (result.code != 200) return Message.error(result?.msg);
+ if (deviceType == 1) {
+ this.deviceData = result.data.filter(it => it.childType !== '1-1')
+ } else {
this.deviceData = result.data;
- // return result.data;
}
return this.deviceData;
},
@@ -312,32 +314,32 @@ export default {
// this.submitting = false;
let secondFormTable = this.$refs['secondFormTable'].tableData || [];
let thirdFormTable = this.$refs['thirdFormTable'].tableData || [];
- let flg = false;
- for (let item of secondFormTable) {
- if (this.areAllValuesEmpty(item)) { flg = true; break };
- }
- if (flg) return Message.warning('执行操作子项不能为空!');
- for (let item of thirdFormTable) {
- if (this.areAllValuesEmpty(item)) { flg = true; break };
- }
- if (flg) return Message.warning('恢复操作子项不能为空!');
- console.log('12', secondFormTable);
- console.log('34', thirdFormTable);
+ // let flg = false;
+ // for (let item of secondFormTable) {
+ // if (this.areAllValuesEmpty(item)) { flg = true; break };
+ // }
+ // if (flg) return Message.warning('执行操作子项不能为空!');
+ // for (let item of thirdFormTable) {
+ // if (this.areAllValuesEmpty(item)) { flg = true; break };
+ // }
+ // if (flg) return Message.warning('恢复操作子项不能为空!');
+ // console.log('12', secondFormTable);
+ // console.log('34', thirdFormTable);
let dcArr = [];
- // let id = '';
- // if (this.dialogType == 2) id = this.planId;
- // secondFormTable.forEach(it => {
- // dcArr.push(this.formatData(it, 1, id));
- // })
- // thirdFormTable.forEach(it => {
- // dcArr.push(this.formatData(it, 2, id));
- // })
+ let id = '';
+ if (this.dialogType == 2) id = this.planId;
+ secondFormTable.forEach(it => {
+ dcArr.push(this.formatData(it, 1, id));
+ })
+ thirdFormTable.forEach(it => {
+ dcArr.push(this.formatData(it, 2, id));
+ })
console.log({
...this.formData,
dcExecuteAction: dcArr
})
- return;
+ // return;
if (this.dialogType == 1) {//新增
request({
url: `/business/plans`,
@@ -385,7 +387,7 @@ export default {
},
areAllValuesEmpty(obj) {
- console.log('ass',obj)
+ console.log('ass', obj)
return Object.keys(obj).every(function (key) {
const value = obj[key];
return (
@@ -413,7 +415,7 @@ export default {
.EventAddPlanDialog {
gap: 9px;
- width: 1080px;
+ width: 1280px;
height: 310px;
display: flex;
flex-direction: column;
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/formTable/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/formTable/index.vue
index 2137a2c7..5fd79f6e 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/formTable/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/formTable/index.vue
@@ -11,7 +11,7 @@
-
+
@@ -32,7 +32,7 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
@@ -220,7 +220,7 @@ export default {
}
},
async created() {
- let loadData = await this.loadData();
+ let loadData = await this.loadData(1);
// console.log('aa',loadData)
this.sbOptions = loadData;
},
@@ -238,17 +238,10 @@ export default {
// })
},
- changeDeviceType(value) {
+ async changeDeviceType(value) {
this.deviceType = value;
- // if(value == 1){
- // this.searchRule = 1
- // }else if(value == 2){
- // this.searchRule = 1
- // }else if(value == 3){
- // this.searchRule = 1
- // }else if(value == 4){
- // this.searchRule = 1
- // }
+ console.log('value', value)
+ this.sbOptions = await this.loadData(value);
},
onAdd(id) {
this.tableData.push({
@@ -303,6 +296,10 @@ export default {
}
}
+ .ms {
+ width: 160px;
+ }
+
.plhx {
display: flex;
}
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/maintenanceOperations/statisticalAnalysis/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/maintenanceOperations/statisticalAnalysis/index.vue
index e02bc016..be88d67d 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/maintenanceOperations/statisticalAnalysis/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/maintenanceOperations/statisticalAnalysis/index.vue
@@ -84,27 +84,7 @@
-
-
- 高清网络枪型固定摄像机
- 高清网络球形摄像机
- 桥下高清网络球形摄像机
- 360°全景摄像机
- 180°全景摄像机
- 门架式可变信息标志
- 雨棚可变信息标志
- 站前悬臂式可变信息标志
- 气象检测器
- 路段语音广播系统
- 护栏碰撞预警系统
- 毫米波雷达
- 合流区预警系统
- 激光疲劳唤醒
- 一类交通量调查站
- 智能行车诱导系统
- 智能设备箱
-
-
+
@@ -135,7 +115,7 @@
-
-
\ No newline at end of file
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/perception/trafficSituation/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/perception/trafficSituation/index.vue
index 4f3a5163..63c90b81 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/perception/trafficSituation/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/perception/trafficSituation/index.vue
@@ -1,148 +1,139 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+}
+
diff --git a/ruoyi-ui/src/views/JiHeExpressway/utils/enum.js b/ruoyi-ui/src/views/JiHeExpressway/utils/enum.js
index 6823f1d1..6de34e21 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/utils/enum.js
+++ b/ruoyi-ui/src/views/JiHeExpressway/utils/enum.js
@@ -847,15 +847,15 @@ export const gzmsMap = {
export const planDeviceMap = {
1: "摄像机",
2: "可变信息标志",
- 3: "气象监测器",
- 4: "出口诱导灯",
+ // 3: "气象监测器",
+ // 4: "出口诱导灯",
5: "路段语音广播",
- 6: "护栏碰撞",
- 7: "毫米波雷达",
+ // 6: "护栏碰撞",
+ // 7: "毫米波雷达",
8: "合流区预警",
- 9: "智慧锥桶",
+ // 9: "智慧锥桶",
10: "激光疲劳唤醒",
- 11: "类交通量调查站",
+ // 11: "一类交通量调查站",
12: "行车诱导",
13: "智能设备箱",
14: "光线在线监测",
@@ -870,42 +870,42 @@ export const planDeviceOptions = [
value: 2,
label: "可变信息标志",
},
- {
- value: 3,
- label: "气象监测器",
- },
- {
- value: 4,
- label: "出口诱导灯",
- },
+ // {
+ // value: 3,
+ // label: "气象监测器",
+ // },
+ // {
+ // value: 4,
+ // label: "出口诱导灯",
+ // },
{
value: 5,
label: "路段语音广播",
},
- {
- value: 6,
- label: "护栏碰撞",
- },
- {
- value: 7,
- label: "毫米波雷达",
- },
+ // {
+ // value: 6,
+ // label: "护栏碰撞",
+ // },
+ // {
+ // value: 7,
+ // label: "毫米波雷达",
+ // },
{
value: 8,
label: "合流区预警",
},
- {
- value: 9,
- label: "智慧锥桶",
- },
+ // {
+ // value: 9,
+ // label: "智慧锥桶",
+ // },
{
value: 10,
label: "激光疲劳唤醒",
},
- {
- value: 11,
- label: "类交通量调查站",
- },
+ // {
+ // value: 11,
+ // label: "一类交通量调查站",
+ // },
{
value: 12,
label: "行车诱导",
@@ -984,6 +984,7 @@ const BoardChildTypes = {
"2-3": "雨棚可变信息标志",
"2-4": "站前悬臂式可变信息标志",
};
+export const PanoramicCameraTypes = Object.keys(CameraChildTypes).slice(3, 5);
export const ChildTypes = {
1: CameraChildTypes,
diff --git a/ruoyi-ui/vue.config.js b/ruoyi-ui/vue.config.js
index e3ab5f9b..fc456c2c 100644
--- a/ruoyi-ui/vue.config.js
+++ b/ruoyi-ui/vue.config.js
@@ -54,7 +54,7 @@ module.exports = {
// target: `http://10.168.78.135:8087`, //王钦
// target: `http://10.168.66.196:8087`, //正晨后台 连现场物联 刘文阁2
// target: `http://10.168.68.42:8087`, //王思祥
- // target: `http://10.168.65.194:8087`, //赵祥龙
+ target: `http://10.168.65.194:8087`, //赵祥龙
// target: `http://10.168.65.156:8097`, //孟
target: `http://10.168.56.165:8087`, //王家宝