123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- <template>
- <view class="main">
- <view class="header-content">
- <image src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/img/mybanner.png" style="width:100%;height:260rpx;"></image>
- </view>
- <view class="pr" style="z-index:2">
- <view class="plr15">
- <view class="bdr4 pb20">
- <view class="m-dpflex m-justify-start m-align-center" style="height: 165rpx;">
- <image binderror="_binderror" mode="scaleToFill" :src="info.avatar" style="width: 120rpx;height: 120rpx;border-radius: 50%;"></image>
- <text class="line1 f20 fb plr15 text-white">{{info.nickname}}</text>
- <view class="pr tr m-flex">
- <navigator hoverClass="none">
- <u-icon name="arrow-right" color="#fff" size="36"></u-icon>
- </navigator>
- </view>
- </view>
- <view class=" header-box" style="padding: 0 8rpx;background-color: #fff;border-radius: 16rpx;">
- <view class="cu-list menu">
- <view class="cu-item arrow" @click="">
- <view class="content">
- <text class="text-grey">证件照</text>
- </view>
- <view class="action">
- <text class="text-grey text-sm">未上传</text>
- </view>
- </view>
- <view class="cu-item arrow" @click="">
- <view class="content">
- <text class="text-grey">基础建档信息</text>
- </view>
- <view class="action">
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="fb f18 plr20" style="margin-bottom: 24rpx;">病例信息</view>
- <view class="margin-lr-sm">
- <view class="" style="border-radius: 16rpx;box-shadow: 0 0 50rpx 0 rgba(0, 0, 0, 0.1);">
- <view class="flex justify-between align-center bg-white" style="padding: 28rpx;border-radius: 16rpx;">
- <view class="jinxing">
- <text style="display: inline-block;width: 12rpx;height: 12rpx;border-radius: 50%;background-color:#EEAA3F;margin-right: 8rpx;"></text>
- <text>进行中</text>
- </view>
- <text class="phonezi">电话咨询</text>
- </view>
- <view class="" style="background: #FBFBFB;padding: 28rpx; border-radius: 16rpx;">
- <view class="nametaile flex align-center">
- <text>李英林</text>
- <text class="text_style">30年经验</text>
- <text class="text_style">优秀医师</text>
- </view>
- <view class="textstyle margin-top-xs">
- 科室:<text style="color: #333333;">外科 主任医师</text>
- </view>
- <view class="textstyle margin-top-xs">
- 编号:<text style="color: #333333;">ZX202000010</text>
- </view>
- <view class="textstyle margin-top-xs">
- 咨询时间:<text style="color: #333333;">2020.09.01 11:12:09</text>
- </view>
- </view>
- </view>
- </view>
- <view class="fb f18 plr20" style="margin-bottom: 24rpx;margin-top: 40rpx;">服务包</view>
- </view>
- </template>
- <script>
- export default {
- onLoad(options) {
- this.id = options.id
- },
- onShow() {
- },
- mounted() {
- this.getarchivesInfo()
- },
- data() {
- return {
- id: "",
- infodata: ""
- }
- },
- methods: {
- getarchivesInfo: async function() {
- let res = await this.$request.post("/api/v1/patient/patientDetail", {
- patient_id: this.id
- })
- console.log(res)
- if (res.status == 0) {
- this.infodata = res.data
- }
- }
- }
- };
- </script>
- <style scoped lang="scss">
- @import url("../index/mine.css");
- .main {}
- .text_style {
- font-weight: 400;
- margin-left: 15rpx;
- background-color: #E5F5FF;
- color: #0B73B9;
- width: 100rpx;
- height: 28rpx;
- font-size: 20rpx;
- border-radius: 10rpx;
- text-align: center;
- align-items: center;
- }
- .nametaile {
- font-size: 30rpx;
- font-weight: 500;
- color: #333333;
- }
- .textstyle {
- font-size: 26rpx;
- color: #666666;
- font-weight: 400;
- }
- .phonezi {
- width: 160rpx;
- height: 54rpx;
- background: #F6F6F6;
- border-radius: 27rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .jinxing {
- height: 30rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #EEAA3F;
- display: flex;
- align-items: center;
- }
- .header-content {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- width: 100%;
- z-index: -1;
- overflow: hidden;
- box-sizing: border-box;
- }
- .header-box {
- box-shadow: 0px 8rpx 34rpx -6rpx rgba(248, 151, 164, 0.13);
- }
- .header-img {
- width: 36rpx;
- height: 36rpx;
- }
- .tip {
- position: absolute;
- top: 0;
- right: 20%;
- bottom: 0;
- background-color: red;
- width: 12rpx;
- height: 12rpx;
- border-radius: 50%;
- }
- .msg {
- top: -3rpx;
- right: -9rpx;
- }
- swiper {
- height: 320rpx;
- }
- .swiper-wrapper {
- padding: 0 10rpx;
- box-sizing: border-box;
- }
- .swiper-item {
- width: 100%;
- height: 300rpx;
- box-shadow: 0 26rpx 40rpx 0 rgba(255, 255, 255, 0.31);
- background: url("http://file.supermm.me/miniProgram/images/personal/bg_doc.png") no-repeat bottom center;
- }
- .dots {
- position: absolute;
- left: 0;
- right: 0;
- bottom: -40rpx;
- display: flex;
- justify-content: center;
- }
- .dots .dot {
- margin: 0 8rpx;
- width: 14rpx;
- height: 14rpx;
- background: #E4E4E4;
- border-radius: 8rpx;
- transition: all .6s;
- }
- .dots .dot.active {
- width: 24rpx;
- background: rgb(153, 153, 153);
- }
- .game-wrap {
- position: relative;
- width: 100%;
- height: 100%;
- overflow: hidden;
- box-sizing: border-box;
- }
- .game-item {
- height: 100%;
- background: url("https://file.supermm.me/h5/wechat-h5/integral/personeBg001.jpg") no-repeat;
- background-size: 100% 100%;
- background-position: center center;
- border-radius: 100rpx;
- }
- </style>
|