xinelu-applet-ui/pagesB/doctordetails/doctordetails.vue

176 lines
3.3 KiB
Vue
Raw Normal View History

2023-09-26 17:06:57 +08:00
<template>
2023-09-27 08:47:36 +08:00
<view class="app">
2024-06-25 18:25:50 +08:00
<image :src="require('@/pagesC/images/headsculpture.png')" mode=""></image>
2023-09-27 08:47:36 +08:00
<view class="name">
张三
</view>
<view class="position">
主任医师 肾内科
</view>
<view class="Affiliation">
2023-09-28 10:35:07 +08:00
<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'>
立即预约
2023-09-27 08:47:36 +08:00
</view>
2023-09-26 17:06:57 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2023-09-27 08:47:36 +08:00
2023-09-26 17:06:57 +08:00
};
2023-09-28 10:35:07 +08:00
},
methods: {
goconfirmation() {
uni.navigateTo({
url: "/pagesB/confirmation/confirmation"
})
},
2023-09-26 17:06:57 +08:00
}
}
</script>
<style lang="scss">
2023-10-12 15:54:10 +08:00
.app {
2023-09-27 08:47:36 +08:00
width: 96%;
2023-09-28 10:35:07 +08:00
margin: 16rpx auto;
2023-09-27 08:47:36 +08:00
color: #666666;
2023-09-28 10:35:07 +08:00
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;
}
}
2023-09-26 17:06:57 +08:00
2023-09-27 08:47:36 +08:00
image {
display: block;
width: 150rpx;
height: 150rpx;
2023-09-28 10:35:07 +08:00
margin: 0 auto;
padding-top: 20rpx;
2023-09-27 08:47:36 +08:00
}
.name {
text-align: center;
margin: 40rpx auto 0;
font-size: 32rpx;
font-weight: 500;
color: #000000;
}
.Affiliation {
text-align: center;
margin: 16rpx auto 0;
2023-09-28 10:35:07 +08:00
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;
}
2023-09-27 08:47:36 +08:00
}
.position {
text-align: center;
margin: 20rpx auto 0;
font-size: 22rpx;
}
}
</style>