From ced0beac6befefa504e1354cbc04681305a25f8f Mon Sep 17 00:00:00 2001
From: X_Rian <904416525@qq.com>
Date: Mon, 8 Jul 2024 19:02:55 +0800
Subject: [PATCH] =?UTF-8?q?flx=EF=BC=9A=E6=96=B0=E5=A2=9E=E4=BA=BA?=
=?UTF-8?q?=E5=91=98=E5=AE=9A=E4=BD=8D=E5=A4=A7=E5=B1=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.env.development | 4 +-
src/config/config.ts | 3 +-
src/routers/modules/staticRouter.ts | 10 +-
.../locationLive/commandCenter/index.vue | 250 +++++++++
src/views/locationLive/locationL.vue | 503 ++++++++++++++++++
5 files changed, 765 insertions(+), 5 deletions(-)
create mode 100644 src/views/locationLive/commandCenter/index.vue
create mode 100644 src/views/locationLive/locationL.vue
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/src/config/config.ts b/src/config/config.ts
index fe79fea..9c174db 100644
--- a/src/config/config.ts
+++ b/src/config/config.ts
@@ -29,9 +29,10 @@ export const BASE_IMAGE_URL = import.meta.env.VITE_BASE_IMAGE_URL;
// export const COMPANY: string = "as"; //鞍山项目
// export const COMPANY: string = "agjt"; //鞍钢集团
// export const COMPANY: string = "agjtLive"; //鞍钢集团现场大屏
-export const COMPANY: string = "agjtCommand"; //鞍钢集团指挥部大屏
+// export const COMPANY: string = "agjtCommand"; //鞍钢集团指挥部大屏
// export const COMPANY: string = "agjtProjectKanban"; //鞍钢集团项目看板大屏
// export const COMPANY: string = "agjtOverviewScreen"; //鞍钢集团项目总览
+export const COMPANY: string = "agjtLocationLive"; //鞍钢集团人员定位大屏
// export const COMPANY: string = "zkjc"; //中科佳成项目
// export const COMPANY: string = "cqna"; //重庆南岸项目
// export const COMPANY: string = "slx"; //苏立信项目
diff --git a/src/routers/modules/staticRouter.ts b/src/routers/modules/staticRouter.ts
index 6408db4..bb82f40 100644
--- a/src/routers/modules/staticRouter.ts
+++ b/src/routers/modules/staticRouter.ts
@@ -25,9 +25,10 @@ export const staticRouter: RouteRecordRaw[] = [
path: "/large",
name: "大屏",
// component: () => import("@/views/sevenLargeScreen/indexL.vue"), //七参数标准版
- component: () => import("@/views/commandScreen/indexCommand.vue"), //指挥部大屏
+ // component: () => import("@/views/commandScreen/indexCommand.vue"), //指挥部大屏
// component: () => import("@/views/agjtLiveScreen/indexLive.vue"), //鞍钢现场大屏
// component: () => import("@/views/overviewScreen/indexCommand.vue"), //总览大屏
+ component: () => import("@/views/locationLive/locationL.vue"), //人员定位大屏
// component: () => import("@/views/agjtProjectKanban/indexL.vue"), //鞍钢集团项目看板大屏
// component: () => import("@/views/sevenLargeScreen/indexL_syhy.vue"), // 只有一级路由(盘锦、嘉兴、鄱湖美湾医疗项目需切换至该首页)
children: [
@@ -307,11 +308,16 @@ export const staticRouter: RouteRecordRaw[] = [
path: "/overviewScreen",
name: "大屏总览",
component: () => import("@/views/overviewScreen/commandCenter/index.vue")
+ },
+ {
+ path: "/locationLive",
+ name: "人员定位大屏",
+ component: () => import("@/views/locationLive/commandCenter/index.vue")
}
],
meta: {
// title: "数字化项目监管平台"
- title: "智慧工厂安全生产监管平台" //鞍钢项目
+ title: "智慧工厂安全生产监管平台" //鞍钢项目
}
}
diff --git a/src/views/locationLive/commandCenter/index.vue b/src/views/locationLive/commandCenter/index.vue
new file mode 100644
index 0000000..4cdca3f
--- /dev/null
+++ b/src/views/locationLive/commandCenter/index.vue
@@ -0,0 +1,250 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/views/locationLive/locationL.vue b/src/views/locationLive/locationL.vue
new file mode 100644
index 0000000..7c50a17
--- /dev/null
+++ b/src/views/locationLive/locationL.vue
@@ -0,0 +1,503 @@
+
+
+
+
+
+
+
+
+
+
+
+