index.vue 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <view class="noDialysis">
  3. <view class="codeBox">
  4. <img class="imgTip" src="../../static/images/tip.png" alt="">
  5. <view class="tipTitle">温馨提示</view>
  6. <view class="tip">仅供使用了领透酷医云透析管理平台的</view>
  7. <view class="tip">透析中心患者使用我的透析</view>
  8. <view class="know" @click="back">知道了</view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. }
  17. },
  18. methods:{
  19. back(){
  20. uni.navigateBack()
  21. }
  22. }
  23. }
  24. </script>
  25. <style>
  26. page{
  27. height: 100%;
  28. }
  29. .noDialysis{
  30. background: #f7f7f7;
  31. height: 100%;
  32. overflow:hidden;
  33. }
  34. .codeBox{
  35. margin: 60rpx;
  36. height: 606rpx;
  37. background: #FFFFFF;
  38. box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  39. border-radius: 16rpx;
  40. text-align: center;
  41. padding-top: 40rpx;
  42. box-sizing: border-box;
  43. }
  44. .imgTip{
  45. width: 160rpx;
  46. height: 160rpx;
  47. text-align: center;
  48. margin: 0 auto;
  49. display: block;
  50. }
  51. .tipTitle{
  52. font-size: 40rpx;
  53. color: #000000;
  54. text-align: center;
  55. margin: 32rpx 0 38rpx;
  56. }
  57. .tip{
  58. font-size: 32rpx;
  59. color: #A3A3A3;
  60. text-align: center;
  61. }
  62. .know{
  63. width: 480rpx;
  64. height: 96rpx;
  65. background: linear-gradient(-90deg, #01BD5D, #28D87D);
  66. box-shadow: 0px 0px 24rpx 0px rgba(0, 198, 146, 0.4);
  67. border-radius: 48rpx;
  68. margin: 64rpx auto 0;
  69. font-size: 40rpx;
  70. color: #FFFFFF;
  71. text-align: center;
  72. line-height: 96rpx;
  73. }
  74. </style>