ConversationEnd.vue 1.8 KB
<template>
  <view class="conversation">
    <view class="flexC endtext">问诊结束</view>
    <view class="endcard flexCCol">
      <view class="flexA">
        <image src="/static/images/auditsuccess.png" mode="aspectFill" />
        <view class="endtitle">感谢您的回复</view>
      </view>
      <view class="endcontent">感谢您的使用,问诊结束</view>
    </view>
  </view>
  <!-- <view class="endpo Zindex iosPadding">
    <view class="flexJ endbottom">
      <view>
        <view class="endbottom-title">问诊已结束</view>
        <view class="endbottom-sub">感谢您的使用</view>
      </view>
      <view class="bluetext">返回首页</view>
    </view>
  </view> -->
</template>

<script setup lang="ts"></script>

<style lang="scss" scoped>
.endpo {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
.conversation {
  box-sizing: border-box;
  padding: 0 24rpx;
  margin-bottom: 80rpx;
  .endtext {
    height: 44rpx;
    box-sizing: border-box;
    border-radius: 12rpx;
    background: #cbccd0;
    color: #ffffff;
    font-size: 24rpx;
    font-weight: 700;
    width: 158rpx;
    margin: 0 auto 56rpx;
  }
  .endcontent {
    color: #999999;
    font-size: 24rpx;
    margin-top: 10rpx;
  }
  .endtitle {
    color: #323233;
    font-size: 32rpx;
    font-weight: 700;
  }
  .endcard {
    border-radius: 24rpx;
    box-sizing: border-box;
    padding: 34rpx 0;
    width: 100%;
    background: linear-gradient(190deg, #e1fbff 7.34%, #fff 26.76%);
    image {
      width: 40rpx;
      height: 40rpx;
      margin-right: 16rpx;
    }
  }
}
.endbottom {
  box-sizing: border-box;
  padding: 10rpx 24rpx;
  background: #fff;
  &-title {
    color: #323233;
    font-size: 32rpx;
    font-weight: 700;
  }
  &-sub {
    color: #999999;
    font-size: 24rpx;
  }
}
</style>