education.html 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <include file="weixin@block:header"/>
  2. <title></title>
  3. <link rel="stylesheet" href="__TMPL__/weixin/public/assets/css/auth-education.css?v={$version}">
  4. <div id="app" v-cloak>
  5. <div class="fanhui2"><h1>我的认证</h1>
  6. <a href="/weixin/auth/index"><img src="__TMPL__/weixin/public/assets/img/tubiao37.png"></a>
  7. </div>
  8. <div class="main">
  9. <div class="shenf"><h1>学历认证</h1>
  10. <p>认证信息仅用于学历审核,所有信息都会自动打上码,拾光承诺绝对不会将用户资料用于任何第三方场景。</p></div>
  11. <div class="gerxix_box">
  12. <ul>
  13. <li><h1>认证方式:</h1><input class="tianx select-value4" id="education_type" type="text" placeholder="请选择" readonly :data-code="authInfo.education_type" :disabled="authInfo.education_check==2? true: false"></li>
  14. <li v-if="education_type!=2"><h1>毕业院校:</h1><input class="tianx" id="graduate" type="text" placeholder="请填写" :value="authInfo.graduate" :readonly="authInfo.education_check==2? true : false"></li>
  15. <li v-if="education_type!=2"><h1>认证学历:</h1> <input class="tianx select-value7" id="education" type="text" placeholder="请选择" readonly :data-code="authInfo.education" :disabled="authInfo.education_check==2? true : false"></li>
  16. <li v-if="education_type==2"><h1>在线验证码:</h1> <input class="tianx select-value7" id="education_code" type="text" :value="authInfo.education_code" placeholder="请填入验证码" :disabled="authInfo.education_check==2? true : false"></li>
  17. <li v-if="education_type==2" class="online" @click="showHelp()"><a target="_blank" ><h1>获取学信网在线验证码:</h1><img
  18. src="__TMPL__/weixin/public/assets/img/tubiao10.png" alt=""></a></li>
  19. </ul>
  20. </div>
  21. <div class="xiangce_tj" v-if="education_type!=2">
  22. <h1 class="tis">照片仅供审核他人无法查看,我们将加密处理</h1>
  23. <p class="error" v-if="authInfo.education_check==3">失败原因:<span v-text="authInfo.education_fail? authInfo.education_fail : '无'"></span></p>
  24. <ul>
  25. <li>
  26. <p>
  27. <img id="education_img" :class="(authInfo.education_img_preview || authInfo.preview)? 'pic' : ''" :src="authInfo.education_img_preview? authInfo.education_img_preview : '__TMPL__/weixin/public/assets/img/auth/icon-add.png'" onerror="this.src='__TMPL__/weixin/public/assets/img/icon-add.png'">
  28. <input type="file" accept="image/*" @change="selectImg($event,'education_img')" :disabled="authInfo.education_check==2? true : false">
  29. </p>
  30. <p class="tip">
  31. <span v-text="authInfo.education_img_preview? tips[authInfo.education_type]: '点击上传'"></span>
  32. </p>
  33. </li>
  34. </ul>
  35. </div>
  36. <div class="baoc_ann">
  37. <h1 v-if="authInfo.education_check != 2" @click="saveData()">提交</h1>
  38. <h1 v-else >已认证</h1>
  39. </div>
  40. </div>
  41. </div>
  42. <script src="__TMPL__/weixin/public/assets/js/auth-education.js?v={$version}"></script>
  43. <include file="weixin@block:footer"/>