From 1313397d6a6d5ebcab2ca118ed0c35b8cabdce8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E8=99=B9=E7=9D=BF?= <297504645@qq.com> Date: Mon, 22 Apr 2024 17:37:44 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90nev-pc=E3=80=91=E5=BA=95=E7=9B=98?= =?UTF-8?q?=E7=9B=B8=E5=85=B3=E5=8A=9F=E8=83=BD=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fe/PC/src/router/index.js | 32 +++++++ fe/PC/src/utils/tableColumns/index.js | 32 +++++++ fe/PC/src/utils/tabsDesTions/index.js | 32 +++++++ .../basicData/chassisManage/chassisList.vue | 88 +++++++++++++++++++ .../chassisOperationSequence.vue | 88 +++++++++++++++++++ 5 files changed, 272 insertions(+) create mode 100644 fe/PC/src/views/basicData/chassisManage/chassisList.vue create mode 100644 fe/PC/src/views/basicData/chassisManage/chassisOperationSequence.vue diff --git a/fe/PC/src/router/index.js b/fe/PC/src/router/index.js index e8a7970ef..9094d3c36 100644 --- a/fe/PC/src/router/index.js +++ b/fe/PC/src/router/index.js @@ -557,6 +557,38 @@ export const constantRoutes = [ icon: '成品发运任务', } }] + }, + { + path: '/', + component: Layout, + redirect: '/gridlayout', + hidden: true, + children: [{ + path: 'chassisList', + component: () => import('@/views/basicData/chassisManage/chassisList.vue'), + name: 'chassisList', + meta: { + keepAlive : true, + title: '底盘查询', + icon: '成品发运任务', + } + }] + }, + { + path: '/', + component: Layout, + redirect: '/gridlayout', + hidden: true, + children: [{ + path: 'chassisOperationSequence', + component: () => import('@/views/basicData/chassisManage/chassisOperationSequence.vue'), + name: 'chassisOperationSequence', + meta: { + keepAlive : true, + title: '底盘执行位置序列', + icon: '成品发运任务', + } + }] }, ] diff --git a/fe/PC/src/utils/tableColumns/index.js b/fe/PC/src/utils/tableColumns/index.js index 41082fc06..28d7f8ecf 100644 --- a/fe/PC/src/utils/tableColumns/index.js +++ b/fe/PC/src/utils/tableColumns/index.js @@ -4839,6 +4839,38 @@ export const pageLock = [ { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] +// 底盘查询 +export const chassisList = [ + { + label: "底盘代码", + prop: 'chassisNumber', + fixed: "left", + type: "name" + }, + { label: "底盘生产时间", prop: 'produceDateTime', type: "dateTime" }, + { label: "接收接口时间", prop: 'receiveInterfaceDateTime', type: "dateTime" }, + { label: "执行位置排序列", prop: 'sortNumber' }, + { label: "备注", prop: "remark" }, + { label: "描述", prop: "description" }, + { label: "创建时间", prop: 'creationTime', type: "dateTime" }, + { label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" }, +] + +// 底盘执行位置序列 +export const chassisOperationSequence = [ + { + label: "底盘代码", + prop: 'chassisNumber', + fixed: "left", + type: "name" + }, + { label: "kitting代码", prop: 'kittingCode' }, + { label: "kitting执行序列号", prop: 'kittingNumber',width:"180px" }, + { label: "备注", prop: "remark" }, + { label: "创建时间", prop: 'creationTime', type: "dateTime" }, + { label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" }, +] + // 字段说明 diff --git a/fe/PC/src/utils/tabsDesTions/index.js b/fe/PC/src/utils/tabsDesTions/index.js index 053727e32..289c46a11 100644 --- a/fe/PC/src/utils/tabsDesTions/index.js +++ b/fe/PC/src/utils/tabsDesTions/index.js @@ -3620,4 +3620,36 @@ export const pageLock = [ { label: "备注", prop: 'remark' }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, +] + +// 底盘查询 +export const chassisList = [ + { + label: "底盘代码", + prop: 'chassisNumber', + fixed: "left", + type: "name" + }, + { label: "底盘生产时间", prop: 'produceDateTime', type: "dateTime" }, + { label: "接收接口时间", prop: 'receiveInterfaceDateTime', type: "dateTime" }, + { label: "执行位置排序列", prop: 'sortNumber' }, + { label: "备注", prop: "remark" }, + { label: "描述", prop: "description" }, + { label: "创建时间", prop: 'creationTime', type: "dateTime" }, + { label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" }, +] + +// 底盘执行位置序列 +export const chassisOperationSequence = [ + { + label: "底盘代码", + prop: 'chassisNumber', + fixed: "left", + type: "name" + }, + { label: "kitting代码", prop: 'kittingCode' }, + { label: "kitting执行序列号", prop: 'kittingNumber' }, + { label: "备注", prop: "remark" }, + { label: "创建时间", prop: 'creationTime', type: "dateTime" }, + { label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" }, ] \ No newline at end of file diff --git a/fe/PC/src/views/basicData/chassisManage/chassisList.vue b/fe/PC/src/views/basicData/chassisManage/chassisList.vue new file mode 100644 index 000000000..fb3df2c3b --- /dev/null +++ b/fe/PC/src/views/basicData/chassisManage/chassisList.vue @@ -0,0 +1,88 @@ + + + \ No newline at end of file diff --git a/fe/PC/src/views/basicData/chassisManage/chassisOperationSequence.vue b/fe/PC/src/views/basicData/chassisManage/chassisOperationSequence.vue new file mode 100644 index 000000000..d78ada487 --- /dev/null +++ b/fe/PC/src/views/basicData/chassisManage/chassisOperationSequence.vue @@ -0,0 +1,88 @@ + + + \ No newline at end of file