diff --git a/vue/README.md b/vue/README.md index 8b2c19c..c80d4d5 100644 --- a/vue/README.md +++ b/vue/README.md @@ -1,6 +1,5 @@ - **Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)* - [Getting started](#getting-started) diff --git a/vue/public/index.html b/vue/public/index.html index cabb99a..f3fba80 100644 --- a/vue/public/index.html +++ b/vue/public/index.html @@ -7,7 +7,7 @@ - <%= webpackConfig.name %> + diff --git a/vue/src/router/index.js b/vue/src/router/index.js index 2f9d1c2..2a9eac1 100644 --- a/vue/src/router/index.js +++ b/vue/src/router/index.js @@ -187,8 +187,8 @@ export const asyncRoutes = [ //businessdataRouter, //wheeldataRouter,//大众看板和备件 pgfisPrint,//排序单打印 - pgfis,//派格fis - JobTimeDataRouter,//后台作业监控 + pgfis, + // JobTimeDataRouter,//后台作业监控 // 404 page must be placed at the end !!! { path: '*', redirect: '/404', hidden: true } diff --git a/vue/src/router/modules/fis.js b/vue/src/router/modules/fis.js index 49233f8..e8d6711 100644 --- a/vue/src/router/modules/fis.js +++ b/vue/src/router/modules/fis.js @@ -1,4 +1,4 @@ -/** 派格fis路由 */ +/** 路由 */ //import Layout from '@/layout/firstLayout' import Layout from '@/layout' @@ -26,36 +26,36 @@ const pgfis = { icon: '发货' } }, - { - path: '/pg-assemblyCfg', - component: () => import('@/views/pg-fis/basedate/assemblyCfg'), - name: 'pg-assemblyCfg',//命名路由 - meta: { - title: '总成模块管理', - roles: ['SettleAccount.Reports'], - icon: '发货' - } - }, - { - path: '/pg-partSwitch', - component: () => import('@/views/pg-fis/basedate/partSwitch'), - name: 'pg-partSwitch',//命名路由 - meta: { - title: '零件切换管理', - roles: ['SettleAccount.Reports'], - icon: '发货' - } - }, - { - path: '/pg-unknownAssembly', - component: () => import('@/views/pg-fis/basedate/unknownAssembly'), - name: 'pg-unknownAssembly',//命名路由 - meta: { - title: '未知总成模块管理', - roles: ['SettleAccount.Reports'], - icon: '发货' - } - }, + // { + // path: '/pg-assemblyCfg', + // component: () => import('@/views/pg-fis/basedate/assemblyCfg'), + // name: 'pg-assemblyCfg',//命名路由 + // meta: { + // title: '总成模块管理', + // roles: ['SettleAccount.Reports'], + // icon: '发货' + // } + // }, + // { + // path: '/pg-partSwitch', + // component: () => import('@/views/pg-fis/basedate/partSwitch'), + // name: 'pg-partSwitch',//命名路由 + // meta: { + // title: '零件切换管理', + // roles: ['SettleAccount.Reports'], + // icon: '发货' + // } + // }, + // { + // path: '/pg-unknownAssembly', + // component: () => import('@/views/pg-fis/basedate/unknownAssembly'), + // name: 'pg-unknownAssembly',//命名路由 + // meta: { + // title: '未知总成模块管理', + // roles: ['SettleAccount.Reports'], + // icon: '发货' + // } + // }, { path: '/pg-workLine', component: () => import('@/views/pg-fis/basedate/productLine'), @@ -66,16 +66,16 @@ const pgfis = { icon: '供货' } }, - { - path: '/pg-M100BIll', - component: () => import('@/views/pg-fis/basedate/m100BIll'), - name: 'pg-M100BIll',//命名路由 - meta: { - title: 'M100单据信息维护', - roles: ['SettleAccount.Reports'], - icon: '客户零件' - } - }, + // { + // path: '/pg-M100BIll', + // component: () => import('@/views/pg-fis/basedate/m100BIll'), + // name: 'pg-M100BIll',//命名路由 + // meta: { + // title: 'M100单据信息维护', + // roles: ['SettleAccount.Reports'], + // icon: '客户零件' + // } + // }, // { // path: '/pg-M100Online', // component: () => import('@/views/pg-fis/basedate/m100Online'), @@ -116,16 +116,16 @@ const pgfis = { icon: '客户零件' } }, - { - path: '/pg-weldingAssembly', - component: () => import('@/views/pg-fis/basedate/weldingAssembly'), - name: 'pg-weldingAssembly',//命名路由 - meta: { - title: '焊装总装对比', - roles: ['SettleAccount.Reports'], - icon: '客户零件' - } - }, + // { + // path: '/pg-weldingAssembly', + // component: () => import('@/views/pg-fis/basedate/weldingAssembly'), + // name: 'pg-weldingAssembly',//命名路由 + // meta: { + // title: '焊装总装对比', + // roles: ['SettleAccount.Reports'], + // icon: '客户零件' + // } + // }, { path: '/pg-logRemind', component: () => import('@/views/pg-fis/basedate/logRemind'), diff --git a/vue/src/router/modules/fisprint.js b/vue/src/router/modules/fisprint.js index ea3309a..1be43a1 100644 --- a/vue/src/router/modules/fisprint.js +++ b/vue/src/router/modules/fisprint.js @@ -1,4 +1,4 @@ -/** 派格fis路由 */ +/** 路由 */ //import Layout from '@/layout/firstLayout' import Layout from '@/layout' @@ -28,15 +28,24 @@ const pgfisPrint = { }, { path: '/select', - component: () => import('@/views/pg-fis/basedate/select'), + component: () => import('@/views/pg-fis/basedate/select/index'), name: 'select',//命名路由 meta: { title: 'M100查询', //roles: ['SettleAccount.Reports'], icon: '结算对比' } + }, + { + path: '/m110Search', + component: () => import('@/views/pg-fis/basedate/m110Search/index'), + name: 'm110Search',//命名路由 + meta: { + title: 'M110查询', + //roles: ['SettleAccount.Reports'], + icon: '结算对比' + } } - ] } diff --git a/vue/src/settings.js b/vue/src/settings.js index e701514..cd9086e 100644 --- a/vue/src/settings.js +++ b/vue/src/settings.js @@ -1,5 +1,5 @@ module.exports = { - title: '长春派格汽车塑料技术有限公司结算管理系统', + title: '格拉默JIS系统', /** * @type {boolean} true | false diff --git a/vue/src/views/login/index.vue b/vue/src/views/login/index.vue index bcf2974..6b5d466 100644 --- a/vue/src/views/login/index.vue +++ b/vue/src/views/login/index.vue @@ -2,9 +2,9 @@
-
SAS/JIT-长春派格汽车塑料技术有限公司结算管理系统
+
格拉默JIS系统
- +
@@ -12,7 +12,7 @@ 长春市闻荫科技 ©2021 闻荫科技-长春派格结算管理系统 + href="http://www.ccwin-in.com">©2021 闻荫科技-格拉默JIS系统
diff --git a/vue/src/views/pg-fis/basedate/assemblyCfg/index.vue b/vue/src/views/pg-fis/basedate/assemblyCfg/index.vue index 3cb0c2a..c411afd 100644 --- a/vue/src/views/pg-fis/basedate/assemblyCfg/index.vue +++ b/vue/src/views/pg-fis/basedate/assemblyCfg/index.vue @@ -1,4 +1,4 @@ - +