3.18医生
This commit is contained in:
@@ -22,6 +22,7 @@ Page({
|
||||
avg_response_time: 0,
|
||||
number_of_fans: 0,
|
||||
avatar: api.getStaticHost()+"/applet/doctor/static/images/default_photo.png",
|
||||
introduction_status:'',
|
||||
reject_prescription_number: false,//处方管理小红点
|
||||
},
|
||||
static_host: api.getStaticHost(),
|
||||
@@ -241,7 +242,7 @@ Page({
|
||||
this.getMenuButtonBound();
|
||||
|
||||
api.yiShiIndex().then(response => {
|
||||
// console.log(response);
|
||||
console.log(response);
|
||||
let avatar = response.data.info.avatar;
|
||||
this.setData({
|
||||
"info.user_name": response.data.info.user_name,
|
||||
@@ -249,6 +250,7 @@ Page({
|
||||
"info.accepting_inquiry_num": response.data.info.accepting_inquiry_num,
|
||||
"info.praise_rate": response.data.info.praise_rate,
|
||||
"info.avg_response_time": response.data.info.avg_response_time,
|
||||
"info.introduction_status":response.data.info.introduction_status,
|
||||
"info.number_of_fans": response.data.info.number_of_fans,
|
||||
doctor_inquiry_config:response.data.doctor_inquiry_config
|
||||
})
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
"van-button": "@vant/weapp/button/index",
|
||||
"t-badge": "tdesign-miniprogram/badge/badge",
|
||||
"t-dialog": "tdesign-miniprogram/dialog/dialog",
|
||||
"van-icon": "@vant/weapp/icon/index",
|
||||
"van-image": "@vant/weapp/image/index",
|
||||
"t-skeleton": "tdesign-miniprogram/skeleton/skeleton",
|
||||
"van-overlay": "@vant/weapp/overlay/index"
|
||||
|
||||
@@ -113,6 +113,7 @@
|
||||
src="{{static_host}}/applet/doctor/static/images/yishi/jianjie.png"
|
||||
/>
|
||||
<text class="fun_box_item_txt">个人简介管理</text>
|
||||
<view class="introicon" wx:if="{{info.introduction_status==3}}">!</view>
|
||||
</view>
|
||||
<view bindtap="go" data-moudle="4" data-url="/user/pages/yishi/onlinesetup/index" class="fun_box_item" style="height: {{funbox_height}}rpx;">
|
||||
<van-image class="fun_box_item_img"
|
||||
|
||||
@@ -189,6 +189,7 @@ page{
|
||||
background-color: #fff;
|
||||
}
|
||||
.fun_box_item{
|
||||
position: relative;
|
||||
width: 40vw;
|
||||
height: 110rpx;
|
||||
background-color: #FAFAFA;
|
||||
@@ -252,6 +253,18 @@ page{
|
||||
border-left: 2px solid var(--td-border-color, #E9E9E9);
|
||||
border-top-color: #E9E9E9 !important;
|
||||
}
|
||||
.overlay_show{
|
||||
.introicon{
|
||||
top:-7rpx;
|
||||
left:50rpx;
|
||||
width:32rpx;
|
||||
height:32rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color:#fff;
|
||||
font-size: 24rpx;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
background-color: red;
|
||||
position: absolute;
|
||||
|
||||
}
|
||||
@@ -329,6 +329,15 @@ Page({
|
||||
}
|
||||
lastMessage.messageForShow = text;
|
||||
}
|
||||
if(lastMessage.type=="TIMCustomElem"){
|
||||
let payload = lastMessage.payload;
|
||||
if(payload && payload.data) {
|
||||
// console.log("payload: ",payload.data);
|
||||
let payloadJson = JSON.parse(payload.data);
|
||||
session_item.custommessagetype =payloadJson.message_type?payloadJson.message_type:'';
|
||||
}
|
||||
|
||||
}
|
||||
if(lastMessage.isRevoked){
|
||||
if(lastMessage.fromAccount == app.globalData.config.userID){
|
||||
lastMessage.messageForShow = "你撤回了一条消息";
|
||||
|
||||
@@ -49,7 +49,8 @@
|
||||
</view>
|
||||
<view class="date"> {{item.message_send_time}}</view>
|
||||
</view>
|
||||
<view class="content_2">{{item.last_message_content.Text}}</view>
|
||||
<!-- {{item.last_message_content.message_type}} -->
|
||||
<view class="content_2">{{item.custommessagetype==13?'[附赠回复]':item.last_message_content.Text}}</view>
|
||||
<view class="content_3">
|
||||
<view class="status">{{ item.inquiry_status==1?'待支付':item.inquiry_status==2?'待分配':item.inquiry_status==3?'待接诊':item.inquiry_status==4?'接诊中':item.inquiry_status==5?'已完成':item.inquiry_status==6?'已结束':item.inquiry_status==7?'已取消':'其他' }}</view>
|
||||
<view class="btn" wx:if="{{ item.inquiry_status == 3 }}">
|
||||
|
||||
Reference in New Issue
Block a user