Blame view

src/views/examinationPaper/index.vue 640 Bytes
4c4f7640   梁保满   路由表,路由前端文件
1
2
  <template>
    <div>
d4283687   梁保满   首页布局完成,页面顶部返回组件
3
4
5
6
7
8
9
10
11
12
13
14
15
16
      <back-box>
        <template slot="title">
          <i class="fa fa-mail-reply-all"></i>
          <span>备题组卷</span>
        </template>
        <template slot="btns">
          
        </template>
      </back-box>
      <div class="content">
        <router-link to="/examinationPaperAdd">添加答题卡</router-link>
        <router-link to="/examinationPaperRecycle">已归档答题卡</router-link>
        <router-link to="/examinationPaperEdit">修改答案</router-link>
      </div>
4c4f7640   梁保满   路由表,路由前端文件
17
18
19
20
21
    </div>
  </template>
  
  <script>
  export default {
d4283687   梁保满   首页布局完成,页面顶部返回组件
22
23
    name: "examinationPaper",
  };
4c4f7640   梁保满   路由表,路由前端文件
24
25
  </script>
  
d4283687   梁保满   首页布局完成,页面顶部返回组件
26
27
28
  <style scoped lang="scss">
  .container {
  }
4c4f7640   梁保满   路由表,路由前端文件
29
  </style>