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