From 4dc604ec7fd0a30d5d85abbf1d70ad6b0b99841d Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期三, 28 八月 2024 15:34:43 +0800 Subject: [PATCH] rename --- src/api/ecg/queue/index.ts | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/api/ecg/queue/index.ts b/src/api/ecg/queue/index.ts index 04a9fe1..66ab1c1 100644 --- a/src/api/ecg/queue/index.ts +++ b/src/api/ecg/queue/index.ts @@ -1,7 +1,7 @@ import request from '@/config/axios' // 鎺掗槦 VO -export interface queueVO { +export interface QueueVO { id: number // id patId: string // 鎮h�呯紪鍙� patName: string // 鎮h�呭鍚� @@ -31,12 +31,12 @@ }, // 鏂板鎺掗槦 - createqueue: async (data: queueVO) => { + createqueue: async (data: QueueVO) => { return await request.post({ url: `/ecg/queue/create`, data }) }, // 淇敼鎺掗槦 - updatequeue: async (data: queueVO) => { + updatequeue: async (data: QueueVO) => { return await request.put({ url: `/ecg/queue/update`, data }) }, @@ -46,7 +46,7 @@ }, // 鎻掗槦鎺掗槦 - jumpQueue: async (params: queueVO) => { + jumpQueue: async (params: QueueVO) => { return await request.get({ url: `/ecg/queue/patient-jump`, params }) }, -- Gitblit v1.9.3