diff --git a/Pages/index/index.wxss b/Pages/index/index.wxss
index 8f99577..a665326 100644
--- a/Pages/index/index.wxss
+++ b/Pages/index/index.wxss
@@ -4,7 +4,7 @@
margin-left: 50rpx;
margin-bottom: 100rpx;
font-size: 50rpx;
- font-family: "AlibabaPuHuiTi-2-75-SemiBold";
+ /* font-family: "AlibabaPuHuiTi-2-75-SemiBold"; */
color: #333;
}
.item{
diff --git a/Pages/mobile_login/index.js b/Pages/mobile_login/index.js
index 1463245..ac6fef6 100644
--- a/Pages/mobile_login/index.js
+++ b/Pages/mobile_login/index.js
@@ -13,13 +13,33 @@ Page({
btn_msg: "获取验证码",
btn_disabled: false,
login_disabled: true,
+ btn_color: "#ccc"
},
onChange(event) {
this.setData({
checked: event.detail,
});
},
+ phone_change(e){
+ let phone = this.data.phone;
+ if(phone != ""){
+ this.setData({
+ btn_color: "#3CC7C0"
+ })
+ }
+ },
getCodePhone(e){
+ let phone_reg = /^1[3-9]\d{9}$/;
+ let phone = this.data.phone;
+ //判断用户输入的真实姓名是否为空
+ if(phone.length == 0){
+ wx.showToast({title: '手机号不能为空', icon:'error'})
+ return false;
+ }else if(!phone_reg.test(phone)){//检测姓名的格式是否匹配
+ wx.showToast({title: '手机号输入有误', icon:'error'})
+ return false;
+ }
+
if(!this.data.checked){
wx.showToast({
title: '请同意协议',
@@ -48,6 +68,24 @@ Page({
})
},
mobileLogin(e){
+
+ let phone_reg = /^1[3-9]\d{9}$/;
+ let phone = this.data.phone;
+ let sms = this.data.sms;
+ //判断用户输入的真实姓名是否为空
+ if(phone.length == 0){
+ wx.showToast({title: '手机号不能为空', icon:'error'})
+ return false;
+ }else if(!phone_reg.test(phone)){//检测姓名的格式是否匹配
+ wx.showToast({title: '手机号输入有误', icon:'error'})
+ return false;
+ }
+
+ if(sms.length == 0){
+ wx.showToast({title: '验证码不能为空', icon:'error'})
+ return false;
+ }
+
if(!this.data.checked){
wx.showToast({
title: '请同意协议',
diff --git a/Pages/mobile_login/index.wxml b/Pages/mobile_login/index.wxml
index 12c0ed4..2a0684a 100644
--- a/Pages/mobile_login/index.wxml
+++ b/Pages/mobile_login/index.wxml
@@ -3,26 +3,27 @@
-
-
-
- {{btn_msg}}
-
-
+
+
+
+ {{btn_msg}}
+
+
登录
diff --git a/Pages/mobile_login/index.wxss b/Pages/mobile_login/index.wxss
index 2dee842..ec68852 100644
--- a/Pages/mobile_login/index.wxss
+++ b/Pages/mobile_login/index.wxss
@@ -1,5 +1,5 @@
.logo{
- height: 500rpx;
+ margin-top: 150rpx;
display: flex;
align-items: center;
justify-content: center;
diff --git a/Pages/yaoshi/home/home.wxml b/Pages/yaoshi/home/home.wxml
index c13413b..f4164e1 100644
--- a/Pages/yaoshi/home/home.wxml
+++ b/Pages/yaoshi/home/home.wxml
@@ -46,7 +46,7 @@
处方订单号:2023010510324649
- 查看病例
+ 查看病例
@@ -68,7 +68,7 @@
处方订单号:2023010510324649
- 查看病例
+ 查看病例
@@ -90,7 +90,7 @@
处方订单号:2023010510324649
- 查看病例
+ 查看病例
diff --git a/Pages/yaoshi/info/info.wxss b/Pages/yaoshi/info/info.wxss
index cb7329f..9149bd9 100644
--- a/Pages/yaoshi/info/info.wxss
+++ b/Pages/yaoshi/info/info.wxss
@@ -1,12 +1,16 @@
+page{
+ background-color: #F4F4F4;
+}
.top{
width: 100vw;
- background-color: cornflowerblue;
+ background-color: rgb(255, 255, 255);
height: 370rpx;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
flex-direction: column;
+ margin-bottom: 20rpx;
}
.name{
color: white;
@@ -15,4 +19,5 @@
text-justify:distribute-all-lines;
text-align-last: justify;
font-size: 28rpx;
+ width: 180rpx;
}
diff --git a/Pages/yaoshi/my/my.js b/Pages/yaoshi/my/my.js
index b1feb40..a140602 100644
--- a/Pages/yaoshi/my/my.js
+++ b/Pages/yaoshi/my/my.js
@@ -4,7 +4,7 @@ const app = getApp()
Page({
data: {
navbarData: {
- showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
+ showCapsule: 0, //是否显示左上角图标 1表示显示 0表示不显示
title: '个人中心', //导航栏 中间的标题
},
height: app.globalData.height,
@@ -25,5 +25,30 @@ Page({
}).catch(errors => {
console.error(errors);
})
+ },
+ logOut(){
+ console.log("退出登录");
+ let usertype = wx.getStorageSync('usertype');
+ wx.showModal({
+ title: '确认退出登录',
+ content: '退出登录后您需要重新登录',
+ success (res) {
+ if (res.confirm) {
+ console.log('用户点击确定')
+ wx.setStorageSync('AUTH_TOKEN_'+usertype, "");
+ wx.setStorageSync('user_id', "");
+ wx.setStorageSync('client_user_id', "");
+ app.go("/Pages/index/index");
+ } else if (res.cancel) {
+ console.log('用户点击取消')
+ }
+ }
+ })
+ },
+ go(e){
+ console.log(e)
+ let url = e.currentTarget.dataset.url;
+ app.go(url);
}
+
})
\ No newline at end of file
diff --git a/Pages/yaoshi/my/my.json b/Pages/yaoshi/my/my.json
index b6f232d..35d8a0c 100644
--- a/Pages/yaoshi/my/my.json
+++ b/Pages/yaoshi/my/my.json
@@ -2,7 +2,9 @@
"component": true,
"usingComponents": {
"t-avatar": "tdesign-miniprogram/avatar/avatar",
- "van-icon": "@vant/weapp/icon/index"
+ "van-icon": "@vant/weapp/icon/index",
+ "van-button": "@vant/weapp/button/index",
+ "te-nav-bar": "/commpents/te_navbar"
},
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTextStyle": "black",
diff --git a/Pages/yaoshi/my/my.wxml b/Pages/yaoshi/my/my.wxml
index ac21aba..66155ea 100644
--- a/Pages/yaoshi/my/my.wxml
+++ b/Pages/yaoshi/my/my.wxml
@@ -1,19 +1,18 @@
+
{{info.user_name}}
-
- 个人中心
-
+ 个人中心
-
-
-
- 实名认证
-
+
+
+ 实名认证
+
+ 退出登录
\ No newline at end of file
diff --git a/Pages/yaoshi/my/my.wxss b/Pages/yaoshi/my/my.wxss
index 7b6c197..b182a9f 100644
--- a/Pages/yaoshi/my/my.wxss
+++ b/Pages/yaoshi/my/my.wxss
@@ -12,9 +12,10 @@
color: white;
margin-top: 30rpx;
text-align: justify;
- text-justify:distribute-all-lines;
+ text-justify: inter-word;
text-align-last: justify;
font-size: 28rpx;
+ width: 180rpx;
}
.my{
display: flex;
diff --git a/Pages/yishi/bankcard/index.wxss b/Pages/yishi/bankcard/index.wxss
index 0b5e953..a1f2acf 100644
--- a/Pages/yishi/bankcard/index.wxss
+++ b/Pages/yishi/bankcard/index.wxss
@@ -32,7 +32,7 @@ page{
font-size: 28rpx;
color: #999999;
width: 92vw;
- margin: 0 auto;
+ margin: -20rpx auto;
line-height: 50rpx;
}
.bankcard_list{
diff --git a/Pages/yishi/bindcard/index.wxss b/Pages/yishi/bindcard/index.wxss
index 50c7748..7036ca0 100644
--- a/Pages/yishi/bindcard/index.wxss
+++ b/Pages/yishi/bindcard/index.wxss
@@ -20,7 +20,7 @@
font-size: 28rpx;
color: #999999;
width: 92vw;
- margin: 50rpx auto;
+ margin: 20rpx auto;
line-height: 50rpx;
}
.t-tabs__item--active{
@@ -34,4 +34,7 @@
}
.van-picker__confirm{
color: #3cc7c0 !important;
+}
+.van-cell {
+ padding: 32rpx !important;
}
\ No newline at end of file
diff --git a/Pages/yishi/cash/index.wxml b/Pages/yishi/cash/index.wxml
index 7db1ca9..ea973f1 100644
--- a/Pages/yishi/cash/index.wxml
+++ b/Pages/yishi/cash/index.wxml
@@ -50,7 +50,7 @@
-->
- 提取
+ 提取
联系客服
diff --git a/Pages/yishi/cash/index.wxss b/Pages/yishi/cash/index.wxss
index 44d5df4..90b1ddb 100644
--- a/Pages/yishi/cash/index.wxss
+++ b/Pages/yishi/cash/index.wxss
@@ -58,12 +58,13 @@ page{
flex-direction: column;
}
.cash_top{
+ margin-top: 20rpx;
display: flex;
flex: 3;
}
.cash_bottom{
border-top: 1px solid #E5E5E5;
- flex: 1;
+ flex: 1.2;
color: #3CC7C0;
font-size: 32rpx;
display: flex;
diff --git a/Pages/yishi/identity/index.wxml b/Pages/yishi/identity/index.wxml
index 8b0f92e..72916cd 100644
--- a/Pages/yishi/identity/index.wxml
+++ b/Pages/yishi/identity/index.wxml
@@ -13,6 +13,7 @@
t-class="custom-tabs"
theme="line"
custom-style="font-size: 32rpx"
+ swipeable="{{false}}"
>
diff --git a/Pages/yishi/identity/index.wxss b/Pages/yishi/identity/index.wxss
index 6d9a117..29d8b6f 100644
--- a/Pages/yishi/identity/index.wxss
+++ b/Pages/yishi/identity/index.wxss
@@ -71,7 +71,7 @@
letter-spacing: 2rpx;
}
.t-cell__title-text{
- font-size: 30rpx !important;
+ font-size: 32rpx !important;
}
.t-input__wrap--suffix-icon{
padding-left: var(--td-spacer-1, 8rpx) !important;
@@ -177,4 +177,34 @@
}
.van-picker__confirm{
color: #3cc7c0 !important;
+}
+.van-cell:after {
+ border-bottom: 1px solid var(--td-cell-border-color, var(--td-gray-color-3, #e7e7e7));
+ bottom: 0;
+ box-sizing: border-box;
+ content: " ";
+ pointer-events: none;
+ position: absolute;
+ width: calc(100vw - 32rpx);
+ transform: scaleY(.5);
+ transform-origin: center;
+ border-bottom-width: 1px;
+ border-bottom-style: solid;
+ border-bottom-color: var(--td-cell-border-color, var(--td-gray-color-3, #e7e7e7));
+}
+.t-cell__note,.t-class-note,.note{
+ font-size: 30rpx !important;
+}
+.van-cell {
+ padding: 32rpx !important;
+}
+.van-picker__cancel{
+ font-size: 32rpx !important;
+}
+.van-picker__confirm{
+ color: #3cc7c0 !important;
+ font-size: 32rpx !important;
+}
+.van-picker__title {
+ font-size: 34rpx !important;
}
\ No newline at end of file
diff --git a/Pages/yishi/index/index.wxml b/Pages/yishi/index/index.wxml
index 4edc999..1844c43 100644
--- a/Pages/yishi/index/index.wxml
+++ b/Pages/yishi/index/index.wxml
@@ -75,7 +75,7 @@
-
+
-
+
diff --git a/Pages/yishi/index/index.wxss b/Pages/yishi/index/index.wxss
index e4ab867..175dfca 100644
--- a/Pages/yishi/index/index.wxss
+++ b/Pages/yishi/index/index.wxss
@@ -172,11 +172,12 @@
.fun_box{
width: 90vw;
margin: 30rpx auto 0 auto;
- padding: 20rpx 0;
+ padding: 30rpx 0;
box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
display: flex;
flex-wrap: wrap;
- justify-content: space-around;
+ justify-content: space-evenly;
+ border-radius: 10rpx;
}
.fun_box_item{
width: 40vw;
@@ -186,7 +187,6 @@
margin: 10rpx 0;
display: flex;
align-items: center;
- padding-left: 20rpx;
}
.fun_box_item_img{
flex: 1;
@@ -194,11 +194,12 @@
justify-content: center;
}
.fun_box_item_txt{
- flex: 2;
- font-size: 30rpx;
+ flex: 2.5;
+ font-size: 34rpx;
color: #333333;
height: 70rpx;
line-height: 70rpx;
+ display: flex;
}
.t-class-cancel{
color: #3CC7C0 !important;
diff --git a/Pages/yishi/kuaisusetup/index.wxss b/Pages/yishi/kuaisusetup/index.wxss
index 8aa348a..d556c43 100644
--- a/Pages/yishi/kuaisusetup/index.wxss
+++ b/Pages/yishi/kuaisusetup/index.wxss
@@ -70,7 +70,7 @@ page{
position: relative;
display: flex;
justify-content: space-between;
- margin: 20rpx;
+ margin: 20rpx 20rpx 20rpx 30rpx;
align-items: center;
}
.price_steup_box_bottom_num{
@@ -101,7 +101,7 @@ page{
}
.bottom{
width: 90vw;
- margin: 0 auto;
+ margin: -20rpx auto;
color: #999;
letter-spacing: 2rpx;
font-size: 28rpx;
diff --git a/Pages/yishi/my/index.wxml b/Pages/yishi/my/index.wxml
index 6303acb..c31887b 100644
--- a/Pages/yishi/my/index.wxml
+++ b/Pages/yishi/my/index.wxml
@@ -35,7 +35,7 @@
-
+
提现
diff --git a/Pages/yishi/my/index.wxss b/Pages/yishi/my/index.wxss
index 4584c3e..398d140 100644
--- a/Pages/yishi/my/index.wxss
+++ b/Pages/yishi/my/index.wxss
@@ -111,7 +111,9 @@
.t-badge__content-text {
line-height: 70rpx !important;
}
-
+.van-cell {
+ padding: 32rpx !important;
+}
diff --git a/Pages/yishi/myinfo/index.wxss b/Pages/yishi/myinfo/index.wxss
index c1bc9b2..da60a2d 100644
--- a/Pages/yishi/myinfo/index.wxss
+++ b/Pages/yishi/myinfo/index.wxss
@@ -16,4 +16,7 @@
.dialog_confirm_btn{
border-top: 1px solid #E9E9E9;
color: #3CC7C0;
+}
+.van-cell {
+ padding: 32rpx !important;
}
\ No newline at end of file
diff --git a/Pages/yishi/myprofile/index.js b/Pages/yishi/myprofile/index.js
index d2f2349..a296466 100644
--- a/Pages/yishi/myprofile/index.js
+++ b/Pages/yishi/myprofile/index.js
@@ -2,7 +2,7 @@ const app = getApp()
Page({
data: {
navbarData: {
- showCapsule: 2, //是否显示左上角图标 1表示显示 0表示不显示
+ showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
title: '我的简介', //导航栏 中间的标题
},
},
diff --git a/Pages/yishi/myprofile/index.wxss b/Pages/yishi/myprofile/index.wxss
index ba4595b..30adba9 100644
--- a/Pages/yishi/myprofile/index.wxss
+++ b/Pages/yishi/myprofile/index.wxss
@@ -1,58 +1,6 @@
-/* .container{
- padding-bottom: 50rpx;
-} */
-.t-cell__note {
- font-size: 25rpx !important;
- letter-spacing: 2rpx;
-}
-.t-cell__title-text{
+.t-cell__note,.t-class-note,.note{
font-size: 30rpx !important;
}
-.t-input__wrap--suffix-icon{
- padding-left: var(--td-spacer-1, 8rpx) !important;
-}
-
-.container {
- width: 100vw;
- background-color: #ffffff;
-}
-.tui-navigatorbar{
- position: fixed;
- top: 0;
- width: 750rpx;
- height: 170rpx;
- background-color: #bae46b;
- z-index: 99;
-}
-.tui-navigatorbar-back{
- position: absolute;
- width: 48rpx;
- height: 48rpx;
- left: 40rpx;
- bottom: 20rpx;
-}
-.conversation-title {
- position:absolute;
- width: 350rpx;
- height: 88rpx;
- line-height: 56rpx;
- font-size: 36rpx;
- color: #e68080;
- bottom: 0;
- left: 200rpx;
- display: flex;
- justify-content: center;
- align-items: center;
-}
-.van-cell--required::before {
- left: 4.7rem !important;
-}
-.required{
- color: #e34d59;
-}
-.van-picker__confirm{
- color: #3cc7c0 !important;
-}
.t-tabs__item--active{
color: #49B9AD !important;
}
@@ -61,4 +9,20 @@
}
.t-icon-check{
color: #49B9AD !important;
+}
+.zhuanchang_btn--confirm {
+ color: #3cc7c0;
+}
+.van-picker__cancel{
+ font-size: 32rpx !important;
+}
+.van-picker__confirm{
+ color: #3cc7c0 !important;
+ font-size: 32rpx !important;
+}
+.van-picker__title {
+ font-size: 34rpx !important;
+}
+.van-cell {
+ padding: 32rpx !important;
}
\ No newline at end of file
diff --git a/Pages/yishi/notice_deatil/index.wxss b/Pages/yishi/notice_deatil/index.wxss
index c4c450c..87657d4 100644
--- a/Pages/yishi/notice_deatil/index.wxss
+++ b/Pages/yishi/notice_deatil/index.wxss
@@ -11,7 +11,7 @@ page{
}
.item{
display: flex;
- margin-bottom: 30rpx;
+ margin-bottom: 40rpx;
}
.title{
flex: 1;
diff --git a/Pages/yishi/onlinesetup/index.wxss b/Pages/yishi/onlinesetup/index.wxss
index f611f85..4aeee3c 100644
--- a/Pages/yishi/onlinesetup/index.wxss
+++ b/Pages/yishi/onlinesetup/index.wxss
@@ -55,7 +55,7 @@
margin: 20rpx auto 0 auto;
font-size: 32rpx;
margin-bottom: 20rpx;
- font-family: "AlibabaPuHuiTi-2-55-Regular";
+ /* font-family: "AlibabaPuHuiTi-2-55-Regular"; */
color: #333333;
}
.price_steup_box{
@@ -71,7 +71,7 @@
position: relative;
display: flex;
justify-content: space-between;
- margin: 20rpx;
+ margin: 20rpx 20rpx 20rpx 30rpx;
align-items: center;
padding-bottom: 20rpx;
}
@@ -79,7 +79,7 @@
position: relative;
display: flex;
justify-content: space-between;
- margin: 0rpx 20rpx 0rpx 20rpx;
+ margin: 0rpx 20rpx 0rpx 30rpx;
align-items: center;
}
.price_steup_box_top_title, .price_steup_box_bottom_title{
@@ -110,7 +110,7 @@
}
.bottom{
width: 90vw;
- margin: 0 auto;
+ margin: -20rpx auto;
color: #999;
letter-spacing: 2rpx;
font-size: 28rpx;
diff --git a/Pages/yishi/quickreply/index.wxss b/Pages/yishi/quickreply/index.wxss
index a0f9d85..e2ce446 100644
--- a/Pages/yishi/quickreply/index.wxss
+++ b/Pages/yishi/quickreply/index.wxss
@@ -64,4 +64,10 @@ page{
width: 65px;
justify-content: center;
color: #fff;
+}
+.van-cell {
+ padding: 32rpx !important;
+ font-size: 34rpx !important;
+ color: #333 !important;
+ font-weight: bolder !important;
}
\ No newline at end of file
diff --git a/Pages/yishi/service_notice/index.wxml b/Pages/yishi/service_notice/index.wxml
index a24bd49..5ce3c76 100644
--- a/Pages/yishi/service_notice/index.wxml
+++ b/Pages/yishi/service_notice/index.wxml
@@ -6,7 +6,7 @@
快速问诊
-
+
2023-1-02 12:22
@@ -17,7 +17,7 @@
在线问诊
-
+
2023-1-02 12:22
@@ -27,8 +27,8 @@
- 义诊
-
+ 公益问诊
+
2023-1-02 12:22
@@ -39,7 +39,7 @@
问诊购药
-
+
2023-1-02 12:22
diff --git a/Pages/yishi/service_notice/index.wxss b/Pages/yishi/service_notice/index.wxss
index 47c4885..594dcad 100644
--- a/Pages/yishi/service_notice/index.wxss
+++ b/Pages/yishi/service_notice/index.wxss
@@ -35,6 +35,10 @@ page{
}
.item_content{
margin-top: 20rpx;
- font-size: 24rpx;
+ font-size: 30rpx;
color: #666666;
+}
+.van_img{
+ display: flex;
+ justify-content: center;
}
\ No newline at end of file
diff --git a/Pages/yishi/system_notice/index.wxml b/Pages/yishi/system_notice/index.wxml
index e3723fc..93a9f34 100644
--- a/Pages/yishi/system_notice/index.wxml
+++ b/Pages/yishi/system_notice/index.wxml
@@ -5,7 +5,7 @@
-
+
9月份的服务费结算通知
@@ -17,7 +17,7 @@
-
+
8月份的服务费结算通知
@@ -26,7 +26,7 @@
-
+
7月份的服务费结算通知
@@ -35,7 +35,7 @@
-
+
6月份的服务费结算通知
diff --git a/Pages/yishi/system_notice/index.wxss b/Pages/yishi/system_notice/index.wxss
index 4547adb..4a648bf 100644
--- a/Pages/yishi/system_notice/index.wxss
+++ b/Pages/yishi/system_notice/index.wxss
@@ -23,6 +23,10 @@ page{
display: flex;
align-items: center;
}
+.van_img{
+ display: flex;
+ justify-content: center;
+}
.item_content{
font-size: 34rpx;
color: #333333;
diff --git a/Pages/yishi/wenzhen_v2/wenzhen.wxss b/Pages/yishi/wenzhen_v2/wenzhen.wxss
index d418242..8814706 100644
--- a/Pages/yishi/wenzhen_v2/wenzhen.wxss
+++ b/Pages/yishi/wenzhen_v2/wenzhen.wxss
@@ -17,7 +17,7 @@ page{
display: flex;
flex-direction: column;
color: #666666;
- font-size: 20rpx;
+ font-size: 28rpx;
}
.top_left{
border-right: 1px solid #F4F4F4;
diff --git a/Pages/yishi/wenzhenorder/index.wxss b/Pages/yishi/wenzhenorder/index.wxss
index 9c2a7c5..4f81925 100644
--- a/Pages/yishi/wenzhenorder/index.wxss
+++ b/Pages/yishi/wenzhenorder/index.wxss
@@ -53,10 +53,13 @@
background-color: #fff;
align-items: center;
z-index: 99;
+ padding-bottom: 50rpx;
}
.bottom_checkbox{
flex: 2;
font-size: 30rpx;
+ display: flex;
+ justify-content: center;
}
.bottom_content{
flex: 6;
diff --git a/Pages/yishi/yizhensetup/index.wxss b/Pages/yishi/yizhensetup/index.wxss
index 1e7d0ff..50f6015 100644
--- a/Pages/yishi/yizhensetup/index.wxss
+++ b/Pages/yishi/yizhensetup/index.wxss
@@ -56,7 +56,7 @@ page{
margin: 0 auto;
font-size: 32rpx;
margin-bottom: 20rpx;
- font-family: "AlibabaPuHuiTi-2-55-Regular";
+ /* font-family: "AlibabaPuHuiTi-2-55-Regular"; */
color: #333333;
}
.price_steup_box{
@@ -98,7 +98,7 @@ page{
}
.bottom{
width: 90vw;
- margin: 0 auto;
+ margin: -20rpx auto;
color: #999;
letter-spacing: 2rpx;
font-size: 28rpx;
diff --git a/Pages/yishi/zhiye_identity/index.wxss b/Pages/yishi/zhiye_identity/index.wxss
index 3c2740e..f7b6729 100644
--- a/Pages/yishi/zhiye_identity/index.wxss
+++ b/Pages/yishi/zhiye_identity/index.wxss
@@ -7,7 +7,7 @@
line-height: 80rpx;
height: 80rpx;
color: #ED7B2F;
- font-size: 20rpx;
+ font-size: 28rpx;
padding-left: 20rpx;
}
.notice::after{
diff --git a/app.js b/app.js
index f07d216..238b2fb 100644
--- a/app.js
+++ b/app.js
@@ -25,22 +25,22 @@ App({
console.log("download fonts from oss ");
let loadStatus = false;
if (!loadStatus) {
- wx.loadFontFace({
- global: true,
- family: 'AlibabaPuHuiTi',
- // source: 'url("https://oss.igandan.com/app/fonts/AlibabaPuHuiTi/STXINGKA.TTF")',
- source: 'url("https://docwebsite.oss-cn-beijing.aliyuncs.com/app/fonts/AlibabaPuHuiTi/AlibabaPuHuiTi-2-65-Medium/AlibabaPuHuiTi-2-65-Medium.ttf")',
- success() {
- loadStatus = true;
- console.log("download fonts from oss success");
- },
- fail(){
- console.log("download fonts from oss error");
- },
- complete(){
- console.log("download fonts from oss complete");
- }
- });
+ // wx.loadFontFace({
+ // global: true,
+ // family: 'AlibabaPuHuiTi',
+ // // source: 'url("https://oss.igandan.com/app/fonts/AlibabaPuHuiTi/STXINGKA.TTF")',
+ // source: 'url("https://docwebsite.oss-cn-beijing.aliyuncs.com/app/fonts/AlibabaPuHuiTi/AlibabaPuHuiTi-2-65-Medium/AlibabaPuHuiTi-2-65-Medium.ttf")',
+ // success() {
+ // loadStatus = true;
+ // console.log("download fonts from oss success");
+ // },
+ // fail(){
+ // console.log("download fonts from oss error");
+ // },
+ // complete(){
+ // console.log("download fonts from oss complete");
+ // }
+ // });
}
this.aegisInit()
diff --git a/app.wxss b/app.wxss
index 25ecd8f..12c22d3 100644
--- a/app.wxss
+++ b/app.wxss
@@ -1,5 +1,5 @@
/**app.wxss**/
-@font-face{
+/* @font-face{
font-family:AlibabaPuHuiTi-2-55-Regular;
src:url('https://oss.igandan.com/app/fonts/AlibabaPuHuiTi/AlibabaPuHuiTi-2-55-Regular/AlibabaPuHuiTi-2-55-Regular.ttf')format('TrueType');
font-display:swap;
@@ -16,4 +16,4 @@
}
page{
font-family:AlibabaPuHuiTi-2-65-Medium;
-}
+} */
diff --git a/commpents/myprofile/index.js b/commpents/myprofile/index.js
index 685eba9..bc99575 100644
--- a/commpents/myprofile/index.js
+++ b/commpents/myprofile/index.js
@@ -216,9 +216,9 @@ Component({
})
}).then(()=>{
let index = this.data.zhuanchang_columns.findIndex(item => {
- return item.is_selected == 1
+ return item.is_selected == 1;
})
- if(index) {
+ if(index != undefined) {
this.setData({
zhuanchang_note: ""
})
diff --git a/commpents/myprofile/index.wxml b/commpents/myprofile/index.wxml
index b4a08ed..fca0589 100644
--- a/commpents/myprofile/index.wxml
+++ b/commpents/myprofile/index.wxml
@@ -1,4 +1,4 @@
-
+
头像 *
diff --git a/commpents/myprofile/index.wxss b/commpents/myprofile/index.wxss
index 8127405..99a1b8c 100644
--- a/commpents/myprofile/index.wxss
+++ b/commpents/myprofile/index.wxss
@@ -9,6 +9,31 @@
font-weight: 400;
align-items: center;
}
+.photo_reason{
+ position: relative;
+ padding: 32rpx 32rpx 32rpx 0;
+ margin-left: 32rpx;
+ display: flex;
+ justify-content: space-between;
+ font-size: 32rpx;
+ font-weight: 400;
+ align-items: center;
+}
+.photo_reason::after{
+ position: absolute;
+ box-sizing: border-box;
+ content: ' ';
+ pointer-events: none;
+ right: 0;
+ bottom: 0;
+ border-bottom: 1px solid var(--td-cell-border-color, var(--td-gray-color-3, #e7e7e7));
+ transform: scaleY(0.5);
+ left: 0rpx;
+}
+
+.required{
+ color: #e34d59;
+}
.title{
font-size: 30rpx;
@@ -65,14 +90,14 @@
margin: 20rpx 10rpx 20rpx 0;
font-size: 28rpx;
}
-.t-radio__icon--checked {
- color: #49B9AD !important;
-}
.t-tabs__item--active{
color: #49B9AD !important;
}
.t-tabs__track{
- background-color: var(--td-tab-track-color, var(--td-primary-color, #49B9AD)) !important;
+ background-color: #49B9AD !important;
+}
+.t-icon-check{
+ color: #49B9AD !important;
}
.t-cell__note {
font-size: 25rpx !important;
@@ -96,7 +121,7 @@
}
.bottom_next{
width: 95vw;
- margin: 530rpx auto;
+ margin: 530rpx auto 0 auto;
}
.sub_button{
width: 95vw;
@@ -120,6 +145,7 @@
height: 300rpx;
background-color: cadetblue;
}
+
.zhuanchang_box{
display: flex;
flex-wrap: wrap;
@@ -174,41 +200,6 @@
.zhuanchang_btn--confirm {
color: #3cc7c0;
}
-.error_box{
- position: relative;
- display: flex;
- background-color: #FEF1F1;
- width: calc(95vw - 64rpx);
- height: 100rpx;
- margin: 30rpx auto 0 auto;
- align-items: center;
- padding-left: 32rpx;
- border-radius: 10rpx;
-}
-.error_box::after{
- border-radius: 5rpx;
- position: absolute;
- width: 0px;
- height: 0px;
- border-width: 16rpx;
- border-style: solid;
- border-color: transparent transparent #FEF1F1 transparent;
- content: ' ';
- left: 50rpx;
- top: -30rpx;
-}
-.error_msg{
- position: relative;
- margin-left: 10rpx;
- color: #FF0000;
- letter-spacing: 3rpx;
- font-weight: 600;
-}
-.has_error{
- margin-left: 32rpx;
- padding-bottom: 20rpx;
- border-bottom: 1rpx solid #e7e7e7;
-}
.van-picker__columns {
height: 264px !important;
top: 40px !important;
@@ -217,6 +208,24 @@
top: -270px !important;
position: relative !important;
}
-.custom_keshi_error{
- display: none;
+.van-picker__confirm{
+ color: #3cc7c0 !important;
}
+.van-cell:after {
+ border-bottom: 1px solid var(--td-cell-border-color, var(--td-gray-color-3, #e7e7e7));
+ bottom: 0;
+ box-sizing: border-box;
+ content: " ";
+ pointer-events: none;
+ position: absolute;
+ width: calc(100vw - 32rpx);
+ transform: scaleY(.5);
+ transform-origin: center;
+ border-bottom-width: 1px;
+ border-bottom-style: solid;
+ border-bottom-color: var(--td-cell-border-color, var(--td-gray-color-3, #e7e7e7));
+}
+
+.van-cell {
+ padding: 32rpx !important;
+}
\ No newline at end of file
diff --git a/commpents/textarea-cell/index.wxml b/commpents/textarea-cell/index.wxml
index 08fde3c..f767d84 100644
--- a/commpents/textarea-cell/index.wxml
+++ b/commpents/textarea-cell/index.wxml
@@ -3,11 +3,11 @@
{{ textarea_cell_name }} *
- {{ textarea_cell_note }}
+ {{ textarea_cell_note }}
-
+
diff --git a/commpents/textarea-cell/index.wxss b/commpents/textarea-cell/index.wxss
index 2883557..e21d928 100644
--- a/commpents/textarea-cell/index.wxss
+++ b/commpents/textarea-cell/index.wxss
@@ -25,7 +25,7 @@
.textarea-cell-content{
background-color: #FAFAFA;
width: 95%;
- height: 500rpx;
+ height: 310rpx;
display: flex;
margin: 30rpx auto 0 auto;
}
diff --git a/commpents/upload-cell/index.wxml b/commpents/upload-cell/index.wxml
index 2a90ff0..85f4a78 100644
--- a/commpents/upload-cell/index.wxml
+++ b/commpents/upload-cell/index.wxml
@@ -3,7 +3,7 @@
{{ upload_cell_name }} *
- {{ upload_cell_note }}
+ {{ upload_cell_note }}
diff --git a/commpents/upload-cell/index.wxss b/commpents/upload-cell/index.wxss
index 8ad4f31..bc772ad 100644
--- a/commpents/upload-cell/index.wxss
+++ b/commpents/upload-cell/index.wxss
@@ -37,6 +37,7 @@
.upload-cell-desc{
color: #999999;
margin: 20rpx 0;
+ font-size: 30rpx;
}
.error_box{
position: relative;
diff --git a/commpents/wenzhen_data/index.wxml b/commpents/wenzhen_data/index.wxml
index 1e4d7b3..136f992 100644
--- a/commpents/wenzhen_data/index.wxml
+++ b/commpents/wenzhen_data/index.wxml
@@ -10,11 +10,11 @@
{{ status_text }}
- 查看病历
- 去接诊
+ 查看病历
+ 去接诊
- 问诊详情
+ 问诊详情
diff --git a/commpents/wenzhen_data/index.wxss b/commpents/wenzhen_data/index.wxss
index 1fad6c2..111551c 100644
--- a/commpents/wenzhen_data/index.wxss
+++ b/commpents/wenzhen_data/index.wxss
@@ -52,7 +52,7 @@
border-top: 1px solid #E3E4E5;
align-items: center;
margin: 0 30rpx;
- min-height: 50rpx;
+ min-height: 70rpx;
}
.pop_content{
text-align: center;