From 1f399194fc8665a8af722e900c3cc6eb7e21fa66 Mon Sep 17 00:00:00 2001 From: kuaileWu <1432334894@qq.com> Date: Wed, 6 Mar 2024 12:31:26 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E7=9B=B8=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 17 +++++++++ acupuncture.sql | 1 - pages/index/index.vue | 67 ++++++++++++++++++++++++++++++++--- 针灸挂号系统功能拆分.txt | 10 +++--- 针灸挂号系统功能表结构.sql | 1 - 5 files changed, 84 insertions(+), 12 deletions(-) diff --git a/App.vue b/App.vue index 4391270..aa0be63 100644 --- a/App.vue +++ b/App.vue @@ -106,6 +106,14 @@ font-size:34rpx; line-height: 34rpx; } + .ft40{ + font-size:40rpx; + line-height: 40rpx; + } + .ft50{ + font-size:50rpx; + line-height: 50rpx; + } .PfScRegular{ font-family: PingFangSC-Regular, sans-serif !important; font-weight: 400 !important; @@ -131,6 +139,12 @@ font-family: PingFangSC-Heavy, sans-serif !important; font-weight: 800 !important; } + .over{ + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + word-break: break-all; + } .over2{ overflow: hidden; display: -webkit-box; @@ -174,4 +188,7 @@ line-height: 92rpx; border-radius: 16rpx; } + .flex{ + display: flex; + } diff --git a/acupuncture.sql b/acupuncture.sql index 997d422..a2c2b3c 100644 --- a/acupuncture.sql +++ b/acupuncture.sql @@ -1,6 +1,5 @@ CREATE TABLE `user_list` ( `id` int NOT NULL AUTO_INCREMENT PRIMARY KEY, - `hid` int(11) NOT NULL DEFAULT '0' COMMENT '医院id', `doctor_id` int(11) NOT NULL DEFAULT '0' COMMENT '医生id', `avator` varchar(255) NOT NULL DEFAULT '' COMMENT '头像', `nick` varchar(100) NOT NULL DEFAULT '' COMMENT '昵称', diff --git a/pages/index/index.vue b/pages/index/index.vue index 08af06b..871ba96 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -1,6 +1,19 @@