diff --git a/oms_web/oms_vue/src/components/order/OrderInfo.vue b/oms_web/oms_vue/src/components/order/OrderInfo.vue new file mode 100644 index 00000000..f9d49fc9 --- /dev/null +++ b/oms_web/oms_vue/src/components/order/OrderInfo.vue @@ -0,0 +1,359 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/oms_web/oms_vue/src/router/index.js b/oms_web/oms_vue/src/router/index.js index 77bf1a70..caa0acd2 100644 --- a/oms_web/oms_vue/src/router/index.js +++ b/oms_web/oms_vue/src/router/index.js @@ -105,6 +105,39 @@ export const constantRoutes = [ // 动态路由,基于用户权限动态去加载 export const dynamicRoutes = [ + { + path: '/inventory', + component: Layout, + redirect: 'noRedirect', + name: 'Inventory', + meta: { + title: '库存管理', + icon: 'inventory' + }, + children: [ + { + path: 'execution', + component: () => import('@/views/inventory/execution/index'), + name: 'Execution', + meta: { title: '订单执行跟踪', icon: 'execution' }, + permissions: ['inventory:execution:list'] + } + ] + }, + { + path: '/inventory/execution', + component: Layout, + hidden: true, + permissions: ['inventory:execution:edit'], + children: [ + { + path: 'edit/:id(\\d+)', + component: () => import('@/views/inventory/execution/edit'), + name: 'ExecutionEdit', + meta: { title: '订单执行编辑', activeMenu: '/inventory/execution' } + } + ] + }, { path: '/system/user-auth', component: Layout, diff --git a/oms_web/oms_vue/src/views/project/order/OrderDetail.vue b/oms_web/oms_vue/src/views/project/order/OrderDetail.vue index c70ed0b4..b26ada34 100644 --- a/oms_web/oms_vue/src/views/project/order/OrderDetail.vue +++ b/oms_web/oms_vue/src/views/project/order/OrderDetail.vue @@ -1,368 +1,157 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {{ log.approveOpinion }} - 操作人: {{ log.approveUserName }} ({{ log.roleName }}) - 接收人: {{ log.nextAllApproveUserName }} - 审批状态: {{ formatApproveStatus(log.approveStatus) }} - - - - - - 暂无流转过程数据。 - - - - - - - - - - - - - - - - 下载模板 - - - - - - - - - - - {{ form.projectName + 'Rev.' + activeContractVersionTab }} - - - - - 附件信息 - - - - - {{ scope.$index + 1 == 1 ? '商务折扣审批' : scope.$index + 1 == 2 ? '合同' : '补充附件' }} - - - - - {{ scope.row.fileName }} - {{ file_log_arr[scope.$index] }} - - - - - - - 上传 - 预览 - - 下载 - - 删除 - - - - - - - 暂无合同信息数据。 - - - - - - + + + + + + + - - + + + + + + + + + + + + + + {{ log.approveOpinion }} + 操作人: {{ log.approveUserName }} ({{ log.roleName }}) + 接收人: {{ log.nextAllApproveUserName }} + 审批状态: {{ formatApproveStatus(log.approveStatus) }} + + + + + + 暂无流转过程数据。 + + + + + + + + + + 下载模板 + + + + + + - - - - - - - - - - + + + + {{ form.projectName + 'Rev.' + activeContractVersionTab }} + + + + + 附件信息 + + + + + {{ scope.$index + 1 == 1 ? '商务折扣审批' : scope.$index + 1 == 2 ? '合同' : '补充附件' }} + + + + + {{ scope.row.fileName }} + {{ file_log_arr[scope.$index] }} + + + + + + + 上传 + 预览 + + 下载 + + 删除 + + + + + + + 暂无合同信息数据。 + + + + + + + + + + + + + + + @@ -375,27 +164,23 @@ + + \ No newline at end of file
操作人: {{ log.approveUserName }} ({{ log.roleName }})
接收人: {{ log.nextAllApproveUserName }}
审批状态: {{ formatApproveStatus(log.approveStatus) }}