tplus-portaltouch 1.24.5 → 1.26.2
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/api/ModifyPassApi.js.map +1 -1
- package/dist/components/dutyandsettle/dutysettlebill.js +2 -1
- package/dist/components/dutyandsettle/dutysettlebill.js.map +1 -1
- package/dist/components/dutyandsettle/dutysettlehistory.js +16 -72
- package/dist/components/dutyandsettle/dutysettlehistory.js.map +1 -1
- package/dist/components/dutyandsettle/index.js.map +1 -1
- package/dist/components/dutyandsettle/tipContent.js.map +1 -1
- package/dist/components/header/customUse.js.map +1 -1
- package/dist/components/header/headContent.js.map +1 -1
- package/dist/components/header/index.js +13 -13
- package/dist/components/header/index.js.map +1 -1
- package/dist/components/header/style.less +331 -331
- package/dist/components/header/vertical-touch.js.map +1 -1
- package/dist/components/header/vertical-touch.less +212 -212
- package/dist/containers/Main/index.js.map +1 -1
- package/dist/dutyService/index.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/middleWare/index.js.map +1 -1
- package/dist/modalRouter/StaticRouter.js.map +1 -1
- package/dist/pages/Modal/style.less +5 -5
- package/dist/pages/Portal/PortalPage.less +661 -655
- package/dist/pages/Portal/data.js +11 -8
- package/dist/pages/Portal/data.js.map +1 -1
- package/dist/pages/Portal/horizontalPadPortal.js +9 -18
- package/dist/pages/Portal/horizontalPadPortal.js.map +1 -1
- package/dist/pages/Portal/horizontalSunMiPortal.js.map +1 -1
- package/dist/pages/Portal/index.js +6 -6
- package/dist/pages/Portal/index.js.map +1 -1
- package/dist/pages/Portal/verticalPortal.js.map +1 -1
- package/dist/pages/dutyandsettle/AuthProcess.js.map +1 -1
- package/dist/pages/dutyandsettle/index.js.map +1 -1
- package/dist/pages/dutyandsettle/index.less +575 -575
- package/dist/pages/dutyandsettle/offDuty.js +55 -106
- package/dist/pages/dutyandsettle/offDuty.js.map +1 -1
- package/dist/pages/dutyandsettle/onDialy.js.map +1 -1
- package/dist/pages/dutyandsettle/onDuty.js.map +1 -1
- package/dist/pages/dutyandsettle/onUnDaily.js.map +1 -1
- package/dist/pages/dutyandsettle/settleDialy.js.map +1 -1
- package/dist/pages/index.js.map +1 -1
- package/dist/pages/modifyPass/index.js.map +1 -1
- package/dist/pages/modifyPass/style.less +75 -75
- package/dist/pages/notFound/index.js.map +1 -1
- package/dist/pages/notFound/style.less +4 -4
- package/dist/stores/ModalRouter.js.map +1 -1
- package/dist/stores/ModifyPassStore.js +0 -0
- package/dist/stores/ModifyPassStore.js.map +1 -1
- package/dist/stores/PortalStore.js +5 -5
- package/dist/stores/PortalStore.js.map +1 -1
- package/dist/stores/PosLoginStore.js.map +1 -1
- package/dist/stores/billHistoryStore.js.map +1 -1
- package/dist/stores/dutySettleStore.js.map +1 -1
- package/dist/stores/index.js.map +1 -1
- package/dist/utils/PrintProcess.js +10 -10
- package/dist/utils/PrintProcess.js.map +1 -1
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/networkCheck.js.map +1 -1
- package/package.json +37 -37
- package/tsconfig.json +14 -14
|
@@ -1,331 +1,331 @@
|
|
|
1
|
-
.pos-header {
|
|
2
|
-
background-color: #fff;
|
|
3
|
-
box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.03);
|
|
4
|
-
position: relative;
|
|
5
|
-
z-index: 99;
|
|
6
|
-
padding: 0px 18px;
|
|
7
|
-
-webkit-user-select: none;
|
|
8
|
-
-webkit-app-region: drag;
|
|
9
|
-
.header-triangle-down {
|
|
10
|
-
width: 0;
|
|
11
|
-
height: 0;
|
|
12
|
-
border-left: 6px solid transparent;
|
|
13
|
-
border-right: 6px solid transparent;
|
|
14
|
-
border-top: 6px solid #c8c8cd;
|
|
15
|
-
position: absolute;
|
|
16
|
-
top: 50%;
|
|
17
|
-
right: 5px;
|
|
18
|
-
margin-top: -4px;
|
|
19
|
-
}
|
|
20
|
-
&.isPortal-head {
|
|
21
|
-
background-color: transparent;
|
|
22
|
-
box-shadow: none;
|
|
23
|
-
.head-content-left {
|
|
24
|
-
.store-name, .business-name, .network-status, .store-code {
|
|
25
|
-
color: #fff;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
.head-content-right {
|
|
29
|
-
.t_loginbtn_wrapper{
|
|
30
|
-
margin-right: 10px;
|
|
31
|
-
}
|
|
32
|
-
.header-info-render-content, .time {
|
|
33
|
-
color: #fff;
|
|
34
|
-
position: relative;
|
|
35
|
-
div{
|
|
36
|
-
span{
|
|
37
|
-
float: right;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
.header-triangle-down{
|
|
42
|
-
border-top: 6px solid #fff;
|
|
43
|
-
}
|
|
44
|
-
.header-info-render-content{
|
|
45
|
-
-webkit-app-region: no-drag;
|
|
46
|
-
.store-info-item{
|
|
47
|
-
color: #fff;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
.head-content-control{
|
|
52
|
-
.iconfont{
|
|
53
|
-
color: #fff;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
.head-content-left {
|
|
58
|
-
float: left;
|
|
59
|
-
height: 100%;
|
|
60
|
-
& > div {
|
|
61
|
-
float: left;
|
|
62
|
-
}
|
|
63
|
-
.business-name {
|
|
64
|
-
font-size: 16px;
|
|
65
|
-
color: #333333;
|
|
66
|
-
overflow: hidden;
|
|
67
|
-
text-overflow:ellipsis;
|
|
68
|
-
white-space: nowrap;
|
|
69
|
-
}
|
|
70
|
-
.business-logo{
|
|
71
|
-
margin-right: 10px;
|
|
72
|
-
height: 100%;
|
|
73
|
-
flex-direction: column;
|
|
74
|
-
justify-content: center;
|
|
75
|
-
display: flex;
|
|
76
|
-
.example-logo{
|
|
77
|
-
height: 24px;
|
|
78
|
-
display: block;
|
|
79
|
-
margin-right: 10px;
|
|
80
|
-
-webkit-app-region: no-drag;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
.store-name, .store-code, .network-status {
|
|
84
|
-
font-size: 14px;
|
|
85
|
-
color: #333333;
|
|
86
|
-
margin-left: 10px;
|
|
87
|
-
.network-state-icon{
|
|
88
|
-
&.icon-WiFi{
|
|
89
|
-
font-size: 13px;
|
|
90
|
-
}
|
|
91
|
-
&.icon-wuwangluo{
|
|
92
|
-
position: relative;
|
|
93
|
-
top: -2px;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
.store-name{
|
|
98
|
-
position: relative;
|
|
99
|
-
padding-right: 24px;
|
|
100
|
-
cursor: pointer;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
.head-content-right {
|
|
104
|
-
float: right;
|
|
105
|
-
height: 100%;
|
|
106
|
-
& > div {
|
|
107
|
-
float: right;
|
|
108
|
-
height: 100%;
|
|
109
|
-
&.store-info-item{
|
|
110
|
-
color: #333;
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
.time {
|
|
114
|
-
font-size: 12px;
|
|
115
|
-
color: #333;
|
|
116
|
-
margin-right: 10px;
|
|
117
|
-
line-height: 60px;
|
|
118
|
-
span{
|
|
119
|
-
font-size: 21px;
|
|
120
|
-
display: inline-block;
|
|
121
|
-
margin-left: 12px;
|
|
122
|
-
width: 98px;
|
|
123
|
-
text-align: left;
|
|
124
|
-
float: right;
|
|
125
|
-
}
|
|
126
|
-
.head-calendar-icon {
|
|
127
|
-
margin: 0px 8px 0px 10px;
|
|
128
|
-
position: relative;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
.soltAvatar{
|
|
132
|
-
content: '';
|
|
133
|
-
display: block;
|
|
134
|
-
width: 30px;
|
|
135
|
-
height: 30px;
|
|
136
|
-
position: absolute;
|
|
137
|
-
top: 50%;
|
|
138
|
-
margin-top: -15px;
|
|
139
|
-
left: 0;
|
|
140
|
-
background-size: contain;
|
|
141
|
-
}
|
|
142
|
-
.header-info-render-content{
|
|
143
|
-
padding-right: 25px;
|
|
144
|
-
cursor: pointer;
|
|
145
|
-
position: relative;
|
|
146
|
-
.store-info-item{
|
|
147
|
-
color: #333;
|
|
148
|
-
.biller{
|
|
149
|
-
position: relative;
|
|
150
|
-
padding-left: 38px;
|
|
151
|
-
&:before{
|
|
152
|
-
background-image: url("https://newretail.static.chanjet.com/staff-avtar1.png");
|
|
153
|
-
.soltAvatar;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
span{
|
|
157
|
-
padding-left: 10px;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
* {
|
|
161
|
-
font-size: 12px;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
.voucher-head-guide{
|
|
165
|
-
position: relative;
|
|
166
|
-
padding-left: 38px;
|
|
167
|
-
&:before{
|
|
168
|
-
background-image: url("https://newretail.static.chanjet.com/staff-avtar2.png");
|
|
169
|
-
.soltAvatar;
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
.head-content-control{
|
|
174
|
-
float: right;
|
|
175
|
-
height: 100%;
|
|
176
|
-
width: 108px;
|
|
177
|
-
position: relative;
|
|
178
|
-
margin-left: 10px;
|
|
179
|
-
display: flex;
|
|
180
|
-
justify-content: space-evenly;
|
|
181
|
-
&:before{
|
|
182
|
-
//content: '';
|
|
183
|
-
display: block;
|
|
184
|
-
height: 16px;
|
|
185
|
-
background: #DAE3E1;
|
|
186
|
-
position: absolute;
|
|
187
|
-
left: 0;
|
|
188
|
-
top: 50%;
|
|
189
|
-
margin-top: -8px;
|
|
190
|
-
width: 1px;
|
|
191
|
-
}
|
|
192
|
-
.iconfont{
|
|
193
|
-
padding: 0 10px;
|
|
194
|
-
color: #333;
|
|
195
|
-
cursor: pointer;
|
|
196
|
-
-webkit-app-region: no-drag;
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
._portal-header-dropdown{
|
|
201
|
-
top: 50px !important;
|
|
202
|
-
min-width: 100px !important;
|
|
203
|
-
z-index: 999;
|
|
204
|
-
&:before {
|
|
205
|
-
content: '';
|
|
206
|
-
width: 0;
|
|
207
|
-
height: 0;
|
|
208
|
-
border-left: 6px solid transparent;
|
|
209
|
-
border-right: 6px solid transparent;
|
|
210
|
-
border-bottom: 6px solid rgba(255,255,255,.7);
|
|
211
|
-
position: absolute;
|
|
212
|
-
right: 4px;
|
|
213
|
-
top: -1px;
|
|
214
|
-
}
|
|
215
|
-
.u-dropdown-menu{
|
|
216
|
-
background-color: rgba(255,255,255,.7);
|
|
217
|
-
box-shadow: 0 4px 5px rgba(0,0,0,.1);
|
|
218
|
-
.u-dropdown-menu-item{
|
|
219
|
-
height: 32px;
|
|
220
|
-
line-height: 32px;
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
.u-dropdown-menu-item{
|
|
224
|
-
padding-left: 36px;
|
|
225
|
-
i {
|
|
226
|
-
color: #C07800;
|
|
227
|
-
font-size: 14px;
|
|
228
|
-
position: absolute;
|
|
229
|
-
left: 10px;
|
|
230
|
-
top: 0px;
|
|
231
|
-
line-height: 34px;
|
|
232
|
-
}
|
|
233
|
-
span {
|
|
234
|
-
color: #902A2A;
|
|
235
|
-
width: 50px;
|
|
236
|
-
display: block;
|
|
237
|
-
text-align-last: justify;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
&.inside-header{
|
|
241
|
-
&:before{
|
|
242
|
-
border-bottom: 6px solid rgba(0, 0, 0, 0.65)
|
|
243
|
-
}
|
|
244
|
-
.u-dropdown-menu{
|
|
245
|
-
background-color: rgba(0,0,0,.65);
|
|
246
|
-
.u-dropdown-menu-item{
|
|
247
|
-
i, span {
|
|
248
|
-
color: #fff;
|
|
249
|
-
}
|
|
250
|
-
&.u-dropdown-menu-item-selected{
|
|
251
|
-
background-color: rgba(0,0,0,.3);
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
.u-dropdown-menu-item-active{
|
|
255
|
-
background-color: rgba(0,0,0,.3);
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
.head-business-tip{
|
|
261
|
-
.tooltip-arrow{
|
|
262
|
-
border-bottom-color: #fff !important;
|
|
263
|
-
}
|
|
264
|
-
.tooltip-inner{
|
|
265
|
-
background-color: #fff;
|
|
266
|
-
box-shadow: 0 2px 8px 0 rgba(0,0,0,0.15);
|
|
267
|
-
div{
|
|
268
|
-
padding: 0 10px;
|
|
269
|
-
h1{
|
|
270
|
-
line-height: 32px;
|
|
271
|
-
font-size: 14px;
|
|
272
|
-
color: #333;
|
|
273
|
-
font-weight: normal;
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
.pos-more-info-container {
|
|
278
|
-
&>h1{
|
|
279
|
-
white-space: nowrap;
|
|
280
|
-
overflow: hidden;
|
|
281
|
-
text-overflow: ellipsis;
|
|
282
|
-
}
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
.close-app-loading{
|
|
286
|
-
background-color: rgba(0, 0, 0, 0.8);
|
|
287
|
-
.close-app-spin{
|
|
288
|
-
width: 150px;
|
|
289
|
-
.tplus-spin{
|
|
290
|
-
margin: 0 auto;
|
|
291
|
-
width: 36px;
|
|
292
|
-
}
|
|
293
|
-
h1 {
|
|
294
|
-
color: rgba(255,255,255,.8);
|
|
295
|
-
font-size: 13px;
|
|
296
|
-
margin-top: 20px;
|
|
297
|
-
text-align: center;
|
|
298
|
-
letter-spacing: 1px;
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
@media (max-width: 1080px){
|
|
304
|
-
.business-name {
|
|
305
|
-
max-width: 130px;
|
|
306
|
-
}
|
|
307
|
-
.head-content-right{
|
|
308
|
-
.time {
|
|
309
|
-
div{
|
|
310
|
-
position: relative;
|
|
311
|
-
line-height: 86px;
|
|
312
|
-
padding-right: 10px;
|
|
313
|
-
height: 100%;
|
|
314
|
-
}
|
|
315
|
-
span{
|
|
316
|
-
position: absolute;
|
|
317
|
-
left: 0px;
|
|
318
|
-
top: 4px;
|
|
319
|
-
line-height: normal;
|
|
320
|
-
margin-left: 0 !important;
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
}
|
|
325
|
-
@media (max-width: 920px){
|
|
326
|
-
.head-content-right{
|
|
327
|
-
.time {
|
|
328
|
-
display: none;
|
|
329
|
-
}
|
|
330
|
-
}
|
|
331
|
-
}
|
|
1
|
+
.pos-header {
|
|
2
|
+
background-color: #fff;
|
|
3
|
+
box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.03);
|
|
4
|
+
position: relative;
|
|
5
|
+
z-index: 99;
|
|
6
|
+
padding: 0px 18px;
|
|
7
|
+
-webkit-user-select: none;
|
|
8
|
+
-webkit-app-region: drag;
|
|
9
|
+
.header-triangle-down {
|
|
10
|
+
width: 0;
|
|
11
|
+
height: 0;
|
|
12
|
+
border-left: 6px solid transparent;
|
|
13
|
+
border-right: 6px solid transparent;
|
|
14
|
+
border-top: 6px solid #c8c8cd;
|
|
15
|
+
position: absolute;
|
|
16
|
+
top: 50%;
|
|
17
|
+
right: 5px;
|
|
18
|
+
margin-top: -4px;
|
|
19
|
+
}
|
|
20
|
+
&.isPortal-head {
|
|
21
|
+
background-color: transparent;
|
|
22
|
+
box-shadow: none;
|
|
23
|
+
.head-content-left {
|
|
24
|
+
.store-name, .business-name, .network-status, .store-code {
|
|
25
|
+
color: #fff;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
.head-content-right {
|
|
29
|
+
.t_loginbtn_wrapper{
|
|
30
|
+
margin-right: 10px;
|
|
31
|
+
}
|
|
32
|
+
.header-info-render-content, .time {
|
|
33
|
+
color: #fff;
|
|
34
|
+
position: relative;
|
|
35
|
+
div{
|
|
36
|
+
span{
|
|
37
|
+
float: right;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
.header-triangle-down{
|
|
42
|
+
border-top: 6px solid #fff;
|
|
43
|
+
}
|
|
44
|
+
.header-info-render-content{
|
|
45
|
+
-webkit-app-region: no-drag;
|
|
46
|
+
.store-info-item{
|
|
47
|
+
color: #fff;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
.head-content-control{
|
|
52
|
+
.iconfont{
|
|
53
|
+
color: #fff;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
.head-content-left {
|
|
58
|
+
float: left;
|
|
59
|
+
height: 100%;
|
|
60
|
+
& > div {
|
|
61
|
+
float: left;
|
|
62
|
+
}
|
|
63
|
+
.business-name {
|
|
64
|
+
font-size: 16px;
|
|
65
|
+
color: #333333;
|
|
66
|
+
overflow: hidden;
|
|
67
|
+
text-overflow:ellipsis;
|
|
68
|
+
white-space: nowrap;
|
|
69
|
+
}
|
|
70
|
+
.business-logo{
|
|
71
|
+
margin-right: 10px;
|
|
72
|
+
height: 100%;
|
|
73
|
+
flex-direction: column;
|
|
74
|
+
justify-content: center;
|
|
75
|
+
display: flex;
|
|
76
|
+
.example-logo{
|
|
77
|
+
height: 24px;
|
|
78
|
+
display: block;
|
|
79
|
+
margin-right: 10px;
|
|
80
|
+
-webkit-app-region: no-drag;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
.store-name, .store-code, .network-status {
|
|
84
|
+
font-size: 14px;
|
|
85
|
+
color: #333333;
|
|
86
|
+
margin-left: 10px;
|
|
87
|
+
.network-state-icon{
|
|
88
|
+
&.icon-WiFi{
|
|
89
|
+
font-size: 13px;
|
|
90
|
+
}
|
|
91
|
+
&.icon-wuwangluo{
|
|
92
|
+
position: relative;
|
|
93
|
+
top: -2px;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
.store-name{
|
|
98
|
+
position: relative;
|
|
99
|
+
padding-right: 24px;
|
|
100
|
+
cursor: pointer;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
.head-content-right {
|
|
104
|
+
float: right;
|
|
105
|
+
height: 100%;
|
|
106
|
+
& > div {
|
|
107
|
+
float: right;
|
|
108
|
+
height: 100%;
|
|
109
|
+
&.store-info-item{
|
|
110
|
+
color: #333;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
.time {
|
|
114
|
+
font-size: 12px;
|
|
115
|
+
color: #333;
|
|
116
|
+
margin-right: 10px;
|
|
117
|
+
line-height: 60px;
|
|
118
|
+
span{
|
|
119
|
+
font-size: 21px;
|
|
120
|
+
display: inline-block;
|
|
121
|
+
margin-left: 12px;
|
|
122
|
+
width: 98px;
|
|
123
|
+
text-align: left;
|
|
124
|
+
float: right;
|
|
125
|
+
}
|
|
126
|
+
.head-calendar-icon {
|
|
127
|
+
margin: 0px 8px 0px 10px;
|
|
128
|
+
position: relative;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
.soltAvatar{
|
|
132
|
+
content: '';
|
|
133
|
+
display: block;
|
|
134
|
+
width: 30px;
|
|
135
|
+
height: 30px;
|
|
136
|
+
position: absolute;
|
|
137
|
+
top: 50%;
|
|
138
|
+
margin-top: -15px;
|
|
139
|
+
left: 0;
|
|
140
|
+
background-size: contain;
|
|
141
|
+
}
|
|
142
|
+
.header-info-render-content{
|
|
143
|
+
padding-right: 25px;
|
|
144
|
+
cursor: pointer;
|
|
145
|
+
position: relative;
|
|
146
|
+
.store-info-item{
|
|
147
|
+
color: #333;
|
|
148
|
+
.biller{
|
|
149
|
+
position: relative;
|
|
150
|
+
padding-left: 38px;
|
|
151
|
+
&:before{
|
|
152
|
+
background-image: url("https://newretail.static.chanjet.com/staff-avtar1.png");
|
|
153
|
+
.soltAvatar;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
span{
|
|
157
|
+
padding-left: 10px;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
* {
|
|
161
|
+
font-size: 12px;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
.voucher-head-guide{
|
|
165
|
+
position: relative;
|
|
166
|
+
padding-left: 38px;
|
|
167
|
+
&:before{
|
|
168
|
+
background-image: url("https://newretail.static.chanjet.com/staff-avtar2.png");
|
|
169
|
+
.soltAvatar;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
.head-content-control{
|
|
174
|
+
float: right;
|
|
175
|
+
height: 100%;
|
|
176
|
+
width: 108px;
|
|
177
|
+
position: relative;
|
|
178
|
+
margin-left: 10px;
|
|
179
|
+
display: flex;
|
|
180
|
+
justify-content: space-evenly;
|
|
181
|
+
&:before{
|
|
182
|
+
//content: '';
|
|
183
|
+
display: block;
|
|
184
|
+
height: 16px;
|
|
185
|
+
background: #DAE3E1;
|
|
186
|
+
position: absolute;
|
|
187
|
+
left: 0;
|
|
188
|
+
top: 50%;
|
|
189
|
+
margin-top: -8px;
|
|
190
|
+
width: 1px;
|
|
191
|
+
}
|
|
192
|
+
.iconfont{
|
|
193
|
+
padding: 0 10px;
|
|
194
|
+
color: #333;
|
|
195
|
+
cursor: pointer;
|
|
196
|
+
-webkit-app-region: no-drag;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
._portal-header-dropdown{
|
|
201
|
+
top: 50px !important;
|
|
202
|
+
min-width: 100px !important;
|
|
203
|
+
z-index: 999;
|
|
204
|
+
&:before {
|
|
205
|
+
content: '';
|
|
206
|
+
width: 0;
|
|
207
|
+
height: 0;
|
|
208
|
+
border-left: 6px solid transparent;
|
|
209
|
+
border-right: 6px solid transparent;
|
|
210
|
+
border-bottom: 6px solid rgba(255,255,255,.7);
|
|
211
|
+
position: absolute;
|
|
212
|
+
right: 4px;
|
|
213
|
+
top: -1px;
|
|
214
|
+
}
|
|
215
|
+
.u-dropdown-menu{
|
|
216
|
+
background-color: rgba(255,255,255,.7);
|
|
217
|
+
box-shadow: 0 4px 5px rgba(0,0,0,.1);
|
|
218
|
+
.u-dropdown-menu-item{
|
|
219
|
+
height: 32px;
|
|
220
|
+
line-height: 32px;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
.u-dropdown-menu-item{
|
|
224
|
+
padding-left: 36px;
|
|
225
|
+
i {
|
|
226
|
+
color: #C07800;
|
|
227
|
+
font-size: 14px;
|
|
228
|
+
position: absolute;
|
|
229
|
+
left: 10px;
|
|
230
|
+
top: 0px;
|
|
231
|
+
line-height: 34px;
|
|
232
|
+
}
|
|
233
|
+
span {
|
|
234
|
+
color: #902A2A;
|
|
235
|
+
width: 50px;
|
|
236
|
+
display: block;
|
|
237
|
+
text-align-last: justify;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
&.inside-header{
|
|
241
|
+
&:before{
|
|
242
|
+
border-bottom: 6px solid rgba(0, 0, 0, 0.65)
|
|
243
|
+
}
|
|
244
|
+
.u-dropdown-menu{
|
|
245
|
+
background-color: rgba(0,0,0,.65);
|
|
246
|
+
.u-dropdown-menu-item{
|
|
247
|
+
i, span {
|
|
248
|
+
color: #fff;
|
|
249
|
+
}
|
|
250
|
+
&.u-dropdown-menu-item-selected{
|
|
251
|
+
background-color: rgba(0,0,0,.3);
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
.u-dropdown-menu-item-active{
|
|
255
|
+
background-color: rgba(0,0,0,.3);
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
.head-business-tip{
|
|
261
|
+
.tooltip-arrow{
|
|
262
|
+
border-bottom-color: #fff !important;
|
|
263
|
+
}
|
|
264
|
+
.tooltip-inner{
|
|
265
|
+
background-color: #fff;
|
|
266
|
+
box-shadow: 0 2px 8px 0 rgba(0,0,0,0.15);
|
|
267
|
+
div{
|
|
268
|
+
padding: 0 10px;
|
|
269
|
+
h1{
|
|
270
|
+
line-height: 32px;
|
|
271
|
+
font-size: 14px;
|
|
272
|
+
color: #333;
|
|
273
|
+
font-weight: normal;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
.pos-more-info-container {
|
|
278
|
+
&>h1{
|
|
279
|
+
white-space: nowrap;
|
|
280
|
+
overflow: hidden;
|
|
281
|
+
text-overflow: ellipsis;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
.close-app-loading{
|
|
286
|
+
background-color: rgba(0, 0, 0, 0.8);
|
|
287
|
+
.close-app-spin{
|
|
288
|
+
width: 150px;
|
|
289
|
+
.tplus-spin{
|
|
290
|
+
margin: 0 auto;
|
|
291
|
+
width: 36px;
|
|
292
|
+
}
|
|
293
|
+
h1 {
|
|
294
|
+
color: rgba(255,255,255,.8);
|
|
295
|
+
font-size: 13px;
|
|
296
|
+
margin-top: 20px;
|
|
297
|
+
text-align: center;
|
|
298
|
+
letter-spacing: 1px;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
@media (max-width: 1080px){
|
|
304
|
+
.business-name {
|
|
305
|
+
max-width: 130px;
|
|
306
|
+
}
|
|
307
|
+
.head-content-right{
|
|
308
|
+
.time {
|
|
309
|
+
div{
|
|
310
|
+
position: relative;
|
|
311
|
+
line-height: 86px;
|
|
312
|
+
padding-right: 10px;
|
|
313
|
+
height: 100%;
|
|
314
|
+
}
|
|
315
|
+
span{
|
|
316
|
+
position: absolute;
|
|
317
|
+
left: 0px;
|
|
318
|
+
top: 4px;
|
|
319
|
+
line-height: normal;
|
|
320
|
+
margin-left: 0 !important;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
@media (max-width: 920px){
|
|
326
|
+
.head-content-right{
|
|
327
|
+
.time {
|
|
328
|
+
display: none;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
}
|