|
@@ -1,6 +1,7 @@
|
1
|
1
|
<template>
|
2
|
|
- <div class="context" :style="{backgroundImage: 'url(' + (coverImgUrl ?BgImage:BgImg) + ')'}">
|
3
|
|
- <img class="BannerImage" :src="activity.Banner">
|
|
2
|
+ <div :class="'context theme'+theme">
|
|
3
|
+ <!-- <img :src="banner"> -->
|
|
4
|
+ <img :class="signupBtn?BannerImage1:BannerImage2" :src="activity.Banner">
|
4
|
5
|
<div :class="IsOk?onscroll1:onscroll2">
|
5
|
6
|
<div :class="isOK?searchs:searchb">
|
6
|
7
|
<input placeholder="输入编号或姓名" v-model="q" @focus="showBtn = false" @blur="showBtn = true">
|
|
@@ -16,15 +17,18 @@
|
16
|
17
|
<span :class="{ [`theme${theme}`]: true, 'active': active }">最新上传</span>
|
17
|
18
|
</div>
|
18
|
19
|
<!-- <pull-to :bottom-load-method="loadNewList"> -->
|
19
|
|
- <van-list
|
20
|
|
- v-model="loading"
|
21
|
|
- :finished="finished"
|
22
|
|
- finished-text="没有更多了"
|
23
|
|
- @load="loadNewList"
|
24
|
|
- >
|
|
20
|
+ <van-list
|
|
21
|
+ v-model="loading"
|
|
22
|
+ :finished="finished"
|
|
23
|
+ finished-text="没有更多了"
|
|
24
|
+ @load="loadNewList"
|
|
25
|
+ >
|
25
|
26
|
<div class="LatestUpload">
|
26
|
27
|
<div class="LatestUploadList" v-for="(item,index) in newList" :key="index">
|
27
|
|
- <div :class="signupBtn?ActivePersonnelBox1:ActivePersonnelBox2" @click="gotovotingdetails(item.MemberId)">
|
|
28
|
+ <div
|
|
29
|
+ :class="signupBtn?ActivePersonnelBox1:ActivePersonnelBox2"
|
|
30
|
+ @click="gotovotingdetails(item.MemberId)"
|
|
31
|
+ >
|
28
|
32
|
<img :src="item.Photo + '?x-oss-process=style/compress-rotate'">
|
29
|
33
|
</div>
|
30
|
34
|
<span :class="signupBtn?ballot1:ballot2">NO.{{item.MemberId}}</span>
|
|
@@ -36,41 +40,47 @@
|
36
|
40
|
</div>
|
37
|
41
|
</div>
|
38
|
42
|
</div>
|
39
|
|
- <!-- </pull-to> -->
|
40
|
|
- </van-list>
|
|
43
|
+ <!-- </pull-to> -->
|
|
44
|
+ </van-list>
|
41
|
45
|
</van-tab>
|
42
|
46
|
<van-tab title="TOP50">
|
43
|
47
|
<div slot="title">
|
44
|
48
|
<span :class="{ [`theme${theme}`]: true, 'active': !active }">Top50</span>
|
45
|
49
|
</div>
|
46
|
|
- <!-- <pull-to :bottom-load-method="loadTopList"> -->
|
47
|
|
- <van-list
|
48
|
|
- v-model="loading"
|
49
|
|
- :finished="finished"
|
50
|
|
- finished-text="没有更多了"
|
51
|
|
- @load="loadTopList"
|
52
|
|
- >
|
53
|
|
- <div class="LatestUpload">
|
54
|
|
- <div class="LatestUploadList" v-for="(item,index) in topList" :key="index">
|
55
|
|
- <div :class="signupBtn?ActivePersonnelBox1:ActivePersonnelBox2" @click="gotovotingdetails(item.MemberId)">
|
56
|
|
- <img :src="item.Photo + '?x-oss-process=style/compress-rotate'">
|
57
|
|
- </div>
|
58
|
|
- <span :class="signupBtn?ballot1:ballot2">NO.{{item.MemberId}}</span>
|
59
|
|
- <span class="ActivePersonnelName">{{item.Name}}</span>
|
60
|
|
- <button :class="signupBtn?VoteBtn1:VoteBtn2" @click="Vote(item.MemberId)">投TA一票</button>
|
61
|
|
- <div class="VoteNumber">
|
62
|
|
- <span>已获投票数:</span>
|
63
|
|
- <p>{{item.Vote}}票</p>
|
64
|
|
- </div>
|
|
50
|
+ <!-- <pull-to :bottom-load-method="loadTopList"> -->
|
|
51
|
+ <van-list
|
|
52
|
+ v-model="loading"
|
|
53
|
+ :finished="finished"
|
|
54
|
+ finished-text="没有更多了"
|
|
55
|
+ @load="loadTopList"
|
|
56
|
+ >
|
|
57
|
+ <div class="LatestUpload">
|
|
58
|
+ <div class="LatestUploadList" v-for="(item,index) in topList" :key="index">
|
|
59
|
+ <div
|
|
60
|
+ :class="signupBtn?ActivePersonnelBox1:ActivePersonnelBox2"
|
|
61
|
+ @click="gotovotingdetails(item.MemberId)"
|
|
62
|
+ >
|
|
63
|
+ <img :src="item.Photo + '?x-oss-process=style/compress-rotate'">
|
|
64
|
+ </div>
|
|
65
|
+ <span :class="signupBtn?ballot1:ballot2">NO.{{item.MemberId}}</span>
|
|
66
|
+ <span class="ActivePersonnelName">{{item.Name}}</span>
|
|
67
|
+ <button :class="signupBtn?VoteBtn1:VoteBtn2" @click="Vote(item.MemberId)">投TA一票</button>
|
|
68
|
+ <div class="VoteNumber">
|
|
69
|
+ <span>已获投票数:</span>
|
|
70
|
+ <p>{{item.Vote}}票</p>
|
65
|
71
|
</div>
|
66
|
72
|
</div>
|
67
|
|
- </van-list>
|
68
|
|
- <!-- </pull-to> -->
|
|
73
|
+ </div>
|
|
74
|
+ </van-list>
|
|
75
|
+ <!-- </pull-to> -->
|
69
|
76
|
</van-tab>
|
70
|
77
|
</van-tabs>
|
71
|
78
|
</div>
|
72
|
79
|
<div class="btn" v-show="showBtn">
|
73
|
|
- <button :class="signupBtn?'signupBtnOne':'signupBtnTwo'" @click="signup">{{ myID > 0 ? '我的上传' : '我要报名'}}</button>
|
|
80
|
+ <button
|
|
81
|
+ :class="signupBtn?'signupBtnOne':'signupBtnTwo'"
|
|
82
|
+ @click="signup"
|
|
83
|
+ >{{ myID > 0 ? '我的上传' : '我要报名'}}</button>
|
74
|
84
|
</div>
|
75
|
85
|
<toast v-if="show" :url="activity.AfterVote" @close="close" @confirmbtn="tolink"></toast>
|
76
|
86
|
</div>
|
|
@@ -81,8 +91,9 @@
|
81
|
91
|
import { createNamespacedHelpers } from "vuex";
|
82
|
92
|
import wxsdk from "../../util/share.js";
|
83
|
93
|
import toast from "../../components/toast.vue";
|
84
|
|
-import BgImg from "../../assets/bgimg.jpg";
|
85
|
|
-import BgImage from "../../assets/yttjbg.png";
|
|
94
|
+// import BgImg from "../../assets/bgimg.jpg";
|
|
95
|
+// import BgImage from "../../assets/yttjbg.png";
|
|
96
|
+import { Toast } from 'vant';
|
86
|
97
|
|
87
|
98
|
const {
|
88
|
99
|
mapState: mapactivityState,
|
|
@@ -97,6 +108,8 @@ export default {
|
97
|
108
|
active: true,
|
98
|
109
|
temp: true,
|
99
|
110
|
signupBtn: true,
|
|
111
|
+ BannerImage1: "BannerImage1",
|
|
112
|
+ BannerImage2: "BannerImage2",
|
100
|
113
|
signupBtnOne: "signupBtnOne",
|
101
|
114
|
signupBtnTwo: "signupBtnTwo",
|
102
|
115
|
VoteBtn1: "VoteBtn1",
|
|
@@ -112,8 +125,8 @@ export default {
|
112
|
125
|
onscroll2: "onscroll2",
|
113
|
126
|
ActivePersonnelBox1: "ActivePersonnelBox1",
|
114
|
127
|
ActivePersonnelBox2: "ActivePersonnelBox2",
|
115
|
|
- BgImg,
|
116
|
|
- BgImage,
|
|
128
|
+ // BgImg,
|
|
129
|
+ // BgImage,
|
117
|
130
|
IconSearch:
|
118
|
131
|
"https://spaceofcheng.oss-cn-beijing.aliyuncs.com/voting/yttj_icon_search.png",
|
119
|
132
|
tab: "",
|
|
@@ -126,11 +139,11 @@ export default {
|
126
|
139
|
show: false,
|
127
|
140
|
pageSize: 10,
|
128
|
141
|
loaddingData: false,
|
129
|
|
- showBtn: true,
|
|
142
|
+ showBtn: true
|
130
|
143
|
};
|
131
|
144
|
},
|
132
|
145
|
components: {
|
133
|
|
- toast,
|
|
146
|
+ toast
|
134
|
147
|
// PullTo
|
135
|
148
|
},
|
136
|
149
|
mounted() {
|
|
@@ -150,8 +163,13 @@ export default {
|
150
|
163
|
user: x => x.user,
|
151
|
164
|
theme: x => x.theme,
|
152
|
165
|
myprofile: x => x.myprofile,
|
153
|
|
- myID: s => (s.myprofile.filter(x => x.ActivityId === (s.activity || {}).ActivityId)[0] || {}).MemberId
|
154
|
|
- }),
|
|
166
|
+ myID: s =>
|
|
167
|
+ (
|
|
168
|
+ s.myprofile.filter(
|
|
169
|
+ x => x.ActivityId === (s.activity || {}).ActivityId
|
|
170
|
+ )[0] || {}
|
|
171
|
+ ).MemberId
|
|
172
|
+ })
|
155
|
173
|
},
|
156
|
174
|
created() {
|
157
|
175
|
this.pageSize = this.$store.state.pageSize;
|
|
@@ -168,9 +186,9 @@ export default {
|
168
|
186
|
this.getActivity({
|
169
|
187
|
actid: this.actid
|
170
|
188
|
}).then(act => {
|
171
|
|
- let hash = window.location.hash
|
172
|
|
- if (hash.indexOf('/vote') < 0) {
|
173
|
|
- hash = `#/vote/${this.actid}`
|
|
189
|
+ let hash = window.location.hash;
|
|
190
|
+ if (hash.indexOf("/vote") < 0) {
|
|
191
|
+ hash = `#/vote/${this.actid}`;
|
174
|
192
|
}
|
175
|
193
|
|
176
|
194
|
wxsdk(
|
|
@@ -187,7 +205,7 @@ export default {
|
187
|
205
|
}
|
188
|
206
|
);
|
189
|
207
|
|
190
|
|
- console.log('------>', this.activity, this.myprofile, this.myID)
|
|
208
|
+ console.log("------>", this.activity, this.myprofile, this.myID);
|
191
|
209
|
});
|
192
|
210
|
// this.getMine({
|
193
|
211
|
// actid: this.actid,
|
|
@@ -217,15 +235,15 @@ export default {
|
217
|
235
|
"getMine"
|
218
|
236
|
]),
|
219
|
237
|
handleScroll() {
|
220
|
|
- this.showBtn = true
|
221
|
|
-
|
|
238
|
+ this.showBtn = true;
|
222
|
239
|
|
223
|
240
|
// 页面滚动距顶部距离
|
224
|
241
|
var scrollTop =
|
225
|
242
|
window.pageYOffset ||
|
226
|
243
|
document.documentElement.scrollTop ||
|
227
|
244
|
document.body.scrollTop;
|
228
|
|
- if (scrollTop >= 269) {
|
|
245
|
+
|
|
246
|
+ if (scrollTop >= 240) {
|
229
|
247
|
this.IsOk = false;
|
230
|
248
|
} else {
|
231
|
249
|
this.IsOk = true;
|
|
@@ -254,24 +272,24 @@ export default {
|
254
|
272
|
}).then(() => {
|
255
|
273
|
if (this.activity.AfterVote) {
|
256
|
274
|
this.$dialog
|
257
|
|
- .alert({ title: "投票成功", message: "恭喜您获得一次抽奖机会!" })
|
|
275
|
+ .alert({ title: "投票成功!", message: "恭喜您获得一次抽奖机会!" })
|
258
|
276
|
.then(() => {
|
259
|
277
|
window.location.href = this.activity.AfterVote;
|
260
|
278
|
});
|
261
|
279
|
} else {
|
262
|
|
- this.$dialog.alert({ message: "投票成功" });
|
|
280
|
+ this.$dialog.alert({ message: "投票成功!" });
|
263
|
281
|
}
|
264
|
282
|
});
|
265
|
283
|
// });
|
266
|
284
|
},
|
267
|
285
|
loadNewList(loaded) {
|
268
|
286
|
if (this.loaddingData) {
|
269
|
|
- return
|
|
287
|
+ return;
|
270
|
288
|
}
|
271
|
289
|
|
272
|
|
- this.loaddingData = true
|
|
290
|
+ this.loaddingData = true;
|
273
|
291
|
this.newlist().then(res => {
|
274
|
|
- console.log(res.length, this.pageSize)
|
|
292
|
+ console.log(res.length, this.pageSize);
|
275
|
293
|
|
276
|
294
|
if ((res || []).length >= this.pageSize) {
|
277
|
295
|
this.newpage += 1;
|
|
@@ -280,13 +298,13 @@ export default {
|
280
|
298
|
}
|
281
|
299
|
|
282
|
300
|
this.loading = false;
|
283
|
|
- this.loaddingData = false
|
284
|
|
- loaded && loaded('done')
|
|
301
|
+ this.loaddingData = false;
|
|
302
|
+ loaded && loaded("done");
|
285
|
303
|
});
|
286
|
304
|
},
|
287
|
305
|
loadTopList(loaded) {
|
288
|
306
|
if (this.loaddingData) {
|
289
|
|
- return
|
|
307
|
+ return;
|
290
|
308
|
}
|
291
|
309
|
|
292
|
310
|
this.toplist().then(res => {
|
|
@@ -297,8 +315,8 @@ export default {
|
297
|
315
|
}
|
298
|
316
|
|
299
|
317
|
this.loading = false;
|
300
|
|
- this.loaddingData = false
|
301
|
|
- loaded && loaded('done')
|
|
318
|
+ this.loaddingData = false;
|
|
319
|
+ loaded && loaded("done");
|
302
|
320
|
});
|
303
|
321
|
},
|
304
|
322
|
signup() {
|
|
@@ -307,6 +325,28 @@ export default {
|
307
|
325
|
path: `/detail/${this.actid}/${this.myID}`
|
308
|
326
|
});
|
309
|
327
|
} else {
|
|
328
|
+ var myDate = (new Date()).valueOf();
|
|
329
|
+ var begintime = (new Date(this.activity.StartTime)).valueOf()
|
|
330
|
+ var endtime = (new Date(this.activity.EndTime)).valueOf()
|
|
331
|
+ // console.log(begintime)
|
|
332
|
+ // console.log(endtime)
|
|
333
|
+ // console.log(myDate)
|
|
334
|
+ if(begintime > myDate){
|
|
335
|
+ Toast.fail({
|
|
336
|
+ duration: 2000, // 持续展示 toast
|
|
337
|
+ forbidClick: true, // 禁用背景点击
|
|
338
|
+ message: "活动未开始!"
|
|
339
|
+ })
|
|
340
|
+ return false
|
|
341
|
+ }
|
|
342
|
+ if(endtime < myDate){
|
|
343
|
+ Toast.fail({
|
|
344
|
+ duration: 2000, // 持续展示 toast
|
|
345
|
+ forbidClick: true, // 禁用背景点击
|
|
346
|
+ message: "活动已结束!"
|
|
347
|
+ })
|
|
348
|
+ return false
|
|
349
|
+ }
|
310
|
350
|
this.$router.push({
|
311
|
351
|
path: `/vote/signup/${this.actid}`
|
312
|
352
|
});
|
|
@@ -326,9 +366,9 @@ export default {
|
326
|
366
|
window.location.href = this.info.AfterVote;
|
327
|
367
|
},
|
328
|
368
|
search() {
|
329
|
|
- this.newpage = 1
|
330
|
|
- this.toppage = 1
|
331
|
|
- this.showBtn = true
|
|
369
|
+ this.newpage = 1;
|
|
370
|
+ this.toppage = 1;
|
|
371
|
+ this.showBtn = true;
|
332
|
372
|
|
333
|
373
|
this.newlist();
|
334
|
374
|
this.toplist();
|
|
@@ -359,6 +399,12 @@ export default {
|
359
|
399
|
|
360
|
400
|
|
361
|
401
|
<style lang="scss" scoped>
|
|
402
|
+.theme1 {
|
|
403
|
+ background: rgba(209, 220, 228, 1);
|
|
404
|
+}
|
|
405
|
+.theme2 {
|
|
406
|
+ background: linear-gradient(#9c7e70, #70544b);
|
|
407
|
+}
|
362
|
408
|
.context {
|
363
|
409
|
width: 100%;
|
364
|
410
|
display: flex;
|
|
@@ -366,17 +412,22 @@ export default {
|
366
|
412
|
justify-content: center;
|
367
|
413
|
align-items: center;
|
368
|
414
|
|
369
|
|
- .BannerImage {
|
|
415
|
+ .BannerImage1 {
|
370
|
416
|
width: 100%;
|
371
|
417
|
max-height: 10rem;
|
|
418
|
+ margin-bottom: 0.8rem;
|
|
419
|
+ }
|
|
420
|
+ .BannerImage2 {
|
|
421
|
+ width: 92.5%;
|
|
422
|
+ max-height: 10rem;
|
|
423
|
+ margin: 0.6rem 0 1.4rem 0;
|
372
|
424
|
}
|
373
|
|
-
|
374
|
425
|
.onscroll1 {
|
375
|
426
|
width: 90%;
|
376
|
427
|
height: 0.44rem;
|
377
|
428
|
position: absolute;
|
378
|
|
- top: 2.8rem;
|
379
|
|
- left: calc(5%);
|
|
429
|
+ top: 2.4rem;
|
|
430
|
+ left: calc(3.1%);
|
380
|
431
|
z-index: 120;
|
381
|
432
|
|
382
|
433
|
.searchb {
|
|
@@ -460,7 +511,7 @@ export default {
|
460
|
511
|
width: 93%;
|
461
|
512
|
height: 0.44rem;
|
462
|
513
|
position: absolute;
|
463
|
|
- top: 2.8rem;
|
|
514
|
+ top: 2.4rem;
|
464
|
515
|
left: calc(3.1%);
|
465
|
516
|
z-index: 120;
|
466
|
517
|
|
|
@@ -583,18 +634,17 @@ export default {
|
583
|
634
|
font-size: 0.16rem;
|
584
|
635
|
font-weight: bolder;
|
585
|
636
|
color: rgba(255, 255, 255, 1);
|
586
|
|
- background: rgba(173,145,129,0.62);
|
|
637
|
+ background: rgba(173, 145, 129, 0.62);
|
587
|
638
|
line-height: 0.22rem;
|
588
|
639
|
border-radius: 0.06rem;
|
589
|
640
|
text-align: center;
|
590
|
641
|
padding: 0.09rem 0;
|
591
|
642
|
|
592
|
643
|
&.active {
|
593
|
|
- background: rgba(126,100,86,1);
|
|
644
|
+ background: rgba(126, 100, 86, 1);
|
594
|
645
|
}
|
595
|
646
|
}
|
596
|
647
|
|
597
|
|
-
|
598
|
648
|
.LatestUpload {
|
599
|
649
|
width: 90%;
|
600
|
650
|
display: flex;
|
|
@@ -629,12 +679,12 @@ export default {
|
629
|
679
|
}
|
630
|
680
|
}
|
631
|
681
|
|
632
|
|
- .ActivePersonnelBox2 {
|
|
682
|
+ .ActivePersonnelBox2 {
|
633
|
683
|
width: 90%;
|
634
|
684
|
height: 1.83rem;
|
635
|
685
|
border-radius: 0.15rem;
|
636
|
686
|
margin-bottom: 0.11rem;
|
637
|
|
- border: 0.04rem solid rgba(126,100,86,1);
|
|
687
|
+ border: 0.04rem solid rgba(126, 100, 86, 1);
|
638
|
688
|
|
639
|
689
|
img {
|
640
|
690
|
width: 100%;
|
|
@@ -657,7 +707,7 @@ export default {
|
657
|
707
|
.ballot2 {
|
658
|
708
|
position: absolute;
|
659
|
709
|
top: 0;
|
660
|
|
- background: rgba(126,100,86,1);
|
|
710
|
+ background: rgba(126, 100, 86, 1);
|
661
|
711
|
border-radius: 0 0 0.08rem 0.08rem;
|
662
|
712
|
padding: 0.02rem 0.12rem;
|
663
|
713
|
font-size: 0.14rem;
|
|
@@ -690,7 +740,7 @@ export default {
|
690
|
740
|
width: 56%;
|
691
|
741
|
height: 0.23rem;
|
692
|
742
|
border-radius: 0.25rem;
|
693
|
|
- background-color: rgba(126,100,86,1);
|
|
743
|
+ background-color: rgba(126, 100, 86, 1);
|
694
|
744
|
border: none;
|
695
|
745
|
font-size: 0.14rem;
|
696
|
746
|
font-weight: bolder;
|
|
@@ -719,61 +769,59 @@ export default {
|
719
|
769
|
}
|
720
|
770
|
}
|
721
|
771
|
|
722
|
|
- .btn{
|
723
|
|
- width: 100%;
|
|
772
|
+ .btn {
|
|
773
|
+ width: 100%;
|
724
|
774
|
height: 0.6rem;
|
725
|
775
|
display: flex;
|
726
|
776
|
justify-content: center;
|
727
|
777
|
align-items: center;
|
728
|
|
- background: rgba(255,255,255,1);
|
|
778
|
+ background: rgba(255, 255, 255, 1);
|
729
|
779
|
position: fixed;
|
730
|
780
|
bottom: 0;
|
731
|
781
|
left: 0;
|
732
|
782
|
z-index: 100;
|
733
|
783
|
|
734
|
|
- .signupBtnOne {
|
735
|
|
- width: 91%;
|
736
|
|
- height: 0.5rem;
|
737
|
|
- border-radius: 0.25rem;
|
738
|
|
- background: rgba(166, 184, 201, 1);
|
739
|
|
- border: none;
|
740
|
|
- font-size: 0.2rem;
|
741
|
|
- font-weight: bold;
|
742
|
|
- color: rgba(255, 255, 255, 1);
|
743
|
|
- line-height: 0.28rem;
|
744
|
|
- // position: fixed;
|
745
|
|
- // bottom: 0.19rem;
|
746
|
|
- // left: calc(4.25%);
|
747
|
|
- // z-index: 100;
|
748
|
|
- }
|
749
|
|
- .signupBtnTwo {
|
750
|
|
- width: 91%;
|
751
|
|
- height: 0.5rem;
|
752
|
|
- border-radius: 0.25rem;
|
753
|
|
- background: rgba(173, 145, 129, 1);
|
754
|
|
- border: none;
|
755
|
|
- font-size: 0.2rem;
|
756
|
|
- font-weight: bold;
|
757
|
|
- color: rgba(255, 255, 255, 1);
|
758
|
|
- line-height: 0.28rem;
|
759
|
|
- // position: fixed;
|
760
|
|
- // bottom: 0.19rem;
|
761
|
|
- // left: calc(4.25%);
|
762
|
|
- // z-index: 100;
|
763
|
|
- }
|
764
|
|
-
|
|
784
|
+ .signupBtnOne {
|
|
785
|
+ width: 91%;
|
|
786
|
+ height: 0.5rem;
|
|
787
|
+ border-radius: 0.25rem;
|
|
788
|
+ background: rgba(166, 184, 201, 1);
|
|
789
|
+ border: none;
|
|
790
|
+ font-size: 0.2rem;
|
|
791
|
+ font-weight: bold;
|
|
792
|
+ color: rgba(255, 255, 255, 1);
|
|
793
|
+ line-height: 0.28rem;
|
|
794
|
+ // position: fixed;
|
|
795
|
+ // bottom: 0.19rem;
|
|
796
|
+ // left: calc(4.25%);
|
|
797
|
+ // z-index: 100;
|
|
798
|
+ }
|
|
799
|
+ .signupBtnTwo {
|
|
800
|
+ width: 91%;
|
|
801
|
+ height: 0.5rem;
|
|
802
|
+ border-radius: 0.25rem;
|
|
803
|
+ background: rgba(173, 145, 129, 1);
|
|
804
|
+ border: none;
|
|
805
|
+ font-size: 0.2rem;
|
|
806
|
+ font-weight: bold;
|
|
807
|
+ color: rgba(255, 255, 255, 1);
|
|
808
|
+ line-height: 0.28rem;
|
|
809
|
+ // position: fixed;
|
|
810
|
+ // bottom: 0.19rem;
|
|
811
|
+ // left: calc(4.25%);
|
|
812
|
+ // z-index: 100;
|
|
813
|
+ }
|
765
|
814
|
}
|
766
|
|
-
|
767
|
815
|
}
|
768
|
816
|
|
769
|
817
|
.theme1 {
|
770
|
818
|
// background-image: url('../../assets/bgimg.jpg');
|
771
|
|
- background: rgba(209,220,228,1);
|
772
|
|
- }
|
773
|
|
- .theme2 {
|
|
819
|
+ background: rgba(209, 220, 228, 1);
|
|
820
|
+}
|
|
821
|
+.theme2 {
|
774
|
822
|
// background-image: url('../../assets/bgimg.jpg');
|
775
|
|
- background: linear-gradient(#97796c,#705443);
|
776
|
|
- }
|
|
823
|
+ background: linear-gradient(#97796c, #705443);
|
|
824
|
+}
|
777
|
825
|
</style>
|
778
|
826
|
|
779
|
827
|
|