From 49bbd6fcda8fbf08b3bce2f73febd7bbb398ab74 Mon Sep 17 00:00:00 2001 From: zwq Date: Tue, 23 Jan 2024 15:11:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 1 + src/views/asrs/jobMainTask/index.vue | 10 +- src/views/asrs/jobMainTask/point.vue | 32 ++ src/views/asrs/jobMainTaskHistory/index.vue | 10 +- src/views/asrs/jobMainTaskHistory/point.vue | 32 ++ src/views/asrs/mixins/code-filter.js | 5 +- .../warehouseLocationMonitoring/index-low.vue | 274 +++++++++++++++++ .../warehouseLocationMonitoring/index.vue | 251 ++++++++-------- .../indexb-low.vue | 276 ++++++++++++++++++ .../warehouseLocationMonitoring/indexb.vue | 253 ++++++++-------- .../add-or-updata.vue | 11 +- .../out-or-move.vue | 95 +++--- 12 files changed, 955 insertions(+), 295 deletions(-) create mode 100644 src/views/asrs/jobMainTask/point.vue create mode 100644 src/views/asrs/jobMainTaskHistory/point.vue create mode 100644 src/views/asrs/warehouseLocationMonitoring/index-low.vue create mode 100644 src/views/asrs/warehouseLocationMonitoring/indexb-low.vue diff --git a/package.json b/package.json index 19b8841..5f5b0fc 100644 --- a/package.json +++ b/package.json @@ -55,6 +55,7 @@ "file-saver": "2.0.5", "fuse.js": "6.6.2", "highlight.js": "9.18.5", + "jquery": "^3.7.1", "js-beautify": "1.13.0", "jsencrypt": "3.3.1", "min-dash": "3.5.2", diff --git a/src/views/asrs/jobMainTask/index.vue b/src/views/asrs/jobMainTask/index.vue index fcc800a..75c6703 100644 --- a/src/views/asrs/jobMainTask/index.vue +++ b/src/views/asrs/jobMainTask/index.vue @@ -32,6 +32,7 @@ import basicPage from '../mixins/basic-page'; import { parseTime } from '../mixins/code-filter'; import codeFilter from '../mixins/code-filter'; import { getMainTaskPage, deleteMainTask } from '@/api/oth/mainTask'; +import point from './point'; const tableProps = [ { @@ -58,13 +59,18 @@ const tableProps = [ width:110 }, { - prop: 'trayCode', + prop: 'barCode', label: '托盘编码', }, { prop: 'agv', label: 'agv', }, + { + prop: 'agvPoint', + label: 'AGV起终点', + subcomponent: point, + }, { prop: 'mainTaskState', label: '状态', @@ -240,7 +246,7 @@ export default { this.listQuery.pageSize = 10; this.listQuery.mainTaskCode = val.code; this.listQuery.mainTaskType = val.taskType; - this.listQuery.trayCode = val.tcode; + this.listQuery.barCode = val.tcode; this.listQuery.mainTaskState = val.status; this.listQuery.agv = val.agv; this.listQuery.createTime = val.searchTime; diff --git a/src/views/asrs/jobMainTask/point.vue b/src/views/asrs/jobMainTask/point.vue new file mode 100644 index 0000000..d987c98 --- /dev/null +++ b/src/views/asrs/jobMainTask/point.vue @@ -0,0 +1,32 @@ + + + + diff --git a/src/views/asrs/jobMainTaskHistory/index.vue b/src/views/asrs/jobMainTaskHistory/index.vue index 88cdfab..9d940e2 100644 --- a/src/views/asrs/jobMainTaskHistory/index.vue +++ b/src/views/asrs/jobMainTaskHistory/index.vue @@ -25,6 +25,7 @@ import basicPage from '../mixins/basic-page'; import { parseTime } from '../mixins/code-filter'; import codeFilter from '../mixins/code-filter'; import { getMainTaskHistoryPage } from '@/api/oth/mainTaskHistory'; +import point from './point'; const tableProps = [ { @@ -51,13 +52,18 @@ const tableProps = [ width:110 }, { - prop: 'trayCode', + prop: 'barCode', label: '托盘编码', }, { prop: 'agv', label: 'agv', }, + { + prop: 'agvPoint', + label: 'AGV起终点', + subcomponent: point, + }, { prop: 'mainTaskState', label: '状态', @@ -246,7 +252,7 @@ export default { this.listQuery.pageSize = 10; this.listQuery.mainTaskCode = val.code; this.listQuery.mainTaskType = val.taskType; - this.listQuery.trayCode = val.tcode; + this.listQuery.barCode = val.tcode; // this.listQuery.mainTaskState = val.status; this.listQuery.mainTaskState = 5; this.listQuery.stacker = val.stacker; diff --git a/src/views/asrs/jobMainTaskHistory/point.vue b/src/views/asrs/jobMainTaskHistory/point.vue new file mode 100644 index 0000000..d987c98 --- /dev/null +++ b/src/views/asrs/jobMainTaskHistory/point.vue @@ -0,0 +1,32 @@ + + + + diff --git a/src/views/asrs/mixins/code-filter.js b/src/views/asrs/mixins/code-filter.js index d83a56c..a6bacb1 100644 --- a/src/views/asrs/mixins/code-filter.js +++ b/src/views/asrs/mixins/code-filter.js @@ -2,7 +2,7 @@ /* * @Date: 2020-12-29 16:49:28 * @LastEditors: zwq - * @LastEditTime: 2023-10-30 15:05:30 + * @LastEditTime: 2024-01-19 13:50:00 * @FilePath: \basic-admin\src\filters\basicData\index.js * @Description: */ @@ -29,6 +29,7 @@ const table = { 1: '入库', 2: '出库', 3: '移库', + 4: '出库带移库', }, mainTaskState:{ 0: '开始', @@ -37,6 +38,8 @@ const table = { 3: '已发送堆垛机', 4: '堆垛机运行中', 5: '完成', + 6: '已发送传输线', + 7: '传输线运行中', }, taskSource: { 1: 'mes下发', diff --git a/src/views/asrs/warehouseLocationMonitoring/index-low.vue b/src/views/asrs/warehouseLocationMonitoring/index-low.vue new file mode 100644 index 0000000..0a2fe46 --- /dev/null +++ b/src/views/asrs/warehouseLocationMonitoring/index-low.vue @@ -0,0 +1,274 @@ + + + + + + diff --git a/src/views/asrs/warehouseLocationMonitoring/index.vue b/src/views/asrs/warehouseLocationMonitoring/index.vue index 0a2fe46..a86c9fa 100644 --- a/src/views/asrs/warehouseLocationMonitoring/index.vue +++ b/src/views/asrs/warehouseLocationMonitoring/index.vue @@ -1,8 +1,8 @@