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
| import pumpImg from '/@/assets/pump/12.gif';
|
| // 列表数据
| export const filterList = [
| {
| img: pumpImg,
| id: 999,
| loading: true,
| },
| {
| img: 'https://news.sznews.com/pic/2021-03/09/e37326cc-4583-48f3-aa00-ecc2392d319d.jpg',
| title: '36分钟,深圳平均通勤时间出炉!GDP10强城市中仅输杭州',
| evaluate: (Math.random() * 10).toFixed(2),
| collection: (Math.random() * 100).toFixed(2),
| price: (Math.random() * 10).toFixed(2),
| monSales: (Math.random() * 20).toFixed(2),
| isActive: true,
| id: 1,
| loading: true,
| },
| {
| img: 'http://news.sznews.com/pic/2021-03/09/78cf72b6-e2d9-459d-a368-470414a027f4679cf4ea-26fa-48c8-9fee-c2d092a91400.png',
| title: '为爱而动,“红色鹊桥”三八妇女节交友联谊活动助力深圳女孩脱单',
| evaluate: (Math.random() * 10).toFixed(2),
| collection: (Math.random() * 100).toFixed(2),
| price: (Math.random() * 10).toFixed(2),
| monSales: (Math.random() * 20).toFixed(2),
| id: 2,
| loading: true,
| },
|
| {
| img: 'https://news.sznews.com/pic/2021-03/08/28ed70d4-71f5-4abb-bf7b-0294bece9e43.jpg.2',
| title: '“十三五”:深圳交上靓丽答卷 发展动力加快转换',
| evaluate: (Math.random() * 10).toFixed(2),
| collection: (Math.random() * 100).toFixed(2),
| price: (Math.random() * 10).toFixed(2),
| monSales: (Math.random() * 20).toFixed(2),
| id: 9,
| loading: true,
| },
| {
| img: 'http://news.sznews.com/pic/2021-03/05/d13ae31f-fd45-431a-b48e-c5895bbc193e.png',
| title: '深圳湾公园一女子落水,三名男子接力及时施救',
| evaluate: (Math.random() * 10).toFixed(2),
| collection: (Math.random() * 100).toFixed(2),
| price: (Math.random() * 10).toFixed(2),
| monSales: (Math.random() * 20).toFixed(2),
| id: 10,
| loading: true,
| },
| {
| img: 'http://z0.sinaimg.cn/auto/resize?size=235_156&img=http://n.sinaimg.cn/spider20210704/653/w930h523/20210704/d5d2-krwipas6444058.jpg',
| title: '36分钟,深圳平均通勤时间出炉!GDP10强城市中仅输杭州',
| evaluate: (Math.random() * 10).toFixed(2),
| collection: (Math.random() * 100).toFixed(2),
| price: (Math.random() * 10).toFixed(2),
| monSales: (Math.random() * 20).toFixed(2),
| id: 111,
| loading: true,
| },
|
| {
| img: 'http://z0.sinaimg.cn/auto/resize?size=235_156&img=http://n.sinaimg.cn/spider20210702/653/w930h523/20210702/ece2-krwipas4411140.jpg',
| title: '煖声音第126期|愿你有诗酒趁年华的洒脱,也有岁月沉淀后的坚定从容',
| evaluate: (Math.random() * 10).toFixed(2),
| collection: (Math.random() * 100).toFixed(2),
| price: (Math.random() * 10).toFixed(2),
| monSales: (Math.random() * 20).toFixed(2),
| id: 6,
| loading: true,
| },
| ];
|
|