From 937ac0920cf0c06d6c0c3a3c9d681dc129d550d9 Mon Sep 17 00:00:00 2001 From: wally <18603454788@163.com> Date: Sun, 21 May 2023 15:38:33 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=82=A3=E8=80=85=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 26 +++- api/base.ts | 2 - api/index.ts | 2 + api/modules/service.ts | 12 ++ api/modules/user.ts | 18 ++- components/SearchList/SearchList.vue | 21 ++- components/SettingPad/SettingPad.vue | 3 +- config/local.ts | 1 + config/service.ts | 23 ++++ hooks/usePagination.ts | 34 +++++ main.js | 6 +- manifest.json | 190 ++++++++++++++------------- pages.json | 3 +- pages/patient-list/patient-list.vue | 118 +++++++++++------ store/modules/service.ts | 37 +++++- store/modules/user.ts | 8 ++ uni.scss | 10 ++ utils/common.ts | 9 ++ utils/http.ts | 27 +++- 19 files changed, 394 insertions(+), 156 deletions(-) create mode 100644 api/modules/service.ts create mode 100644 config/service.ts create mode 100644 hooks/usePagination.ts diff --git a/App.vue b/App.vue index 32da96c..5550f18 100644 --- a/App.vue +++ b/App.vue @@ -1,12 +1,20 @@