schangxiang@126.com
2025-05-20 cd8356ffd97d25981287d7e075cef498f7e6da58
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
.barContent {
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  .barHeader {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    .search {
      margin-left: auto;
    }
  }
  .barSearch {
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 6px;
    .searchBtn {
      color: #fff;
      height: 26px !important;
    }
  }
  .tableContent {
    width: 100%;
    height: calc(100% - 90px);
    .withoutBtn {
      color: #000;
    }
  }
  .add {
    width: 22px;
    height: 22px;
    background-image: url(@/assets/svg/add.svg);
    background-size: 20px 20px;
    background-position: center;
    background-color: #8b9ca4;
    border-radius: 4px;
    margin-right: 2px;
    cursor: pointer;
  }
}
 
// .without-picker-popper_content.is-light {
//   background-color: var(--el-color-white) !important;
//   border: 1px solid var(--el-datepicker-border-color) !important;
//   box-shadow: var(--el-box-shadow-light) !important;
//   padding: 0 !important;
//   max-width: inherit !important;
 
//   .cs-popper__arrow:before {
//     background: var(--el-color-white) !important;
//   }
// }