diff --git a/.env.dev b/.env.dev
index 1e5dfdbb..567d9745 100644
--- a/.env.dev
+++ b/.env.dev
@@ -14,7 +14,7 @@ VUE_APP_TITLE = 上上电缆
# 芋道管理系统/开发环境
# VUE_APP_BASE_API = 'http://192.168.0.31:48080'
-VUE_APP_BASE_API = 'http://172.16.32.236:48080'
+VUE_APP_BASE_API = 'http://172.16.15.221:48080'
# VUE_APP_BASE_API = 'http://line.kszny.picaiba.com'
# 路由懒加载
diff --git a/dist.zip b/dist.zip
new file mode 100644
index 00000000..82c6d21e
Binary files /dev/null and b/dist.zip differ
diff --git a/src/api/ssdl/taskList.js b/src/api/ssdl/taskList.js
index b1092fca..4c44962e 100644
--- a/src/api/ssdl/taskList.js
+++ b/src/api/ssdl/taskList.js
@@ -58,3 +58,11 @@ export function createPCTask(data) {
data: data
})
}
+
+export function cancelUpdateTask(query) {
+ return request({
+ url: '/wms/job-main-task/update/task',
+ method: 'post',
+ params: query ,
+ });
+}
diff --git a/src/api/visualization/visualization.js b/src/api/visualization/visualization.js
index 5e60a9f4..f63b1b5f 100644
--- a/src/api/visualization/visualization.js
+++ b/src/api/visualization/visualization.js
@@ -7,3 +7,35 @@ export function getLineEdgeLibraryList(data) {
params: data,
});
}
+
+export function getAgvAlarmInfo(data) {
+ return request({
+ url: '/wms/large-screen/real-time/display',
+ method: 'post',
+ data: data,
+ });
+}
+
+export function getTaskTypeToday(data) {
+ return request({
+ url: '/wms/job-main-task/task/type/proportion/today',
+ method: 'get',
+ data,
+ });
+}
+
+export function getTaskStatusToday(data) {
+ return request({
+ url: '/wms/job-main-task/task/state/distribution/today',
+ method: 'get',
+ data,
+ });
+}
+
+export function getAgvExample(data) {
+ return request({
+ url: 'wms/large-screen/example',
+ method: 'post',
+ data,
+ });
+}
diff --git a/src/assets/icons/svg/greenLight.svg b/src/assets/icons/svg/greenLight.svg
new file mode 100644
index 00000000..6d80bdc6
--- /dev/null
+++ b/src/assets/icons/svg/greenLight.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/icons/svg/redLight.svg b/src/assets/icons/svg/redLight.svg
new file mode 100644
index 00000000..e6f0fe0c
--- /dev/null
+++ b/src/assets/icons/svg/redLight.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/img/threeDimensionalChartBg.png b/src/assets/img/threeDimensionalChartBg.png
index 1db16755..bd0f3ef8 100644
Binary files a/src/assets/img/threeDimensionalChartBg.png and b/src/assets/img/threeDimensionalChartBg.png differ
diff --git a/src/views/areavisual/overview/components/ringChart.vue b/src/views/areavisual/overview/components/ringChart.vue
index fefeddae..10eb8718 100644
--- a/src/views/areavisual/overview/components/ringChart.vue
+++ b/src/views/areavisual/overview/components/ringChart.vue
@@ -1,125 +1,138 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/src/views/areavisual/overview/index.vue b/src/views/areavisual/overview/index.vue
index cc35c458..a85814af 100644
--- a/src/views/areavisual/overview/index.vue
+++ b/src/views/areavisual/overview/index.vue
@@ -1,687 +1,715 @@
-
- {{ item.totalInventory }}
- 库位总数
- {{ item.occupiedQuantity }}
- 占
- {{ item.idleQuantity }}
- 空
- {{ item.transitQuantity }}
- 在途
- {{ allAreaInfo.totalInventory }}
-
- 库位总数
-
- {{ allAreaInfo.occupiedQuantity }}
-
- 当前满位
-
- {{ allAreaInfo.idleQuantity }}
-
- 当前空位
-
- {{ allAreaInfo.transitQuantity }}
-
- 在途
-
+ {{ item.totalInventory }}
+ 库位总数
+ {{ item.occupiedQuantity }}
+ 占
+ {{ item.idleQuantity }}
+ 空
+ {{ item.transitQuantity }}
+ 在途
+ {{ allAreaInfo.totalInventory }}
+
+ 库位总数
+
+ {{ allAreaInfo.occupiedQuantity }}
+
+ 当前满位
+
+ {{ allAreaInfo.idleQuantity }}
+
+ 当前空位
+
+ {{ allAreaInfo.transitQuantity }}
+
+ 在途
+
-
- 状态:
- {{
- sitem.usableState == 3
- ? '锁定'
- : sitem.usableState == 2
- ? '不可用'
- : sitem.lineEdgeLibraryState == 1
- ? '满位'
- : '空闲'
- }}
-
-
- 物料:
- {{ sitem.materialCode || '' }}
-
- 设备:
- {{ sitem.equipmentName || '' }}
-
- 套号:
- {{ sitem.suiteCode || '' }}
-
-
-
+
+ 状态:
+ {{
+ sitem.lineEdgeLibraryState == 0 && sitem.usableState == 1
+ ? '空闲'
+ : sitem.usableState == 2
+ ? '不可用'
+ : sitem.lineEdgeLibraryState == 1 && sitem.usableState == 1
+ ? '满位' : sitem.lineEdgeLibraryState == 0 && sitem.usableState == 3
+ ? '预入'
+ : sitem.lineEdgeLibraryState == 1 && sitem.usableState == 3 ? '预出' : ''
+ }}
+
+
+ 物料:
+ {{ sitem.materialCode || '' }}
+
+ 设备:
+ {{ sitem.equipmentName || '' }}
+
+ 套号:
+ {{ sitem.suiteCode || '' }}
+
+
+
-
+