124 lines
4.3 KiB
Vue
124 lines
4.3 KiB
Vue
<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>
|
||
<view v-if="keyword!=''" class="fon24 col3">您搜索的内容暂无结果,换个关键词试试吧</view>
|
||
<view v-if="keyword==''" class="fon24 col3">暂无医生列表</view>
|
||
</view>
|
||
<!-- 返回顶部 -->
|
||
<!-- <back-top :showTop="showTop" @backTop="backTop"></back-top> -->
|
||
</view>
|
||
<!-- 底部客服 -->
|
||
<public-customer :nbottom="100"></public-customer>
|
||
</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
|
||
}
|
||
},
|
||
onShow() {
|
||
this.$toolAll.tools.isLogin()
|
||
},
|
||
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
|
||
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
|
||
let dObj = {
|
||
id:item.id,
|
||
imgSrc:item.doctor_extra.headimg,//医生头像
|
||
name:item.doctor_extra.name,//医生姓名
|
||
cyear:parseFloat(item.doctor_extra.work_time),//工作年限
|
||
bmen:ndeptName,//部门
|
||
zcheng:'主任医师',
|
||
goodAt:item.diseases,
|
||
show_detail:item.doctor_extra.show_detail//是否可查看详情1是,0否
|
||
}
|
||
this.dataList.push(dObj)
|
||
})
|
||
}
|
||
}
|
||
},error=>{})
|
||
},
|
||
backTop(){//回到顶部事件
|
||
uni.pageScrollTo({
|
||
scrollTop: 0,
|
||
duration: 300
|
||
});
|
||
},
|
||
searchEv(){
|
||
this.checkDor()
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
</style>
|