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 @@