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

63 lines
895 B
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">
<image src="../../static/headsculpture.png" mode=""></image>
<view class="name">
张三
</view>
<view class="position">
主任医师 肾内科
</view>
<view class="Affiliation">
山东大学齐鲁医院
</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
};
}
}
</script>
<style lang="scss">
2023-09-27 08:47:36 +08:00
page {
background-color: #F4F5F7;
}
.app {
width: 96%;
margin: 20rpx auto;
color: #666666;
2023-09-26 17:06:57 +08:00
2023-09-27 08:47:36 +08:00
image {
display: block;
width: 150rpx;
height: 150rpx;
margin: 40rpx auto 0;
}
.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: 20rpx;
}
.position {
text-align: center;
margin: 20rpx auto 0;
font-size: 22rpx;
}
}
</style>