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 @@