diff --git a/.env.development b/.env.development
index 4f79e0e..67b2660 100644
--- a/.env.development
+++ b/.env.development
@@ -4,7 +4,7 @@ NODE_ENV = 'development'
# 本地环境接口地址(/api/index.ts文件中使用)
# 后端本地
# VITE_API_URL = 'http://192.168.34.155:19111'
-VITE_API_URL = 'http://192.168.34.221:9111' #雄哥本地
+# VITE_API_URL = 'http://192.168.34.221:9111' #雄哥本地
# VITE_API_URL = 'http://182.90.224.237:51234' #雄哥远程
# VITE_API_URL = 'http://192.168.34.221:28889'
# VITE_API_URL = 'http://121.196.214.246/api'
@@ -25,7 +25,7 @@ VITE_API_URL = 'http://192.168.34.221:9111' #雄哥本地
# 七参数标准版(演示平台)
# VITE_API_URL = 'http://jxj.zhgdyun.com:9809'
# agjt
-# VITE_API_URL = 'http://42.180.188.17:9809' #生产环境
+VITE_API_URL = 'http://42.180.188.17:9809' #生产环境
# VITE_API_URL = 'http://42.180.188.17:11211' #测试环境
# VITE_API_URL = 'http://jxj.zhgdyun.com:19812'
# 苏立信/重庆市南岸区
diff --git a/.env.production b/.env.production
index 60cce6f..1abc3bf 100644
--- a/.env.production
+++ b/.env.production
@@ -21,7 +21,7 @@ NODE_ENV = "production"
# 七参数标准版(测试平台)
# VITE_API_URL = 'http://182.90.224.237:15551'
# agjt
-# VITE_API_URL = 'http://42.180.188.17:9809' #生产环境
+VITE_API_URL = 'http://42.180.188.17:9809' #生产环境
# VITE_API_URL = 'http://42.180.188.17:11211' #测试环境
# 苏立信/重庆市南岸区
# VITE_API_URL = 'http://101.43.164.214:11111'
@@ -32,7 +32,7 @@ NODE_ENV = "production"
# 合肥启程(乌丹)
# VITE_API_URL = 'http://192.168.100.4:9809'
# 九柱
-VITE_API_URL = 'http://jxjzw.zhgdyun.com:11111'
+# VITE_API_URL = 'http://jxjzw.zhgdyun.com:11111'
# 打包
VITE_ULD_API_URL = 'http://jxj.zhgdyun.com:8012/onlinePreview?url='
diff --git a/src/views/commandScreen/dialogCompnnents/ai-alarm.vue b/src/views/commandScreen/dialogCompnnents/ai-alarm.vue
index 9a1c773..6d269ea 100644
--- a/src/views/commandScreen/dialogCompnnents/ai-alarm.vue
+++ b/src/views/commandScreen/dialogCompnnents/ai-alarm.vue
@@ -363,46 +363,46 @@ onMounted(async () => {
// 加载海康插件
// setTimeout(() => {
// }, 2500);
- await initPlugin();
+ // await initPlugin();
// 获取页面的实例对象 ee
- const pageInstance = getCurrentInstance();
- // 获取dom节点对象
- const tagDomObj = pageInstance?.refs.playWndBox;
- playWndHeight.value = tagDomObj?.clientHeight;
- playWndWidth.value = tagDomObj?.clientWidth;
+ // const pageInstance = getCurrentInstance();
+ // // 获取dom节点对象
+ // const tagDomObj = pageInstance?.refs.playWndBox;
+ // playWndHeight.value = tagDomObj?.clientHeight;
+ // playWndWidth.value = tagDomObj?.clientWidth;
- // 监听scroll事件,使插件窗口尺寸跟随DIV窗口变化
- window.addEventListener("scroll", () => {
- if (oWebControl.value == undefined) {
- setTimeout(function () {
- oWebControl.JS_Resize(playWndWidth.value * store.globalScale, playWndHeight.value * store.globalScale);
- }, 200);
- }
- });
+ // // 监听scroll事件,使插件窗口尺寸跟随DIV窗口变化
+ // window.addEventListener("scroll", () => {
+ // if (oWebControl.value == undefined) {
+ // setTimeout(function () {
+ // oWebControl.JS_Resize(playWndWidth.value * store.globalScale, playWndHeight.value * store.globalScale);
+ // }, 200);
+ // }
+ // });
// 监听resize事件,使插件窗口尺寸跟随DIV窗口变化
- window.addEventListener("resize", e => {
- if (oWebControl.value == undefined) {
- setTimeout(function () {
- oWebControl.JS_Resize(playWndWidth.value * store.globalScale, playWndHeight.value * store.globalScale);
- }, 200);
- }
- // if (oWebControl.value == undefined) {
- // // console.log("wwwww", e);
- // oWebControl.JS_Resize(tagDomObj?.clientWidth, tagDomObj?.clientHeight);
- // // oWebControl.JS_Resize(playWndHeight.value, playWndWidth.value);
- // // setWndCover();
- // }
- });
+ // window.addEventListener("resize", e => {
+ // if (oWebControl.value == undefined) {
+ // setTimeout(function () {
+ // oWebControl.JS_Resize(playWndWidth.value * store.globalScale, playWndHeight.value * store.globalScale);
+ // }, 200);
+ // }
+ // // if (oWebControl.value == undefined) {
+ // // // console.log("wwwww", e);
+ // // oWebControl.JS_Resize(tagDomObj?.clientWidth, tagDomObj?.clientHeight);
+ // // // oWebControl.JS_Resize(playWndHeight.value, playWndWidth.value);
+ // // // setWndCover();
+ // // }
+ // });
// previewVideo(cameraIndexCode.value)
});
onBeforeUnmount(() => {
// 先让窗口隐藏,规避可能的插件窗口滞后于浏览器消失问题
- oWebControl.JS_HideWnd();
- // 销毁当前播放的视频
- oWebControl.JS_RequestInterface({ funcName: "destroyWnd" });
- // 断开与插件服务连接
- oWebControl.JS_Disconnect();
+ // oWebControl.JS_HideWnd();
+ // // 销毁当前播放的视频
+ // oWebControl.JS_RequestInterface({ funcName: "destroyWnd" });
+ // // 断开与插件服务连接
+ // oWebControl.JS_Disconnect();
});
const initPlugin = () => {
diff --git a/src/views/commandScreen/dialogCompnnents/member-all-show.vue b/src/views/commandScreen/dialogCompnnents/member-all-show.vue
index 9896326..f60c35c 100644
--- a/src/views/commandScreen/dialogCompnnents/member-all-show.vue
+++ b/src/views/commandScreen/dialogCompnnents/member-all-show.vue
@@ -165,13 +165,18 @@ const getCompanyAttendData = async () => {
const res: any = await getComapnyWorkTotalListApi(data);
if (res.code == 200) {
- var Data = res.result;
- var xData: any = [],
+ let Data = res.result;
+ let xData: any = [],
yData1: any = [],
yData2: any = [],
yData3: any = [];
Data.forEach((element: any) => {
- xData.push(element.enterpriseName);
+ // xData.push(element.enterpriseName);
+ if (element.enterpriseName.length > 4) {
+ xData.push(element.enterpriseName.substring(0, 4) + "...");
+ } else {
+ xData.push(element.enterpriseName);
+ }
yData1.push(element.attendancePersonNum);
yData2.push(element.totalPersonNum);
yData3.push(element.presencePersonNum);
@@ -224,24 +229,26 @@ const createdBarCharts = (xData: any, yData1: any, yData2: any, yData3: any, el:
axisLabel: {
color: "#9fa2ad",
fontSize: 12,
- interval: 0, // 强制显示所有标签
+ interval: 0 // 强制显示所有标签
}
}
],
dataZoom: [
- {
- type: "slider", // 使用滑动条形式的数据区域缩放组件
- start: 0, // 数据窗口范围的起始百分比
- end: 50, // 数据窗口范围的结束百分比
- height: 10, // 滑动条组件高度
- bottom: 0, // 距离图表区域下边的距离
- showDetail: false, // 拖拽时是否显示详情
- showDataShadow: false, // 是否在组件中显示数据阴影
- fillerColor: "#2758C0", // 平移条的填充颜色
- borderColor: "transparent", // 边框颜色
- zoomLock: true, // 锁定视图
- },
- ],
+ {
+ type: "slider", // 使用滑动条形式的数据区域缩放组件
+ // start: 0, // 数据窗口范围的起始百分比
+ // end: 50, // 数据窗口范围的结束百分比
+ startValue: xData.length - 1,
+ endValue: xData.length - 9,
+ height: 10, // 滑动条组件高度
+ bottom: 0, // 距离图表区域下边的距离
+ showDetail: false, // 拖拽时是否显示详情
+ showDataShadow: false, // 是否在组件中显示数据阴影
+ fillerColor: "#2758C0", // 平移条的填充颜色
+ borderColor: "transparent", // 边框颜色
+ zoomLock: true // 锁定视图
+ }
+ ],
yAxis: {
type: "value",
axisTick: {
diff --git a/src/views/commandScreen/dialogCompnnents/member-more-list.vue b/src/views/commandScreen/dialogCompnnents/member-more-list.vue
index 88b1392..fc3c60d 100644
--- a/src/views/commandScreen/dialogCompnnents/member-more-list.vue
+++ b/src/views/commandScreen/dialogCompnnents/member-more-list.vue
@@ -88,11 +88,20 @@
暂无数据