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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
| .tool-sign {
| position: fixed;
| top: 100px;
| left: 140px;
| width: 360px;
| height: 296px;
| background: #fff;
| border-radius: 8px;
| box-shadow: 0 0 4px 2px #dddddd;
|
| .header {
| position: relative;
| border-radius: 8px 8px 0 0;
| width: 100%;
| height: 36px;
| line-height: 36px;
| background-color: #2196f3;
|
| .title {
| padding-left: 10px;
|
| img {
| width: 20px;
| height: 20px;
| vertical-align: middle;
| }
|
| span {
| margin-left: 6px;
| display: inline-block;
| vertical-align: middle;
| color: #fff;
| }
| }
|
| .btn-box {
| position: absolute;
| right: 26px;
| top: 0;
| left: auto;
| bottom: 0;
| margin: auto;
| width: 16px;
| height: 16px;
| cursor: pointer;
| }
|
| .close {
| position: absolute;
| right: 6px;
| top: 0;
| left: auto;
| bottom: 0;
| margin: auto;
| width: 16px;
| height: 16px;
| cursor: pointer;
| }
| }
|
| .content {
| position: relative;
| width: 100%;
| height: calc(100% - 36px);
|
| .list-box {
| position: absolute;
| width: 100%;
| height: 100%;
|
| ul {
| padding: 6px 8px;
| height: 100%;
| box-sizing: border-box;
| overflow-y: auto;
|
|
| li {
| position: relative;
| border-bottom: 1px dashed #ccc;
| line-height: 40px;
| cursor: pointer;
|
| &>img {
| margin: 0 4px;
| width: 20px;
| vertical-align: middle;
| }
|
| .el-button {
| position: absolute;
| top: 0;
| right: 0;
| left: auto;
| bottom: 0;
| margin: auto;
| width: 28px;
| height: 28px;
| }
| }
| }
|
| .no-data {
| position: absolute;
| top: 58px;
| right: 0;
| bottom: auto;
| left: 0;
| margin: auto;
| width: 80px;
|
| img {
| width: 80px;
| height: 62px;
| }
|
| div {
| text-align: center;
| }
|
| }
| }
|
|
| }
| }
|
|