WXL (wul)
4 天以前 b6b7fb2b126b749b0bb3f0582036a74ff332d10e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// 全局样式
.follow-up-statistics,
.first-follow-up,
.second-follow-up,
.continued-care {
  .your-table-container {
    margin-top: 10px;
  }
 
  .button-zx {
    color: rgb(70, 204, 238);
  }
 
  // 美化合计行样式
  ::v-deep .el-table__footer {
    .el-table__cell {
      background-color: #f5f7fa;
      font-weight: 600;
      color: #409eff;
 
      .cell {
        font-weight: 600;
        color: #409eff;
      }
    }
  }
 
  // 内部表格合计行样式
  ::v-deep .inner-table .el-table__footer {
    .el-table__cell {
      background-color: #ecf5ff;
      font-weight: 500;
      color: #67c23a;
 
      .cell {
        font-weight: 500;
        color: #67c23a;
      }
    }
  }
 
  // 百分比字段特殊样式
  ::v-deep .el-table__footer .el-table__cell[data-field="followUpRate"] .cell,
  ::v-deep .el-table__footer .el-table__cell[data-field="rate"] .cell,
  ::v-deep .el-table__footer .el-table__cell[data-field="followUpRateAgain"] .cell,
  ::v-deep .el-table__footer .el-table__cell[data-field="completionRate"] .cell {
    color: #e6a23c !important;
    font-weight: 700 !important;
  }
 
  // 内层医生表格样式
  .inner-table {
    ::v-deep .el-table__header-wrapper {
      background-color: #f0f7ff !important;
 
      th {
        background-color: #f0f7ff !important;
      }
    }
 
    ::v-deep .el-table__body-wrapper {
      tr {
        background-color: #f9fbfe !important;
 
        &:hover {
          background-color: #e6f1ff !important;
        }
      }
    }
 
    ::v-deep .el-table--border {
      border-color: #d9e8ff !important;
 
      td, th {
        border-color: #d9e8ff !important;
      }
    }
  }
 
  /* 使行有手型指针 */
  ::v-deep .el-table__row {
    cursor: pointer;
  }
 
  /* 展开行样式 */
  ::v-deep .el-table__expanded-cell {
    padding: 10px 0 !important;
    background: #f8f8f8;
  }
}