bhd-components 0.6.1 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{ab2a98d6.esm.es5.development.js → a0cd97b9.esm.es5.development.js} +1 -1
- package/dist/{b8edd934.esm.es5.production.js → e88a10a0.esm.es5.production.js} +1 -1
- package/dist/index.esm.es5.development.css +1711 -827
- package/dist/index.esm.es5.development.js +515 -384
- package/dist/index.esm.es5.production.css +1 -1
- package/dist/index.esm.es5.production.js +1 -1
- package/es2017/bhdSelect/index.d.ts +3 -0
- package/es2017/bhdSelect/index.js +18 -13
- package/es2017/bhdSelect/index.module.less +4 -1
- package/es2017/customerService/{contactsList/index.js → contactsList.js} +92 -77
- package/es2017/customerService/function.d.ts +1 -1
- package/es2017/customerService/function.js +10 -2
- package/es2017/customerService/{historyFun/index.d.ts → historyFun.d.ts} +0 -1
- package/es2017/customerService/{historyFun/index.js → historyFun.js} +62 -16
- package/es2017/customerService/index.d.ts +3 -3
- package/es2017/customerService/index.js +144 -81
- package/es2017/customerService/index.module.less +496 -5
- package/es2017/customerService/index2.module.less +1282 -0
- package/es2017/typings.d.ts +12 -0
- package/esm/bhdSelect/index.d.ts +3 -0
- package/esm/bhdSelect/index.js +18 -13
- package/esm/bhdSelect/index.module.less +4 -1
- package/esm/customerService/{contactsList/index.js → contactsList.js} +83 -66
- package/esm/customerService/function.d.ts +1 -1
- package/esm/customerService/function.js +10 -1
- package/esm/customerService/{historyFun/index.d.ts → historyFun.d.ts} +0 -1
- package/esm/customerService/{historyFun/index.js → historyFun.js} +64 -17
- package/esm/customerService/index.d.ts +3 -3
- package/esm/customerService/index.js +176 -111
- package/esm/customerService/index.module.less +496 -5
- package/esm/customerService/index2.module.less +1282 -0
- package/esm/typings.d.ts +12 -0
- package/package.json +1 -1
- package/es2017/customerService/contactsList/index.module.less +0 -206
- package/es2017/customerService/historyFun/index.module.less +0 -223
- package/esm/customerService/contactsList/index.module.less +0 -206
- package/esm/customerService/historyFun/index.module.less +0 -223
- /package/es2017/customerService/{contactsList/index.d.ts → contactsList.d.ts} +0 -0
- /package/esm/customerService/{contactsList/index.d.ts → contactsList.d.ts} +0 -0
|
@@ -1,223 +0,0 @@
|
|
|
1
|
-
@import "../../theme/variable.less";
|
|
2
|
-
// @color-text-primary: @color-background-info-base;
|
|
3
|
-
|
|
4
|
-
//历史记录11
|
|
5
|
-
.history_list {
|
|
6
|
-
position: absolute;
|
|
7
|
-
top: 0;
|
|
8
|
-
background: rgba(0, 0, 0, 0.3);
|
|
9
|
-
width: 100%;
|
|
10
|
-
height: 100%;
|
|
11
|
-
overflow: hidden;
|
|
12
|
-
|
|
13
|
-
.search_layout {
|
|
14
|
-
background: #fff;
|
|
15
|
-
position: absolute;
|
|
16
|
-
bottom: -500px;
|
|
17
|
-
width: 100%;
|
|
18
|
-
border-radius: 16px 16px 0px 0px;
|
|
19
|
-
overflow: hidden;
|
|
20
|
-
animation: mymove 1s forwards;
|
|
21
|
-
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
|
|
22
|
-
|
|
23
|
-
.title {
|
|
24
|
-
border-bottom: 1px solid @color-border-Tr;
|
|
25
|
-
font-size: 16px;
|
|
26
|
-
font-weight: 600;
|
|
27
|
-
line-height: 150%;
|
|
28
|
-
padding: 16px 24px;
|
|
29
|
-
display: flex;
|
|
30
|
-
justify-content: space-between;
|
|
31
|
-
svg {
|
|
32
|
-
font-size: 12px;
|
|
33
|
-
cursor: pointer;
|
|
34
|
-
opacity: 0.65;
|
|
35
|
-
font-weight: 300;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
.search_top {
|
|
39
|
-
position: relative;
|
|
40
|
-
margin: 16px 24px;
|
|
41
|
-
// margin-bottom: 0;
|
|
42
|
-
// display: flex;
|
|
43
|
-
// align-items: center;
|
|
44
|
-
// justify-content: space-between;
|
|
45
|
-
background-color: #fff;
|
|
46
|
-
|
|
47
|
-
input {
|
|
48
|
-
width: 100%;
|
|
49
|
-
height: 40px;
|
|
50
|
-
line-height: 40px;
|
|
51
|
-
border-radius: 2px;
|
|
52
|
-
border: 1px solid @color-border-secondary;
|
|
53
|
-
padding-left: 46px;
|
|
54
|
-
padding-right: 30px;
|
|
55
|
-
color: @color-text-Tr;
|
|
56
|
-
}
|
|
57
|
-
:global {
|
|
58
|
-
.anticon {
|
|
59
|
-
position: absolute;
|
|
60
|
-
top: 11px;
|
|
61
|
-
z-index: 1;
|
|
62
|
-
left: 14px;
|
|
63
|
-
font-size: 16px;
|
|
64
|
-
color: rgba(0, 0, 0, 0.65);
|
|
65
|
-
}
|
|
66
|
-
.guanbi_Close {
|
|
67
|
-
position: absolute;
|
|
68
|
-
top: 3px;
|
|
69
|
-
right: 38px;
|
|
70
|
-
font-size: 16px;
|
|
71
|
-
z-index: 1;
|
|
72
|
-
color: rgba(0, 0, 0, 0.65);
|
|
73
|
-
cursor: pointer;
|
|
74
|
-
svg {
|
|
75
|
-
font-size: 10px;
|
|
76
|
-
opacity: 0.65;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
svg {
|
|
81
|
-
opacity: 0.65;
|
|
82
|
-
font-weight: 300;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
.main_list:first-child {
|
|
86
|
-
margin-top: 0;
|
|
87
|
-
}
|
|
88
|
-
.main_list {
|
|
89
|
-
overflow: auto;
|
|
90
|
-
height: 510px;
|
|
91
|
-
&::-webkit-scrollbar {
|
|
92
|
-
background-color: #eaedf1;
|
|
93
|
-
background-color: transparent;
|
|
94
|
-
width: 4px;
|
|
95
|
-
height: 4px;
|
|
96
|
-
}
|
|
97
|
-
&::-webkit-scrollbar-thumb {
|
|
98
|
-
border-radius: 4px;
|
|
99
|
-
background-color: rgba(0, 0, 0, 0.25);
|
|
100
|
-
}
|
|
101
|
-
.list {
|
|
102
|
-
margin: 8px 24px;
|
|
103
|
-
padding: 8px;
|
|
104
|
-
// border-bottom: 1px solid @color-border-secondary;
|
|
105
|
-
margin-bottom: 17px;
|
|
106
|
-
position: relative;
|
|
107
|
-
cursor: pointer;
|
|
108
|
-
&:hover {
|
|
109
|
-
background-color: rgba(0, 0, 0, 0.04);
|
|
110
|
-
border-radius: 8px;
|
|
111
|
-
}
|
|
112
|
-
&::before {
|
|
113
|
-
content: "";
|
|
114
|
-
display: inline-block;
|
|
115
|
-
width: 100%;
|
|
116
|
-
height: 1px;
|
|
117
|
-
background-color: @color-border-secondary;
|
|
118
|
-
position: absolute;
|
|
119
|
-
bottom: -9px;
|
|
120
|
-
left: -1px;
|
|
121
|
-
}
|
|
122
|
-
.name {
|
|
123
|
-
display: flex;
|
|
124
|
-
justify-content: space-between;
|
|
125
|
-
align-items: center;
|
|
126
|
-
margin-bottom: 9px;
|
|
127
|
-
p {
|
|
128
|
-
color: @color-text-Tr;
|
|
129
|
-
font-size: 16px;
|
|
130
|
-
font-weight: 600;
|
|
131
|
-
line-height: 1.5;
|
|
132
|
-
}
|
|
133
|
-
.time {
|
|
134
|
-
font-size: 14px;
|
|
135
|
-
color: @color-text-tertiary;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
.con {
|
|
139
|
-
color: @color-text-Tr;
|
|
140
|
-
font-size: 14px;
|
|
141
|
-
font-weight: 400;
|
|
142
|
-
line-height: 150%;
|
|
143
|
-
overflow: hidden;
|
|
144
|
-
text-overflow: ellipsis;
|
|
145
|
-
-webkit-box-orient: vertical;
|
|
146
|
-
-webkit-line-clamp: 2;
|
|
147
|
-
display: -webkit-box;
|
|
148
|
-
|
|
149
|
-
max-height: 40px;
|
|
150
|
-
word-break: break-all;
|
|
151
|
-
span {
|
|
152
|
-
color: @color-text-primary;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
.no_data{
|
|
157
|
-
text-align: center;
|
|
158
|
-
margin-top: 130px;
|
|
159
|
-
img{
|
|
160
|
-
width: 160px;
|
|
161
|
-
}
|
|
162
|
-
p{
|
|
163
|
-
margin-top: 24px;
|
|
164
|
-
color: rgba(0, 0, 0, 0.45);
|
|
165
|
-
text-align: center;
|
|
166
|
-
font-size: 14px;
|
|
167
|
-
line-height: 100%; /* 14px */
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
@keyframes mymove {
|
|
173
|
-
from {
|
|
174
|
-
bottom: -500px;
|
|
175
|
-
}
|
|
176
|
-
to {
|
|
177
|
-
bottom: 0;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
@-webkit-keyframes mymove /*Safari and Chrome*/ {
|
|
182
|
-
from {
|
|
183
|
-
bottom: -500px;
|
|
184
|
-
}
|
|
185
|
-
to {
|
|
186
|
-
bottom: 0;
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
:global {
|
|
191
|
-
.anticon {
|
|
192
|
-
vertical-align: 0;
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
//全屏下的历史记录
|
|
197
|
-
.history_list_broadside {
|
|
198
|
-
width: 417px;
|
|
199
|
-
height: calc(100% - 48px);
|
|
200
|
-
right: 0;
|
|
201
|
-
top: 48px;
|
|
202
|
-
border-radius: 0;
|
|
203
|
-
background: transparent;
|
|
204
|
-
overflow: visible;
|
|
205
|
-
.search_layout {
|
|
206
|
-
height: 100%;
|
|
207
|
-
border-radius: 0;
|
|
208
|
-
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
|
|
209
|
-
.search_top{
|
|
210
|
-
margin: 16px;
|
|
211
|
-
}
|
|
212
|
-
.title{
|
|
213
|
-
padding: 16px;
|
|
214
|
-
}
|
|
215
|
-
.main_list {
|
|
216
|
-
height: calc(100% - 140px);
|
|
217
|
-
max-height: calc(100% - 140px);
|
|
218
|
-
.list{
|
|
219
|
-
margin: 8px 16px 17px;
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
}
|
|
File without changes
|
|
File without changes
|