Blame view

src/views/down/index.vue 1.34 KB
4c4f7640   梁保满   路由表,路由前端文件
1
  <template>
ca39cc52   阿宝   飞书问题处理
2
    <div class="content-box">
560c12f2   阿宝   学校设置,软件下载
3
      <back-box>
23a6dc5f   阿宝   学校管理相关接口简单对接
4
5
6
7
        <template slot="title">
          <span>软件下载</span>
        </template>
      </back-box>
560c12f2   阿宝   学校设置,软件下载
8
9
10
11
12
13
14
15
16
17
18
19
20
21
      <div class="page-content">
        <div class="down-item">
          <p class="txt">
            K12公私立学校、高等院校、教育培训机构的课堂互动教学、即时课堂测验
          </p>
          <el-button plan round @click="links">授课端下载</el-button>
        </div>
        <div class="down-item">
          <p class="txt">
            配合发卡器硬件,方便学校管理员进行发卡补卡操作的软件。
          </p>
          <el-button plan round>发卡软件下载</el-button>
        </div>
      </div>
4c4f7640   梁保满   路由表,路由前端文件
22
23
24
25
26
    </div>
  </template>
  
  <script>
  export default {
ca39cc52   阿宝   飞书问题处理
27
28
    methods: {
      links() {
560c12f2   阿宝   学校设置,软件下载
29
        this.$router.push({
ca39cc52   阿宝   飞书问题处理
30
31
32
33
          path: "/downClient",
        });
      },
    },
560c12f2   阿宝   学校设置,软件下载
34
  };
4c4f7640   梁保满   路由表,路由前端文件
35
36
  </script>
  
560c12f2   阿宝   学校设置,软件下载
37
  <style lang="scss" scoped>
ca39cc52   阿宝   飞书问题处理
38
39
40
  .content-box {
    width: 100%;
  }
560c12f2   阿宝   学校设置,软件下载
41
  .page-content {
560c12f2   阿宝   学校设置,软件下载
42
    display: flex;
ca39cc52   阿宝   飞书问题处理
43
44
    padding-top: 50px;
    margin-left: 240px;
560c12f2   阿宝   学校设置,软件下载
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
    .down-item {
      width: 200px;
      padding: 50px 20px;
      border-radius: 20px;
      margin: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: #f8f8f8;
      box-shadow: 2px 2px 5px #ccc;
      .txt {
        font-size: 16px;
        color: #7f7f7f;
        line-height: 24px;
        height: 120px;
      }
    }
  }
4c4f7640   梁保满   路由表,路由前端文件
64
  </style>