diff --git a/src/api/system/routeTwo.js b/src/api/system/routeTwo.js
new file mode 100644
index 0000000..6c05fbd
--- /dev/null
+++ b/src/api/system/routeTwo.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询工艺生产用表列表
+export function listRouteTwo(query) {
+ return request({
+ url: '/system/routeTwo/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询工艺生产用表详细
+export function getRouteTwo(id) {
+ return request({
+ url: '/system/routeTwo/' + id,
+ method: 'get'
+ })
+}
+
+// 新增工艺生产用表
+export function addRouteTwo(data) {
+ return request({
+ url: '/system/routeTwo',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改工艺生产用表
+export function updateRouteTwo(data) {
+ return request({
+ url: '/system/routeTwo',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除工艺生产用表
+export function delRouteTwo(id) {
+ return request({
+ url: '/system/routeTwo/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/views/system/jeecg/index.vue b/src/views/system/jeecg/index.vue
new file mode 100644
index 0000000..0bcc5d6
--- /dev/null
+++ b/src/views/system/jeecg/index.vue
@@ -0,0 +1,40 @@
+
+
+
+
+
+
diff --git a/src/views/system/routeTwo/index.vue b/src/views/system/routeTwo/index.vue
new file mode 100644
index 0000000..9342995
--- /dev/null
+++ b/src/views/system/routeTwo/index.vue
@@ -0,0 +1,670 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.fOperPlanStartTime, '{y}-{m}-{d}') }}
+
+
+
+
+ {{ parseTime(scope.row.fOperPlanFinishTime, '{y}-{m}-{d}') }}
+
+
+
+
+ {{ parseTime(scope.row.fPlanStartTime, '{y}-{m}-{d}') }}
+
+
+
+
+ {{ parseTime(scope.row.fPlanFinishTime, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+ 采购
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/vue.config.js b/vue.config.js
index 6df2a9a..9110b80 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -35,7 +35,7 @@ module.exports = {
proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {
- target: `http://localhost:8033`,
+ target: `http://127.0.0.1:8033`,
changeOrigin: true,
pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: ''