xinelu-applet-ui/pagesB/doctordetails/doctordetails.vue
2023-10-12 15:54:10 +08:00

176 lines
3.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="app">
<image src="../../static/headsculpture.png" mode=""></image>
<view class="name">
张三
</view>
<view class="position">
主任医师 肾内科
</view>
<view class="Affiliation">
<view class="header">
三甲
</view>
<view class="title">
山东大学齐鲁医院
</view>
</view>
<view class="headertitle">
<view class="left">
</view>
<view class="right">
擅长
</view>
</view>
<view class="text">
从事内科临床教学及科研工作对肾脏内科常见病多发病的诊治疑难和危重病人抢救治疗方面积累了丰富的经验
</view>
<view class="headertitle" style="margin-top: 60rpx;">
<view class="left">
</view>
<view class="right">
医生介绍
</view>
</view>
<view class="text">
梁凯医学博士副主任医师山东大学齐鲁医
院内分泌科科主任助理兼任山东省医学会慢性病多
学科管理联合委员会委员兼秘书山东省医师协会内
分泌科医师分会秘书山东预防医学会甲状腺疾病防
治分会委员山东省研究型医院协会标准化代谢性疾
病管理分会委员
</view>
<view class="headertitle" style="margin-top: 60rpx;">
<view class="left">
</view>
<view class="right">
诊疗费
</view>
</view>
<view class="text">
18
</view>
<view class="btn" @tap='goconfirmation'>
立即预约
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
goconfirmation() {
uni.navigateTo({
url: "/pagesB/confirmation/confirmation"
})
},
}
}
</script>
<style lang="scss">
.app {
width: 96%;
margin: 16rpx auto;
color: #666666;
background-color: #fff;
padding-bottom: 70rpx;
.btn {
width: 80%;
margin: 90rpx auto;
height: 60rpx;
line-height: 60rpx;
text-align: center;
background: #26A888;
border-radius: 5rpx;
font-size: 31rpx;
font-weight: 500;
color: #FFFFFF;
}
.text {
line-height: 60rpx;
word-break: break-all;
width: 90%;
margin: 35rpx auto 0;
text-align: justify;
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.headertitle {
margin: 30rpx 0 0 30rpx;
display: flex;
align-items: center;
.left {
display: inline-block;
width: 10rpx;
height: 30rpx;
background: #26A888;
border-radius: 1rpx;
margin-right: 16rpx;
}
.right {
display: inline-block;
font-size: 30rpx;
font-weight: 500;
color: #26A888;
}
}
image {
display: block;
width: 150rpx;
height: 150rpx;
margin: 0 auto;
padding-top: 20rpx;
}
.name {
text-align: center;
margin: 40rpx auto 0;
font-size: 32rpx;
font-weight: 500;
color: #000000;
}
.Affiliation {
text-align: center;
margin: 16rpx auto 0;
font-size: 22rpx;
line-height: 30rpx;
.title {
display: inline-block;
}
.header {
margin-right: 10rpx;
display: inline-block;
color: #FFA115;
font-size: 20rpx;
width: 50rpx;
height: 30rpx;
background: #FFFFFF;
border: 2rpx solid #FFA115;
border-radius: 2rpx;
text-align: center;
}
}
.position {
text-align: center;
margin: 20rpx auto 0;
font-size: 22rpx;
}
}
</style>