|
@@ -5,7 +5,6 @@
|
5
|
5
|
<div :class="isOK?searchs:searchb">
|
6
|
6
|
<input placeholder="输入编号或姓名" v-model="q">
|
7
|
7
|
<img class="IconSearch" :src="IconSearch" @click="search">
|
8
|
|
- <!-- <i class="iconfont icon-sousuo3 IconSearch"></i> -->
|
9
|
8
|
</div>
|
10
|
9
|
</div>
|
11
|
10
|
<img class="informationimg" :src="activity.Desc">
|
|
@@ -20,8 +19,6 @@
|
20
|
19
|
<span :class="active?newlyone:newlytwo" @click="qh(true)">最新上传</span>
|
21
|
20
|
<span :class="active?newlytwo:newlyone" @click="qh(false)">TOP50</span>
|
22
|
21
|
</div>
|
23
|
|
- <!-- <van-tabs type="card">
|
24
|
|
- <van-tab title="最新上传">-->
|
25
|
22
|
<van-list v-model="loading" :finished="finished" finished-text="没有更多了" @load="onLoad">
|
26
|
23
|
<div class="LatestUpload" v-if="temp">
|
27
|
24
|
<div class="LatestUploadList" v-for="(item,index) in newList" :key="index">
|
|
@@ -41,9 +38,7 @@
|
41
|
38
|
</div>
|
42
|
39
|
</div>
|
43
|
40
|
</van-list>
|
44
|
|
- <!-- </van-tab> -->
|
45
|
|
- <!-- <van-tab title="TOP50"> -->
|
46
|
|
- <van-list v-model="loading" :finished="finished" finished-text="没有更多了" @load="onLoad">
|
|
41
|
+ <van-list v-model="loading" :finished="finished" finished-text="没有更多了" @load="onLoad">
|
47
|
42
|
<div class="LatestUpload" v-if="!temp">
|
48
|
43
|
<div class="LatestUploadList" v-for="(item,index) in topList" :key="index">
|
49
|
44
|
<div
|
|
@@ -62,8 +57,6 @@
|
62
|
57
|
</div>
|
63
|
58
|
</div>
|
64
|
59
|
</van-list>
|
65
|
|
- <!-- </van-tab>
|
66
|
|
- </van-tabs>-->
|
67
|
60
|
</div>
|
68
|
61
|
</div>
|
69
|
62
|
<button :class="signupBtn?'signupBtnOne':'signupBtnTwo'" @click="signup">我要报名</button>
|
|
@@ -86,7 +79,6 @@ export default {
|
86
|
79
|
name: "lotterylist",
|
87
|
80
|
data() {
|
88
|
81
|
return {
|
89
|
|
- // AudioPlay: ''
|
90
|
82
|
first:false,
|
91
|
83
|
second:false,
|
92
|
84
|
active:true,
|
|
@@ -143,7 +135,6 @@ export default {
|
143
|
135
|
},
|
144
|
136
|
created() {
|
145
|
137
|
this.actid = this.$route.params.actid;
|
146
|
|
- console.log(this.actid);
|
147
|
138
|
if (this.actid == 1) {
|
148
|
139
|
this.coverImgUrl = true;
|
149
|
140
|
this.signupBtn = true;
|
|
@@ -222,21 +213,6 @@ export default {
|
222
|
213
|
this.topList = toplist;
|
223
|
214
|
});
|
224
|
215
|
},
|
225
|
|
- // onLoad() {
|
226
|
|
- // // 异步更新数据
|
227
|
|
- // setTimeout(() => {
|
228
|
|
- // for (let i = 0; i < 10; i++) {
|
229
|
|
- // this.list.push(this.list.length + 1);
|
230
|
|
- // }
|
231
|
|
- // // 加载状态结束
|
232
|
|
- // this.loading = false;
|
233
|
|
-
|
234
|
|
- // // 数据全部加载完成
|
235
|
|
- // if (this.list.length >= 40) {
|
236
|
|
- // this.finished = true;
|
237
|
|
- // }
|
238
|
|
- // }, 2000);
|
239
|
|
- // },
|
240
|
216
|
signup() {
|
241
|
217
|
this.$router.push({
|
242
|
218
|
path: `/vote/signup/${this.actid}`
|
|
@@ -265,43 +241,6 @@ export default {
|
265
|
241
|
.van-list {
|
266
|
242
|
width: 100%;
|
267
|
243
|
}
|
268
|
|
-.van-tabs--card {
|
269
|
|
- width: 100%;
|
270
|
|
-}
|
271
|
|
-.van-tabs__nav--card {
|
272
|
|
- height: 100%;
|
273
|
|
- border: none;
|
274
|
|
- margin: 0;
|
275
|
|
-}
|
276
|
|
-.van-tabs__wrap {
|
277
|
|
- width: 100%;
|
278
|
|
- z-index: 0;
|
279
|
|
-}
|
280
|
|
-.van-tabs__nav--card .van-tab.van-tab--active {
|
281
|
|
- background-color: rgba(166, 184, 201, 1);
|
282
|
|
- border-radius: 0.06rem;
|
283
|
|
-}
|
284
|
|
-.van-tabs--card .van-tabs__wrap {
|
285
|
|
- height: 0.4rem;
|
286
|
|
-}
|
287
|
|
-.van-tabs__nav--card .van-tab {
|
288
|
|
- border-right: none;
|
289
|
|
- background-color: rgba(217, 226, 233, 1);
|
290
|
|
- border-radius: 0.06rem;
|
291
|
|
- width: 100%;
|
292
|
|
- margin: 0 0.075rem;
|
293
|
|
- display: flex;
|
294
|
|
- justify-content: center;
|
295
|
|
- align-items: center;
|
296
|
|
-}
|
297
|
|
-.van-ellipsis {
|
298
|
|
- font-size: 0.16rem;
|
299
|
|
- font-family: PingFangSC-Medium;
|
300
|
|
- font-weight: bold;
|
301
|
|
- color: rgba(255, 255, 255, 1);
|
302
|
|
- line-height: 0.22rem;
|
303
|
|
- text-align: center;
|
304
|
|
-}
|
305
|
244
|
</style>
|
306
|
245
|
|
307
|
246
|
|
|
@@ -343,22 +282,22 @@ export default {
|
343
|
282
|
color: rgba(255, 255, 255, 1);
|
344
|
283
|
font-size: 0.16rem;
|
345
|
284
|
font-family: PingFangSC-Regular;
|
346
|
|
- font-weight: 400;
|
|
285
|
+ font-weight: bold;
|
347
|
286
|
line-height: 0.22rem;
|
348
|
287
|
width: 5rem;
|
349
|
|
- text-indent: 0.1rem;
|
|
288
|
+ text-indent: 0.14rem;
|
350
|
289
|
}
|
351
|
290
|
input::-webkit-input-placeholder {
|
352
|
291
|
color: rgba(255, 255, 255, 1);
|
353
|
292
|
font-size: 0.16rem;
|
354
|
293
|
font-family: PingFangSC-Regular;
|
355
|
|
- font-weight: 400;
|
|
294
|
+ font-weight: bold;
|
356
|
295
|
line-height: 0.22rem;
|
357
|
296
|
}
|
358
|
297
|
.IconSearch {
|
359
|
298
|
width: 0.2rem;
|
360
|
299
|
height: 0.2rem;
|
361
|
|
- margin-right: 0.1rem;
|
|
300
|
+ margin-right: 0.14rem;
|
362
|
301
|
}
|
363
|
302
|
}
|
364
|
303
|
}
|
|
@@ -387,22 +326,22 @@ export default {
|
387
|
326
|
color: rgba(255, 255, 255, 1);
|
388
|
327
|
font-size: 0.16rem;
|
389
|
328
|
font-family: PingFangSC-Regular;
|
390
|
|
- font-weight: 400;
|
|
329
|
+ font-weight: bold;
|
391
|
330
|
line-height: 0.22rem;
|
392
|
331
|
width: 5rem;
|
393
|
|
- text-indent: 0.1rem;
|
|
332
|
+ text-indent: 0.14rem;
|
394
|
333
|
}
|
395
|
334
|
input::-webkit-input-placeholder {
|
396
|
335
|
color: rgba(255, 255, 255, 1);
|
397
|
336
|
font-size: 0.16rem;
|
398
|
337
|
font-family: PingFangSC-Regular;
|
399
|
|
- font-weight: 400;
|
|
338
|
+ font-weight: bold;
|
400
|
339
|
line-height: 0.22rem;
|
401
|
340
|
}
|
402
|
341
|
.IconSearch {
|
403
|
342
|
width: 0.2rem;
|
404
|
343
|
height: 0.2rem;
|
405
|
|
- margin-right: 0.1rem;
|
|
344
|
+ margin-right: 0.14rem;
|
406
|
345
|
}
|
407
|
346
|
}
|
408
|
347
|
}
|
|
@@ -431,7 +370,7 @@ export default {
|
431
|
370
|
color: rgba(255, 255, 255, 1);
|
432
|
371
|
font-size: 0.16rem;
|
433
|
372
|
font-family: PingFangSC-Regular;
|
434
|
|
- font-weight: 400;
|
|
373
|
+ font-weight: bold;
|
435
|
374
|
line-height: 0.22rem;
|
436
|
375
|
width: 5rem;
|
437
|
376
|
text-indent: 0.1rem;
|
|
@@ -440,7 +379,7 @@ export default {
|
440
|
379
|
color: rgba(255, 255, 255, 1);
|
441
|
380
|
font-size: 0.16rem;
|
442
|
381
|
font-family: PingFangSC-Regular;
|
443
|
|
- font-weight: 400;
|
|
382
|
+ font-weight: bold;
|
444
|
383
|
line-height: 0.22rem;
|
445
|
384
|
}
|
446
|
385
|
|
|
@@ -476,7 +415,7 @@ export default {
|
476
|
415
|
color: rgba(255, 255, 255, 1);
|
477
|
416
|
font-size: 0.16rem;
|
478
|
417
|
font-family: PingFangSC-Regular;
|
479
|
|
- font-weight: 400;
|
|
418
|
+ font-weight: bold;
|
480
|
419
|
line-height: 0.22rem;
|
481
|
420
|
width: 5rem;
|
482
|
421
|
text-indent: 0.1rem;
|
|
@@ -485,7 +424,7 @@ export default {
|
485
|
424
|
color: rgba(255, 255, 255, 1);
|
486
|
425
|
font-size: 0.16rem;
|
487
|
426
|
font-family: PingFangSC-Regular;
|
488
|
|
- font-weight: 400;
|
|
427
|
+ font-weight: bold;
|
489
|
428
|
line-height: 0.22rem;
|
490
|
429
|
}
|
491
|
430
|
|
|
@@ -535,7 +474,7 @@ export default {
|
535
|
474
|
width: 47.5%;
|
536
|
475
|
font-size: 0.16rem;
|
537
|
476
|
font-family: PingFangSC-Medium;
|
538
|
|
- font-weight: 500;
|
|
477
|
+ font-weight: bolder;
|
539
|
478
|
color: rgba(255, 255, 255, 1);
|
540
|
479
|
line-height: 0.22rem;
|
541
|
480
|
background: rgba(166, 184, 201, 1);
|
|
@@ -547,7 +486,7 @@ export default {
|
547
|
486
|
width: 47.5%;
|
548
|
487
|
font-size: 0.16rem;
|
549
|
488
|
font-family: PingFangSC-Medium;
|
550
|
|
- font-weight: 500;
|
|
489
|
+ font-weight: bolder;
|
551
|
490
|
color: rgba(255, 255, 255, 1);
|
552
|
491
|
line-height: 0.22rem;
|
553
|
492
|
background: rgba(217,226,233,1);
|
|
@@ -567,7 +506,7 @@ export default {
|
567
|
506
|
width: 47.5%;
|
568
|
507
|
font-size: 0.16rem;
|
569
|
508
|
font-family: PingFangSC-Medium;
|
570
|
|
- font-weight: 500;
|
|
509
|
+ font-weight: bolder;
|
571
|
510
|
color: rgba(255, 255, 255, 1);
|
572
|
511
|
line-height: 0.22rem;
|
573
|
512
|
background: rgba(126,100,86,1);
|
|
@@ -579,7 +518,7 @@ export default {
|
579
|
518
|
width: 47.5%;
|
580
|
519
|
font-size: 0.16rem;
|
581
|
520
|
font-family: PingFangSC-Medium;
|
582
|
|
- font-weight: 500;
|
|
521
|
+ font-weight: bolder;
|
583
|
522
|
color: rgba(255, 255, 255, 1);
|
584
|
523
|
line-height: 0.22rem;
|
585
|
524
|
background: rgba(173,145,129,0.62);
|
|
@@ -644,7 +583,7 @@ export default {
|
644
|
583
|
padding: 0.02rem 0.12rem;
|
645
|
584
|
font-size: 0.14rem;
|
646
|
585
|
font-family: PingFangSC-Medium;
|
647
|
|
- font-weight: bold;
|
|
586
|
+ font-weight: bolder;
|
648
|
587
|
color: rgba(255, 255, 255, 1);
|
649
|
588
|
line-height: 0.2rem;
|
650
|
589
|
}
|
|
@@ -656,7 +595,7 @@ export default {
|
656
|
595
|
padding: 0.02rem 0.12rem;
|
657
|
596
|
font-size: 0.14rem;
|
658
|
597
|
font-family: PingFangSC-Medium;
|
659
|
|
- font-weight: bold;
|
|
598
|
+ font-weight: bolder;
|
660
|
599
|
color: rgba(255, 255, 255, 1);
|
661
|
600
|
line-height: 0.2rem;
|
662
|
601
|
}
|
|
@@ -664,7 +603,7 @@ export default {
|
664
|
603
|
.ActivePersonnelName {
|
665
|
604
|
font-size: 0.16rem;
|
666
|
605
|
font-family: PingFangSC-Regular;
|
667
|
|
- font-weight: 400;
|
|
606
|
+ font-weight: bold;
|
668
|
607
|
color: rgba(0, 0, 0, 1);
|
669
|
608
|
line-height: 0.22rem;
|
670
|
609
|
padding-bottom: 0.11rem;
|
|
@@ -678,7 +617,7 @@ export default {
|
678
|
617
|
border: none;
|
679
|
618
|
font-size: 0.14rem;
|
680
|
619
|
font-family: PingFangSC-Medium;
|
681
|
|
- font-weight: bold;
|
|
620
|
+ font-weight: bolder;
|
682
|
621
|
color: rgba(255, 255, 255, 1);
|
683
|
622
|
line-height: 0.2rem;
|
684
|
623
|
margin-bottom: 0.14rem;
|
|
@@ -691,7 +630,7 @@ export default {
|
691
|
630
|
border: none;
|
692
|
631
|
font-size: 0.14rem;
|
693
|
632
|
font-family: PingFangSC-Medium;
|
694
|
|
- font-weight: bold;
|
|
633
|
+ font-weight: bolder;
|
695
|
634
|
color: rgba(255, 255, 255, 1);
|
696
|
635
|
line-height: 0.2rem;
|
697
|
636
|
margin-bottom: 0.14rem;
|
|
@@ -704,14 +643,14 @@ export default {
|
704
|
643
|
span {
|
705
|
644
|
font-size: 0.12rem;
|
706
|
645
|
font-family: PingFangSC-Medium;
|
707
|
|
- font-weight: bold;
|
|
646
|
+ font-weight: bolder;
|
708
|
647
|
color: rgba(0, 0, 0, 1);
|
709
|
648
|
line-height: 0.17rem;
|
710
|
649
|
}
|
711
|
650
|
p {
|
712
|
651
|
font-size: 0.12rem;
|
713
|
652
|
font-family: PingFangSC-Medium;
|
714
|
|
- font-weight: bold;
|
|
653
|
+ font-weight: bolder;
|
715
|
654
|
color: #f0737e;
|
716
|
655
|
line-height: 0.17rem;
|
717
|
656
|
}
|