theme.vue 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <view class="theme">
  3. <text class="title">请先选定一个主题进行追踪</text>
  4. <view class="content">
  5. <view class="item">
  6. <view class="left">
  7. <image src="../../../static/gean.png"></image>
  8. </view>
  9. <view class="right">
  10. <text>个案追踪</text>
  11. <text>评价诊疗服务的内涵质量以及对各种诊疗规范、临床路径等的执行力</text>
  12. </view>
  13. </view>
  14. <view class="item">
  15. <view class="left">
  16. <image src="../../../static/xitong.png"></image>
  17. </view>
  18. <view class="right">
  19. <text>系统追踪</text>
  20. <text>评价对各种质量与安全管理制度与流程的执行力、医院服务的连贯性及多学科综合的服务能力</text>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. data() {
  29. return {
  30. }
  31. }
  32. }
  33. </script>
  34. <style lang="less">
  35. .theme {
  36. width: 100%;
  37. .title {
  38. padding-left: 25rpx;
  39. font-size: 30rpx;
  40. line-height: 45rpx;
  41. color: #292C33;
  42. }
  43. .content {
  44. display: flex;
  45. flex-direction: column;
  46. align-items: center;
  47. margin-top: 25rpx;
  48. .item {
  49. display: flex;
  50. flex-direction: row;
  51. margin-top: 125rpx;
  52. border-radius: 15rpx;
  53. padding: 37.5rpx 50rpx;
  54. width: 625rpx;
  55. height: 187.5rpx;
  56. background: linear-gradient(270deg, #00CCBB 0%, #00CCAA 100%);
  57. box-shadow: 0 12.5rpx 12.5rpx 0 rgba(0, 204, 170, 0.2);
  58. .left {
  59. margin-right: 25rpx;
  60. image {
  61. width: 112.5rpx;
  62. height: 112.5rpx;
  63. }
  64. }
  65. .right {
  66. display: flex;
  67. flex-direction: column;
  68. text {
  69. font-size: 17.5rpx;
  70. line-height: 25rpx;
  71. color: #fff;
  72. &:first-child {
  73. margin-bottom: 5rpx;
  74. font-size: 30rpx;
  75. font-weight: bold;
  76. line-height: 45rpx;
  77. }
  78. }
  79. }
  80. &:last-child {
  81. background: linear-gradient(270deg, #6697FE 0%, #4980F2 100%);
  82. box-shadow: 0 12.5rpx 12.5rpx 0 rgba(73, 128, 242, 0.2);
  83. }
  84. }
  85. }
  86. }
  87. </style>