From 852fda1ac2cc8b943f04cdfcfe39be53b05e6637 Mon Sep 17 00:00:00 2001
From: tzy1042411602 <1042411602@qq.com>
Date: Sun, 1 Dec 2024 16:29:28 +0800
Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E4=BA=A7=E5=B7=A5=E8=89=BABOM?=
=?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=9B=B4=E6=96=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/system/routeTwo.js | 44 ++
src/views/system/jeecg/index.vue | 40 ++
src/views/system/routeTwo/index.vue | 670 ++++++++++++++++++++++++++++
vue.config.js | 2 +-
4 files changed, 755 insertions(+), 1 deletion(-)
create mode 100644 src/api/system/routeTwo.js
create mode 100644 src/views/system/jeecg/index.vue
create mode 100644 src/views/system/routeTwo/index.vue
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]: ''