123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!--无友情链接 footer-->
- <template>
- <div class="client-footer">
- <div class="client-container">
- <div class="contact-box">
- <div class="contact-left-box">
- <dl>
- <dt>产品服务</dt>
- <dd @click="goExamPage">考试平台</dd>
- <dd @click="goPeixunPage">培训平台</dd>
- <dd @click="goKechengPage">课程开发</dd>
- </dl>
- <dl>
- <dt>关于栋科</dt>
- <dd @click="goaboutUs">公司简介</dd>
- <dd @click="goaboutUs">加入栋科</dd>
- <dd @click="goaboutUs">联系我们</dd>
- </dl>
- <dl>
- <dt>帮助中心</dt>
- <dd><a rel="nofollow" href="https://www.kancloud.cn/yhm-122130/helpks/795846" target="_blank">考试文档</a></dd>
- <dd><a rel="nofollow" href="https://www.kancloud.cn/yhm-122130/mtapx/814265" target="_blank">培训文档</a></dd>
- <!--<dd><a rel="nofollow" href="https://cdnks.mtavip.com/a/register?flug=1" target="_blank">应用下载</a></dd>-->
- </dl>
- <!--<dl>
- <dt>法律声明</dt>
- <dd>服务条款</dd>
- <dd>隐私声明</dd>
- <dd>知识维权</dd>
- </dl>-->
- <dl>
- <dt>关注我们</dt>
- <dd class="two-code-box">微信公众号<i class="two-dimensional-code"></i></dd>
- <!--<dd>新浪微博</dd>-->
- </dl>
- </div>
- <div class="contact-right-box">
- <h3>400-052-2130</h3>
- <p>周一至周日9:00-18:00</p>
- <p>(仅收市话费)</p>
- <a href="http://p.qiao.baidu.com/cps/chat?siteId=11735491&userId=10530011" target="_blank">联系客服</a>
- </div>
- </div>
- <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 辽ICP备09022904号-19</h5>
- </div>
- </div>
- </template>
- <script>
- import { mapState, mapGetters } from 'vuex';
- export default {
- name: 'mtaFooter',
- computed: {
- },
- methods: {
- // 考试链接
- goExamPage(){
- this.$router.push({ name: 'examsystem' });
- },
- // 培训链接
- goPeixunPage(){
- this.$router.push({ name: 'trainsystem' });
- },
- // 课程开发链接
- goKechengPage(){
- this.$router.push({ name: 'courseware' });
- },
- // 关于帮助中心
- goaboutUs(){
- this.$router.push({ name: 'introduction' });
- },
- },
- }
- </script>
|