鲁班七号
2023-05-22 83d52c58d6717a2233e1b04e22769f58afcbf20b
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
<template>
  <a-card title="各地区统计数据">
    <div class="item" v-for="(item, index) in lists" :key="'team' + index">
      <a style="border: 1px solid #1890ff;padding: 5px 8px;border-radius: 5px;">{{ item.title }}</a>
    </div>
  </a-card>
</template>
 
<script>
export default {
  name: 'Team',
  data () {
    return {
      lists: [
        {
          title: '全疆汇总',
          url:''
        },
        {
          title: '乌鲁木齐市',
          url:''
        },
        {
          title: '吐鲁番市',
          url:''
        },
        {
          title: '昌吉市',
          url:''
        },
        {
          title: '巴音郭楞蒙古自治州',
          url:''
        },
        {
          title: '伊犁哈萨克自治州',
          url:''
        },
        {
          title: '阿克苏地区',
          url:''
        },
      ]
    }
  }
}
</script>
 
<style lang="less" scoped>
.item {
  width: 50%;
  display: inline-block;
  margin-bottom: 20px;
  img {
    width: 32px;
    height: 32px;
    margin-right: 20px;
  }
}
</style>