From 1c85a641e45dfa8b5a92198372a6344a07c96dbe Mon Sep 17 00:00:00 2001 From: chenhaizhao <2291973799@qq.com> Date: Fri, 26 Dec 2025 10:05:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=A1=B5=E9=9D=A2=EF=BC=8C?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E4=BB=B6=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 11 +++++++++-- pages/index/index.vue | 2 +- pages/patient/addTask.vue | 5 +++++ pages/patient/{patient.vue => patientList.vue} | 0 4 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 pages/patient/addTask.vue rename pages/patient/{patient.vue => patientList.vue} (100%) diff --git a/pages.json b/pages.json index fe3fd9e..41cf878 100644 --- a/pages.json +++ b/pages.json @@ -7,6 +7,12 @@ }, "pages": [ + { + "path": "pages/patient/patientList", + "style": { + "navigationBarTitleText": "患者列表" + } + }, { "path": "pages/index/index", "style": { @@ -14,11 +20,12 @@ } }, { - "path": "pages/patient/patient", + "path": "pages/patient/addTask.vue", "style": { - "navigationBarTitleText": "患者列表" + "navigationBarTitleText": "新增任务" } } + ], "globalStyle": { "navigationBarTextStyle": "black", diff --git a/pages/index/index.vue b/pages/index/index.vue index 56ddfdc..340a408 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -29,7 +29,7 @@ const clickMenu = (value) => { switch (value) { case 0: wx.navigateTo({ - url:"/pages/patient/patient" + url:"/pages/patient/patientList" }) break; diff --git a/pages/patient/addTask.vue b/pages/patient/addTask.vue new file mode 100644 index 0000000..940c476 --- /dev/null +++ b/pages/patient/addTask.vue @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/pages/patient/patient.vue b/pages/patient/patientList.vue similarity index 100% rename from pages/patient/patient.vue rename to pages/patient/patientList.vue