马宇豪
2025-03-07 db905ecd14f63dba9337b4f4715584ef2d7e8c7e
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
<template>
  <div class="app-container" style="width: 100%;height: calc(100vh - 84px)">
    <div class="container">
      <div>
        <a href="https://222.82.242.194:1443/">
        <el-image fit="fill" :src="cover" style="width: 100%"></el-image>
        <div>远程监巡管理</div>
        </a>
      </div>
      <div>
        <a href="http://117.190.86.66:8616/">
        <el-image fit="fill" :src="fees" style="width: 100%"></el-image>
        <div>特种作业考试缴费</div>
        </a>
      </div>
      <div>
        <a href="http://47.109.31.73:81/">
        <el-image fit="fill" :src="history" style="width: 100%"></el-image>
        <div>历史数据存档</div>
        </a>
      </div>
 
 
    </div>
  </div>
</template>
 
<script>
import cover from '@/assets/images/invigilation.png'
import history from '@/assets/images/history.png'
import fees from '@/assets/images/fees.png'
export default {
  name: "cardPlatform",
  dicts: [],
  components: { },
  data() {
    return {
      cover,
      history,
      fees
    }
  },
  created() {
 
  },
  methods: {
 
  }
};
</script>
<style lang="scss" scoped>
.container{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
 
  &>div{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px 10px;
    box-sizing: border-box;
    width: 33%;
    div{
      font-size: 14px;
      margin-top: 33px;
      text-align: center;
    }
  }
}
</style>