import { postApprove } from '../../services/index.js' import { uploadImg } from '../../services/uploadFile.js' import { imgServerUrl, imgServerUrl_new } from '../../config/config.js' var app = getApp() Page({ data: { imgServerUrl: imgServerUrl, imgServerUrl_new: imgServerUrl_new, realName: '', idNum: '', idFrontPic: '', idBackPic: '', idPersonPic: '' }, onLoad: function (options) { }, chooseImage(e) { let index = e.currentTarget.dataset.index var up_type; switch (index) { case 1: up_type = '1'; break; case 2: up_type = '2'; break; case 3: up_type = '3'; break; } uploadImg(up_type).then(res => { let image = res.data.imgUrl if (index == 1) { this.setData({ idFrontPic: image }) } else if (index == 2) { this.setData({ idBackPic: image }) } else if (index == 3) { this.setData({ idPersonPic: image }) } }) }, changeName(e) { this.setData({ realName: e.detail.value.trim() }) }, changeId(e) { this.setData({ idNum: e.detail.value.trim() }) }, submit(e) { let { formId } = e.detail let { realName, idNum, idFrontPic, idBackPic, idPersonPic } = this.data; if (realName == "") { wx.showToast({ title: '请输入姓名', icon: 'none' }) return false; } if (idNum.toString().length != 18) { wx.showToast({ title: '请输入18位身份证号码', icon: 'none' }) return false; } if (idFrontPic == "") { wx.showToast({ title: '请上传身份证正面照', icon: 'none' }) return false; } if (idBackPic == "") { wx.showToast({ title: '请上传身份证反面照', icon: 'none' }) return false; } if (idPersonPic == "") { wx.showToast({ title: '请上传手持身份证照片', icon: 'none' }) return false; } wx.showLoading({ title: '正在创建...', mask: true }) wx.hideLoading() wx.showLoading({ title: '正在提交...', mask: true }) let paramsObj = { realName: realName, idCardNumber: idNum, idFrontPic: idFrontPic, idBackPic: idBackPic, idPersonPic: idPersonPic, minaType: 1, //1:代表小程序 user_id: app.globalData.userId, user_token: app.globalData.userToken, member_id: app.globalData.memberId } Object.assign(paramsObj); postApprove(paramsObj).then(data => { wx.hideLoading() wx.showToast({ title: '提交成功', }) wx.redirectTo({ url: '../result/index?type=auth&status=2', }) }) // 身份认证上报订阅信息 wx.aldPushSubscribeMessage({ eventId: '5ea25ae37739104342928e96' }); }, onError(err) { app.aldstat.sendEvent('报错', { 'err': err }); }, })