From 27ee2541e26c9462ea957a1d4d751a3a3754ba5d Mon Sep 17 00:00:00 2001 From: duxianzhang Date: Tue, 2 Apr 2024 17:39:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E3=80=8E=E6=88=91=E7=9A=84=E3=80=8F?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2UI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/mineBar.vue | 64 +++++++++++++++ components/mineBox.vue | 45 ++++++++++ components/tabbar.vue | 6 +- launch.json | 6 ++ pages.json | 8 ++ pages/mine/mine.vue | 95 ++++++++++++++++++++++ static/images/frontend/mine-bar-assistant.svg | 1 + static/images/frontend/mine-bar-invite.svg | 1 + static/images/frontend/mine-bar-prebook.svg | 1 + static/images/frontend/mine-bar-records.svg | 1 + static/images/frontend/mine-bar-registration.svg | 1 + static/images/frontend/mine-icon-doctor.svg | 1 + static/images/frontend/mine-icon-hospital.svg | 1 + static/images/frontend/mine-icon-schedule.svg | 1 + static/images/frontend/mine-icon-setting.svg | 1 + static/images/frontend/unuse/出诊安排.svg | 1 - static/images/frontend/unuse/助手管理.svg | 1 - static/images/frontend/unuse/医生信息.svg | 1 - static/images/frontend/unuse/医院管理.svg | 1 - .../images/frontend/unuse/导出针灸记录.svg | 1 - static/images/frontend/unuse/患者预约.svg | 1 - static/images/frontend/unuse/挂号管理.svg | 1 - static/images/frontend/unuse/诊疗设置.svg | 1 - static/images/frontend/unuse/邀请新医生.svg | 1 - 24 files changed, 232 insertions(+), 10 deletions(-) create mode 100644 components/mineBar.vue create mode 100644 components/mineBox.vue create mode 100644 launch.json create mode 100644 pages/mine/mine.vue create mode 100644 static/images/frontend/mine-bar-assistant.svg create mode 100644 static/images/frontend/mine-bar-invite.svg create mode 100644 static/images/frontend/mine-bar-prebook.svg create mode 100644 static/images/frontend/mine-bar-records.svg create mode 100644 static/images/frontend/mine-bar-registration.svg create mode 100644 static/images/frontend/mine-icon-doctor.svg create mode 100644 static/images/frontend/mine-icon-hospital.svg create mode 100644 static/images/frontend/mine-icon-schedule.svg create mode 100644 static/images/frontend/mine-icon-setting.svg delete mode 100644 static/images/frontend/unuse/出诊安排.svg delete mode 100644 static/images/frontend/unuse/助手管理.svg delete mode 100644 static/images/frontend/unuse/医生信息.svg delete mode 100644 static/images/frontend/unuse/医院管理.svg delete mode 100644 static/images/frontend/unuse/导出针灸记录.svg delete mode 100644 static/images/frontend/unuse/患者预约.svg delete mode 100644 static/images/frontend/unuse/挂号管理.svg delete mode 100644 static/images/frontend/unuse/诊疗设置.svg delete mode 100644 static/images/frontend/unuse/邀请新医生.svg diff --git a/components/mineBar.vue b/components/mineBar.vue new file mode 100644 index 0000000..bf33364 --- /dev/null +++ b/components/mineBar.vue @@ -0,0 +1,64 @@ + + + + + \ No newline at end of file diff --git a/components/mineBox.vue b/components/mineBox.vue new file mode 100644 index 0000000..8bfa516 --- /dev/null +++ b/components/mineBox.vue @@ -0,0 +1,45 @@ + + + + + \ No newline at end of file diff --git a/components/tabbar.vue b/components/tabbar.vue index 8bd8a20..63b4223 100644 --- a/components/tabbar.vue +++ b/components/tabbar.vue @@ -5,7 +5,7 @@ - 文章 + {{leftButtonText}} @@ -30,6 +30,10 @@ is_admin:{ type: Boolean, default: false + }, + leftButtonText: { + type: String, + default: '文章' } }, data() { diff --git a/launch.json b/launch.json new file mode 100644 index 0000000..b91000f --- /dev/null +++ b/launch.json @@ -0,0 +1,6 @@ +{ + "type": "uniapp-run", + "request": "launch", + "name": "Uniapp Run", + "platform": "mp-weixin" +} diff --git a/pages.json b/pages.json index be6d4f4..62fae98 100644 --- a/pages.json +++ b/pages.json @@ -46,6 +46,14 @@ "navigationBarTitleText": "", "enablePullDownRefresh": false } + }, + { + "path" : "pages/mine/mine", + "style" : + { + "navigationBarTitleText" : "", + "enablePullDownRefresh" : false + } } ], "globalStyle": { diff --git a/pages/mine/mine.vue b/pages/mine/mine.vue new file mode 100644 index 0000000..890ee05 --- /dev/null +++ b/pages/mine/mine.vue @@ -0,0 +1,95 @@ + + + + + diff --git a/static/images/frontend/mine-bar-assistant.svg b/static/images/frontend/mine-bar-assistant.svg new file mode 100644 index 0000000..be84114 --- /dev/null +++ b/static/images/frontend/mine-bar-assistant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/frontend/mine-bar-invite.svg b/static/images/frontend/mine-bar-invite.svg new file mode 100644 index 0000000..3ebcc88 --- /dev/null +++ b/static/images/frontend/mine-bar-invite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/frontend/mine-bar-prebook.svg b/static/images/frontend/mine-bar-prebook.svg new file mode 100644 index 0000000..ed088ba --- /dev/null +++ b/static/images/frontend/mine-bar-prebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/frontend/mine-bar-records.svg b/static/images/frontend/mine-bar-records.svg new file mode 100644 index 0000000..f5c602a --- /dev/null +++ b/static/images/frontend/mine-bar-records.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/frontend/mine-bar-registration.svg b/static/images/frontend/mine-bar-registration.svg new file mode 100644 index 0000000..f3265f0 --- /dev/null +++ b/static/images/frontend/mine-bar-registration.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/frontend/mine-icon-doctor.svg b/static/images/frontend/mine-icon-doctor.svg new file mode 100644 index 0000000..05fe77a --- /dev/null +++ b/static/images/frontend/mine-icon-doctor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/frontend/mine-icon-hospital.svg b/static/images/frontend/mine-icon-hospital.svg new file mode 100644 index 0000000..a78fc7c --- /dev/null +++ b/static/images/frontend/mine-icon-hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/frontend/mine-icon-schedule.svg b/static/images/frontend/mine-icon-schedule.svg new file mode 100644 index 0000000..2095456 --- /dev/null +++ b/static/images/frontend/mine-icon-schedule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/frontend/mine-icon-setting.svg b/static/images/frontend/mine-icon-setting.svg new file mode 100644 index 0000000..190729d --- /dev/null +++ b/static/images/frontend/mine-icon-setting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/frontend/unuse/出诊安排.svg b/static/images/frontend/unuse/出诊安排.svg deleted file mode 100644 index 2095456..0000000 --- a/static/images/frontend/unuse/出诊安排.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/frontend/unuse/助手管理.svg b/static/images/frontend/unuse/助手管理.svg deleted file mode 100644 index be84114..0000000 --- a/static/images/frontend/unuse/助手管理.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/frontend/unuse/医生信息.svg b/static/images/frontend/unuse/医生信息.svg deleted file mode 100644 index 05fe77a..0000000 --- a/static/images/frontend/unuse/医生信息.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/frontend/unuse/医院管理.svg b/static/images/frontend/unuse/医院管理.svg deleted file mode 100644 index a78fc7c..0000000 --- a/static/images/frontend/unuse/医院管理.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/frontend/unuse/导出针灸记录.svg b/static/images/frontend/unuse/导出针灸记录.svg deleted file mode 100644 index f5c602a..0000000 --- a/static/images/frontend/unuse/导出针灸记录.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/frontend/unuse/患者预约.svg b/static/images/frontend/unuse/患者预约.svg deleted file mode 100644 index ed088ba..0000000 --- a/static/images/frontend/unuse/患者预约.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/frontend/unuse/挂号管理.svg b/static/images/frontend/unuse/挂号管理.svg deleted file mode 100644 index f3265f0..0000000 --- a/static/images/frontend/unuse/挂号管理.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/frontend/unuse/诊疗设置.svg b/static/images/frontend/unuse/诊疗设置.svg deleted file mode 100644 index 190729d..0000000 --- a/static/images/frontend/unuse/诊疗设置.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/frontend/unuse/邀请新医生.svg b/static/images/frontend/unuse/邀请新医生.svg deleted file mode 100644 index 3ebcc88..0000000 --- a/static/images/frontend/unuse/邀请新医生.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file