12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <template>
- <view class="theme">
- <text class="title">请先选定一个主题进行追踪</text>
- <view class="content">
- <view class="item">
- <view class="left">
- <image src="../../../static/gean.png"></image>
- </view>
- <view class="right">
- <text>个案追踪</text>
- <text>评价诊疗服务的内涵质量以及对各种诊疗规范、临床路径等的执行力</text>
- </view>
- </view>
- <view class="item">
- <view class="left">
- <image src="../../../static/xitong.png"></image>
- </view>
- <view class="right">
- <text>系统追踪</text>
- <text>评价对各种质量与安全管理制度与流程的执行力、医院服务的连贯性及多学科综合的服务能力</text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- }
- }
- </script>
- <style lang="less">
- .theme {
- width: 100%;
- .title {
- padding-left: 25rpx;
- font-size: 30rpx;
- line-height: 45rpx;
- color: #292C33;
- }
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 25rpx;
- .item {
- display: flex;
- flex-direction: row;
- margin-top: 125rpx;
- border-radius: 15rpx;
- padding: 37.5rpx 50rpx;
- width: 625rpx;
- height: 187.5rpx;
- background: linear-gradient(270deg, #00CCBB 0%, #00CCAA 100%);
- box-shadow: 0 12.5rpx 12.5rpx 0 rgba(0, 204, 170, 0.2);
-
- .left {
- margin-right: 25rpx;
- image {
- width: 112.5rpx;
- height: 112.5rpx;
- }
- }
- .right {
- display: flex;
- flex-direction: column;
- text {
- font-size: 17.5rpx;
- line-height: 25rpx;
- color: #fff;
- &:first-child {
- margin-bottom: 5rpx;
- font-size: 30rpx;
- font-weight: bold;
- line-height: 45rpx;
- }
- }
- }
- &:last-child {
- background: linear-gradient(270deg, #6697FE 0%, #4980F2 100%);
- box-shadow: 0 12.5rpx 12.5rpx 0 rgba(73, 128, 242, 0.2);
- }
- }
- }
- }
- </style>
|