From 3c5d8549674f4fb96ad9b96f50fea7e03c1359f1 Mon Sep 17 00:00:00 2001 From: Lxq <19852720163@163.com> Date: Thu, 8 Jan 2026 11:52:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=87=E5=87=86=E6=B5=81=E7=A8=8B=E7=AE=A1?= =?UTF-8?q?=E7=90=86+=E6=B5=81=E7=A8=8B=E5=88=9B=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rc_autoplc_backend/.idea/misc.xml | 12 + rc_autoplc_backend/.idea/vcs.xml | 6 + rc_autoplc_backend/.idea/workspace.xml | 54 +++ rc_autoplc_front/index.html | 2 +- rc_autoplc_front/src/api/tb/stepinfo.ts | 24 + rc_autoplc_front/src/views/flowinfo/index.vue | 64 ++- .../src/views/islandInfo/index.vue | 15 + rc_autoplc_front/src/views/stepinfo/index.vue | 424 +++++++++++++++++- 8 files changed, 576 insertions(+), 25 deletions(-) create mode 100644 rc_autoplc_backend/.idea/misc.xml create mode 100644 rc_autoplc_backend/.idea/vcs.xml create mode 100644 rc_autoplc_backend/.idea/workspace.xml diff --git a/rc_autoplc_backend/.idea/misc.xml b/rc_autoplc_backend/.idea/misc.xml new file mode 100644 index 0000000..67e1e61 --- /dev/null +++ b/rc_autoplc_backend/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/rc_autoplc_backend/.idea/vcs.xml b/rc_autoplc_backend/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/rc_autoplc_backend/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/rc_autoplc_backend/.idea/workspace.xml b/rc_autoplc_backend/.idea/workspace.xml new file mode 100644 index 0000000..42d1131 --- /dev/null +++ b/rc_autoplc_backend/.idea/workspace.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + 1767767108230 + + + + + + \ No newline at end of file diff --git a/rc_autoplc_front/index.html b/rc_autoplc_front/index.html index 9e5fc8f..80eefb7 100644 --- a/rc_autoplc_front/index.html +++ b/rc_autoplc_front/index.html @@ -4,7 +4,7 @@ - Vite App + 北京融创智能仪器管理系统
diff --git a/rc_autoplc_front/src/api/tb/stepinfo.ts b/rc_autoplc_front/src/api/tb/stepinfo.ts index 9af5c8a..934741e 100644 --- a/rc_autoplc_front/src/api/tb/stepinfo.ts +++ b/rc_autoplc_front/src/api/tb/stepinfo.ts @@ -8,6 +8,14 @@ export function stepInfoadd(data: any) { }) } +export function stepInfoaddlist(data: any) { + return request({ + url: '/stepInfo/batchAdd', + method: 'post', + data, + }) +} + export function stepInfodel(id: string | number) { return request({ url: `/stepInfo/del/${id}`, @@ -15,6 +23,14 @@ export function stepInfodel(id: string | number) { }) } +export function stepInfodellist(data: any[]) { + return request({ + url: '/stepInfo/batchDel', + method: 'delete', + data + }) +} + export function stepInfoupd(data: any) { return request({ url: '/stepInfo/update', @@ -23,6 +39,14 @@ export function stepInfoupd(data: any) { }) } +export function stepInfoupdlist(data: any) { + return request({ + url: '/stepInfo/batchUpdate', + method: 'post', + data, + }) +} + export function stepInfolist(data: any) { return request({ url: '/stepInfo/listPage', diff --git a/rc_autoplc_front/src/views/flowinfo/index.vue b/rc_autoplc_front/src/views/flowinfo/index.vue index 73875e2..de6a0b8 100644 --- a/rc_autoplc_front/src/views/flowinfo/index.vue +++ b/rc_autoplc_front/src/views/flowinfo/index.vue @@ -91,6 +91,14 @@ /> @@ -203,6 +211,7 @@