Browse Source

首页相关

master
kuaileWu 2 years ago
parent
commit
1f399194fc
  1. 17
      App.vue
  2. 1
      acupuncture.sql
  3. 67
      pages/index/index.vue
  4. 10
      针灸挂号系统功能拆分.txt
  5. 1
      针灸挂号系统功能表结构.sql

17
App.vue

@ -106,6 +106,14 @@
font-size:34rpx; font-size:34rpx;
line-height: 34rpx; line-height: 34rpx;
} }
.ft40{
font-size:40rpx;
line-height: 40rpx;
}
.ft50{
font-size:50rpx;
line-height: 50rpx;
}
.PfScRegular{ .PfScRegular{
font-family: PingFangSC-Regular, sans-serif !important; font-family: PingFangSC-Regular, sans-serif !important;
font-weight: 400 !important; font-weight: 400 !important;
@ -131,6 +139,12 @@
font-family: PingFangSC-Heavy, sans-serif !important; font-family: PingFangSC-Heavy, sans-serif !important;
font-weight: 800 !important; font-weight: 800 !important;
} }
.over{
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-break: break-all;
}
.over2{ .over2{
overflow: hidden; overflow: hidden;
display: -webkit-box; display: -webkit-box;
@ -174,4 +188,7 @@
line-height: 92rpx; line-height: 92rpx;
border-radius: 16rpx; border-radius: 16rpx;
} }
.flex{
display: flex;
}
</style> </style>

1
acupuncture.sql

@ -1,6 +1,5 @@
CREATE TABLE `user_list` ( CREATE TABLE `user_list` (
`id` int NOT NULL AUTO_INCREMENT PRIMARY KEY, `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', `doctor_id` int(11) NOT NULL DEFAULT '0' COMMENT '医生id',
`avator` varchar(255) NOT NULL DEFAULT '' COMMENT '头像', `avator` varchar(255) NOT NULL DEFAULT '' COMMENT '头像',
`nick` varchar(100) NOT NULL DEFAULT '' COMMENT '昵称', `nick` varchar(100) NOT NULL DEFAULT '' COMMENT '昵称',

67
pages/index/index.vue

@ -1,6 +1,19 @@
<template> <template>
<view class="indexPage"> <view class="index-page">
<view class="primaryBtn"> <view class="header-wrapper flex">
<view class="left">
<view class="flex top PfScMedium">
<view class="ft50">李静静</view>
<view>中医针灸科中医针灸科</view>
</view>
<view class="bt PfScRegular over2">
北京中医药大学硕士 从业10年北京中医药大学硕士 从业10年北京中医药大学硕士 从业10年
</view>
</view>
<img class="right" src="https://qny.xmz.yitongtang66.com/uploads/20240202/4c91b27887ee12a29beb015ef4dfe71f.jpg" alt="">
</view>
<view class="block">
</view> </view>
</view> </view>
@ -10,11 +23,12 @@
export default { export default {
data() { data() {
return { return {
cssUrl:this.cssUrl
} }
}, },
onLoad() { onLoad() {
uni.setNavigationBarTitle({ uni.setNavigationBarTitle({
title: '李静医生预约就诊' title:'李静医生预约就诊'
}); });
}, },
methods: { methods: {
@ -24,6 +38,51 @@
<style lang="scss" scoped> <style lang="scss" scoped>
.index-page{ .index-page{
.header-wrapper{
height: 208rpx;
padding: 24rpx 40rpx 24rpx;
.left{
width: 510rpx;
.top{
overflow: hidden;
& view:first-of-type{
color: #000000;
letter-spacing: 1rpx;
margin-right: 27rpx;
max-width: 380rpx;
}
& view:last-of-type{
width: auto;
padding: 0 15rpx;
margin-top: 14rpx;
line-height: 42rpx;
font-size: 28rpx;
text-align: left;
background: linear-gradient( 288deg, #FFEED2 0%, #FED9A6 100%);
border-radius: 8rpx;
color: #7D501F;
}
}
.bt{
width: 480rpx;
line-height: 40rpx;
font-size: 28rpx;
color: #38503F;
margin-top: 21rpx;
}
}
.right{
flex-grow: 1;
display: block;
border-radius: 100%;
height: 160rpx;
width: 160rpx;
}
}
.block{
background: #FFFFFF;
border-radius: 8rpx;
padding: 36rpx 24rpx;
}
} }
</style> </style>

10
针灸挂号系统功能拆分.txt

@ -1,4 +1,4 @@
针灸小妙招 针灸小妙招挂号系统
已完成 已完成
1.mysql表结构确认 1.mysql表结构确认
@ -8,10 +8,9 @@
进行中 进行中
1.患者端首页 预计完成 2024-03-06 09:30~2024-03-06 19:20 1.患者端首页 预计完成 2024-03-06 09:30~2024-03-06 19:20
-----------------------------------------------------------
患者端 静态页面
待完成 待完成
一、患者端 静态页面
预计完成 2024-03-07 09:30~2024-03-07 19:00 预计完成 2024-03-07 09:30~2024-03-07 19:00
2.选择就诊人页面 2.选择就诊人页面
3.新增就诊人信息页面 3.新增就诊人信息页面
@ -31,7 +30,7 @@
9.预约列表页面 9.预约列表页面
10.预约详情页面 10.预约详情页面
医生端 静态页面 二、医生端 静态页面
预计完成 2024-03-14 09:30~2024-03-14 19:00 预计完成 2024-03-14 09:30~2024-03-14 19:00
1.添加医生信息页面 1.添加医生信息页面
@ -99,7 +98,6 @@
1.针灸挂号系统需求确认 1.针灸挂号系统需求确认
2.针灸挂号系统前端框架搭建 2.针灸挂号系统前端框架搭建
1.添加医生信息页面 1.添加医生信息页面
(1)选择医院使用腾讯位置服务接口 (1)选择医院使用腾讯位置服务接口
https://lbs.qq.com/service/webService/webServiceGuide/search/webServiceSuggestion https://lbs.qq.com/service/webService/webServiceGuide/search/webServiceSuggestion

1
针灸挂号系统功能表结构.sql

@ -9,7 +9,6 @@ create 创建时间
CREATE TABLE `user_list` ( CREATE TABLE `user_list` (
`id` int NOT NULL AUTO_INCREMENT PRIMARY KEY, `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', `doctor_id` int(11) NOT NULL DEFAULT '0' COMMENT '医生id',
`avator` varchar(255) NOT NULL DEFAULT '' COMMENT '头像', `avator` varchar(255) NOT NULL DEFAULT '' COMMENT '头像',
`nick` varchar(100) NOT NULL DEFAULT '' COMMENT '昵称', `nick` varchar(100) NOT NULL DEFAULT '' COMMENT '昵称',

Loading…
Cancel
Save