2021-08-19 06:40:59 +00:00
|
|
|
|
<template>
|
|
|
|
|
<view>
|
|
|
|
|
<!-- 状态栏 -->
|
|
|
|
|
<status-nav :titleVal="'医生'" :statusTitle="true"></status-nav>
|
|
|
|
|
<!-- 自定义二级分类 -->
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<view :style="{paddingTop: statusHNH+'px'}" class="pad-zy30">
|
|
|
|
|
<view class="radius20 fon28 col3 mar-s20">
|
|
|
|
|
<view class="disac">
|
|
|
|
|
<view class="disjbac width100 radius10 pad-zy20 xialak bacf">
|
|
|
|
|
<input class="fon28 width100" @confirm="searchEv" type="text" v-model="keyword" placeholder="请输入问题/病种/医生姓名" placeholder-style="color: #B3B3B3;" />
|
|
|
|
|
</view>
|
|
|
|
|
<view @tap="searchEv" class="flexs tc mar-z30 colf radius10 customer-btn" :style="{background:publicColor}">搜索</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="pad-zy20 mar-sx30">
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<view class="fon28 col3 bold qdoctor disac">全部医生</view>
|
|
|
|
|
<view class="mar-s30" v-if="dataList.length!=0">
|
|
|
|
|
<!-- 医生列表 -->
|
|
|
|
|
<list-doctor :list="dataList"></list-doctor>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-if="dataList.length==0" class="disjcac fc" style="margin-top: 50%;">
|
|
|
|
|
<image class="zanw-img" src="/static/public/nothing.png" mode="aspectFill"></image>
|
2021-08-22 08:53:12 +00:00
|
|
|
|
<view v-if="keyword!=''" class="fon24 col3">您搜索的内容暂无结果,换个关键词试试吧</view>
|
|
|
|
|
<view v-if="keyword==''" class="fon24 col3">暂无医生列表</view>
|
2021-08-19 06:40:59 +00:00
|
|
|
|
</view>
|
|
|
|
|
<!-- 返回顶部 -->
|
|
|
|
|
<!-- <back-top :showTop="showTop" @backTop="backTop"></back-top> -->
|
|
|
|
|
</view>
|
2021-08-26 09:57:04 +00:00
|
|
|
|
<!-- 底部客服 -->
|
|
|
|
|
<public-customer :nbottom="100"></public-customer>
|
2021-08-19 06:40:59 +00:00
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import listDoctor from '@/components/list-doctor.vue';
|
|
|
|
|
export default {
|
|
|
|
|
components:{
|
|
|
|
|
listDoctor
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
statusHNH:uni.getStorageSync('statusHNH'),
|
|
|
|
|
publicColor:uni.getStorageSync('publicColor'),//主题颜色
|
|
|
|
|
dataList:[
|
|
|
|
|
// {imgSrc:'/static/public/doctor.png',name:'廖恒利医生',cyear:'16',bmen:'美容门诊部',zcheng:'主任医师',goodAt:'毛发种植'},
|
|
|
|
|
// {imgSrc:'/static/public/doctor.png',name:'廖恒利医生',cyear:'16',bmen:'美容门诊部',zcheng:'主任医师',goodAt:'毛发种植'},
|
|
|
|
|
// {imgSrc:'/static/public/doctor.png',name:'廖恒利医生',cyear:'16',bmen:'美容门诊部',zcheng:'主任医师',goodAt:'毛发种植'},
|
|
|
|
|
// {imgSrc:'/static/public/doctor.png',name:'廖恒利医生',cyear:'16',bmen:'美容门诊部',zcheng:'主任医师',goodAt:'毛发种植'},
|
|
|
|
|
// {imgSrc:'/static/public/doctor.png',name:'廖恒利医生',cyear:'16',bmen:'美容门诊部',zcheng:'主任医师',goodAt:'毛发种植'},
|
|
|
|
|
],
|
|
|
|
|
showTop:false,
|
|
|
|
|
page:1,
|
|
|
|
|
size:20,
|
|
|
|
|
total:'',//总数
|
|
|
|
|
isZanw:true,
|
|
|
|
|
keyword:''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onPageScroll(e) {
|
|
|
|
|
e.scrollTop > 360 ? this.showTop = true : this.showTop = false
|
|
|
|
|
},
|
|
|
|
|
onReachBottom() {//触底事件
|
|
|
|
|
if(this.total!=this.dataList.length){
|
|
|
|
|
this.page++
|
|
|
|
|
this.checkDor()//调用自主预约列表事件
|
|
|
|
|
} else {
|
|
|
|
|
if(this.isZanw) this.$toolAll.tools.showToast('暂无更多列表','none',1000)
|
|
|
|
|
this.isZanw = false
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-08-22 08:53:12 +00:00
|
|
|
|
onShow() {
|
|
|
|
|
this.$toolAll.tools.isLogin()
|
|
|
|
|
},
|
2021-08-19 06:40:59 +00:00
|
|
|
|
onLoad() {
|
|
|
|
|
this.checkDor()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
checkDor(){//查询医生列表事件
|
|
|
|
|
this.$requst.post('user/doctor-list',{page:this.page,size:this.size,keyword:this.keyword}).then(res=>{
|
|
|
|
|
// console.log('医生列表:',res);
|
|
|
|
|
if(res.code==0){
|
|
|
|
|
if(this.page==1) this.dataList = []
|
|
|
|
|
if(res.data.list.length!=0){
|
|
|
|
|
this.total = res.data.total
|
|
|
|
|
res.data.list.forEach(item=>{
|
|
|
|
|
let newG = item.diseases
|
2021-08-24 00:54:50 +00:00
|
|
|
|
let ndeptName = ''
|
|
|
|
|
if(item.doctor_extra.dept_name==undefined || item.doctor_extra.dept_name=='') ndeptName = item.dept_name
|
|
|
|
|
else ndeptName = item.doctor_extra.dept_name
|
2021-08-19 06:40:59 +00:00
|
|
|
|
let dObj = {
|
|
|
|
|
id:item.id,
|
2021-08-24 00:54:50 +00:00
|
|
|
|
imgSrc:item.doctor_extra.headimg,//医生头像
|
2021-08-26 01:50:19 +00:00
|
|
|
|
name:item.doctor_extra.name,//医生姓名
|
2021-08-24 00:54:50 +00:00
|
|
|
|
cyear:parseFloat(item.doctor_extra.work_time),//工作年限
|
|
|
|
|
bmen:ndeptName,//部门
|
2021-08-19 06:40:59 +00:00
|
|
|
|
zcheng:'主任医师',
|
|
|
|
|
goodAt:item.diseases,
|
2021-08-24 00:54:50 +00:00
|
|
|
|
show_detail:item.doctor_extra.show_detail//是否可查看详情1是,0否
|
2021-08-19 06:40:59 +00:00
|
|
|
|
}
|
|
|
|
|
this.dataList.push(dObj)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},error=>{})
|
|
|
|
|
},
|
|
|
|
|
backTop(){//回到顶部事件
|
|
|
|
|
uni.pageScrollTo({
|
|
|
|
|
scrollTop: 0,
|
|
|
|
|
duration: 300
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
searchEv(){
|
|
|
|
|
this.checkDor()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
</style>
|