杨磊
4 天以前 ef37c59e055a990ce247b265b27d3fcef430a243
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<template>
  <div class="wrap">
    <div class="title">
      如何申请样书
      <p class="greenLine"></p>
    </div>
    <p class="content m40">
      样书申请功能只针对教师开放,在教师资格认证完成后,可申请样书。(每位老师每次只能申请样书3本,每年3次,申请的样书需和您的专业相关。)
    </p>
    <p class="paragraphHeadings">样书申请有两种方式:</p>
    <p class="content m25">
      1.纸质版样书申请:在所选图书下,点击样书申请按钮,选择纸质版样书申请。提交后,两个工作日审核并回复,审核通过后,可按照您填写的地址邮寄。
    </p>
    <p class="content m25b">
      2.电子版样书申请:在所选图书下,点击样书申请按钮,选择电子版版样书申请。注意,电子版样书不可下载并有阅读期限,使用周期为审核通过后一周。
    </p>
    <div class="buttonCombination">
      <el-button class="tearching" @click="toTeacherRegister"
        >教师认证</el-button
      >
      <el-button class="sampleBook" @click="teachingServices">样书选书服务</el-button>
    </div>
  </div>
</template>
<script>
export default {
  methods: {
    //跳转至教学服务
    teachingServices(){
      this.$router.push("/teachingServices/index")
    },
    toTeacherRegister() {
      // this.$router.push({
      //   name: "personalCenter",
      // });
      // 更改父组件值
      this.$parent.changeSelected('1');
      // this.$route.query.changeSelected("1");
    }
  }
};
</script>
<style lang="less" scoped>
.wrap {
  padding: 40px;
  .title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.8px;
    .greenLine {
      margin: 0 auto;
      margin-top: 10px;
      width: 60px;
      height: 6px;
      background-color: #00873c;
    }
  }
  .content {
    text-indent: 2em;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 36px;
    letter-spacing: 1.35px;
  }
  .m40 {
    margin: 30px 0;
  }
  .m25 {
    margin: 25px 0;
  }
  .paragraphHeadings {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    line-height: 36px;
    letter-spacing: 1.35px;
  }
  .buttonCombination {
    margin-top: 50px;
    text-align: right;
    .tearching {
      border: 1px solid #00873c;
      color: #00873c;
    }
    .sampleBook {
      background: linear-gradient(0deg, #00873c 0%, #00aa4c 100%);
      color: #fff;
    }
  }
}
</style>