| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <include file="weixin@block:header"/>
- <title></title>
- <link rel="stylesheet" href="__TMPL__/weixin/public/assets/css/auth-education.css?v={$version}">
- <div id="app" v-cloak>
- <div class="fanhui2"><h1>我的认证</h1>
- <a href="/weixin/auth/index"><img src="__TMPL__/weixin/public/assets/img/tubiao37.png"></a>
- </div>
- <div class="main">
- <div class="shenf"><h1>学历认证</h1>
- <p>认证信息仅用于学历审核,所有信息都会自动打上码,拾光承诺绝对不会将用户资料用于任何第三方场景。</p></div>
- <div class="gerxix_box">
- <ul>
- <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>
- <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>
- <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>
- <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>
- <li v-if="education_type==2" class="online" @click="showHelp()"><a target="_blank" ><h1>获取学信网在线验证码:</h1><img
- src="__TMPL__/weixin/public/assets/img/tubiao10.png" alt=""></a></li>
- </ul>
- </div>
- <div class="xiangce_tj" v-if="education_type!=2">
- <h1 class="tis">照片仅供审核他人无法查看,我们将加密处理</h1>
- <p class="error" v-if="authInfo.education_check==3">失败原因:<span v-text="authInfo.education_fail? authInfo.education_fail : '无'"></span></p>
- <ul>
- <li>
- <p>
- <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'">
- <input type="file" accept="image/*" @change="selectImg($event,'education_img')" :disabled="authInfo.education_check==2? true : false">
- </p>
- <p class="tip">
- <span v-text="authInfo.education_img_preview? tips[authInfo.education_type]: '点击上传'"></span>
- </p>
- </li>
- </ul>
- </div>
- <div class="baoc_ann">
- <h1 v-if="authInfo.education_check != 2" @click="saveData()">提交</h1>
- <h1 v-else >已认证</h1>
- </div>
- </div>
- </div>
- <script src="__TMPL__/weixin/public/assets/js/auth-education.js?v={$version}"></script>
- <include file="weixin@block:footer"/>
|