From 45ac07e57c60f6564c2c8b62eb65f801746fa800 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=B6=E9=94=A6=E6=B6=9B?= <26050301730@qq.com> Date: Mon, 24 Nov 2025 16:19:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=A3=80=E6=9F=A5=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E8=AE=BE=E7=BD=AE=E5=A4=9A=E4=BD=99=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../checkprojectSettings/index.vue | 42 ++----------------- 1 file changed, 3 insertions(+), 39 deletions(-) diff --git a/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue b/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue index 44b5e12d..df11b542 100644 --- a/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue +++ b/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue @@ -304,57 +304,21 @@ async function loadMenuData(menu) { case '检查方法': const methodResponse = await listCheckMethod(); if (methodResponse && methodResponse.data) { - methodResponse.data.forEach((item, index) => { - tableData.push({ - row: (index + 1).toString(), - code: item.code, - name: item.name, - type: item.type_name || '', - selected: true, - department: '', - number: '', - remark: item.remark || '', - actions: true - }); - }); + } break; case '检查部位': const partResponse = await listCheckPart(); if (partResponse && partResponse.data) { - partResponse.data.forEach((item, index) => { - tableData.push({ - row: (index + 1).toString(), - code: item.code, - name: item.name, - type: item.parent_name || '部位', - selected: true, - department: '', - number: '', - remark: item.remark || '', - actions: true - }); - }); + } break; case '套餐设置': const packageResponse = await listCheckPackage(); if (packageResponse && packageResponse.data) { - packageResponse.data.forEach((item, index) => { - tableData.push({ - row: (index + 1).toString(), - code: item.code, - name: item.name, - type: '套餐', - selected: true, - department: '', - number: item.price || '', - remark: item.remark || '', - actions: true - }); - }); + } break; }