|
@ -25,7 +25,6 @@ |
|
|
<view class="con"> |
|
|
<view class="con"> |
|
|
<!-- <view class="con over2 over4"> --> |
|
|
<!-- <view class="con over2 over4"> --> |
|
|
{{doctorInfo.doctor_info.doctor_detail}} |
|
|
{{doctorInfo.doctor_info.doctor_detail}} |
|
|
北京中医药大学硕士研究生,中国针灸学会会员,中国中医药信息学会专科专病诊疗分会理事,学会专科专病诊疗分会理事,擅长针药并用治疗内科疾病 |
|
|
|
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
@ -40,7 +39,10 @@ |
|
|
</text> |
|
|
</text> |
|
|
<img :src="cssUrl+'index_comback.svg'" v-if="item.hospital_pos" @click="toLocation(item)"> |
|
|
<img :src="cssUrl+'index_comback.svg'" v-if="item.hospital_pos" @click="toLocation(item)"> |
|
|
</view> |
|
|
</view> |
|
|
<view class="date over2 over4"> |
|
|
<view class="date over2 over4" v-if="item.plan==0"> |
|
|
|
|
|
停诊 |
|
|
|
|
|
</view> |
|
|
|
|
|
<view class="date over2 over4" v-else> |
|
|
出诊:{{ item.visit_time }} |
|
|
出诊:{{ item.visit_time }} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
@ -255,15 +257,24 @@ |
|
|
let indexofNum = workDatKeyArr.indexOf(item.depart_id); |
|
|
let indexofNum = workDatKeyArr.indexOf(item.depart_id); |
|
|
if(indexofNum > -1){ |
|
|
if(indexofNum > -1){ |
|
|
let departCurItem = workDateValArr[indexofNum]; |
|
|
let departCurItem = workDateValArr[indexofNum]; |
|
|
for(let key in departCurItem){ |
|
|
let flag = Array.isArray(departCurItem) |
|
|
let dateItem = departCurItem[key]; |
|
|
if(flag){ |
|
|
if(Number(dateItem.plan) === 0)continue |
|
|
item.visit_time = data.workdate_desc[item.depart_id] |
|
|
timeList.push(dateItem.week_desc+this.workPlan[dateItem.plan]) |
|
|
item.plan =0 |
|
|
item.visit_time = timeList.join('、') |
|
|
}else{ |
|
|
|
|
|
for(let key in departCurItem){ |
|
|
|
|
|
let dateItem = departCurItem[key]; |
|
|
|
|
|
if(Number(dateItem.plan) === 0)continue |
|
|
|
|
|
timeList.push(dateItem.week_desc+this.workPlan[dateItem.plan]) |
|
|
|
|
|
item.visit_time = timeList.join('、') |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
return item |
|
|
return item |
|
|
}) |
|
|
}) |
|
|
|
|
|
console.log(this.hospital_departs,'this.hospital_departs'); |
|
|
|
|
|
// }else{ |
|
|
|
|
|
|
|
|
// } |
|
|
// } |
|
|
}); |
|
|
}); |
|
|
}, |
|
|
}, |
|
|