| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- import { STORAGE_KEY } from "../datas/GlobalStorage";
- import Loader from "../Loader";
- import GameM, { AUDIO_TYPE } from "../manager/GameM";
- import UiM, { PANEL_NAME } from "../manager/UiM";
- import EffectNode from "./EffectNode";
- /** 实名认证 */
- const { ccclass, property } = cc._decorator;
- @ccclass
- export default class Certification extends cc.Component {
- @property(cc.EditBox)
- editBox: cc.EditBox = null
- @property(cc.Node)
- labResult: cc.Node = null
- start() {
- }
- clickClose() {
- GameM.audioM.playEffect(AUDIO_TYPE.button)
- UiM.Instance.offPanel(PANEL_NAME.CertificationNode)
- }
- clickSure() {
- GameM.audioM.playEffect(AUDIO_TYPE.button)
- if (this.labResult.active) {
- UiM.Instance.offPanel(PANEL_NAME.CertificationNode)
- }
- else {
- this.validateIdCard(this.editBox.string)
- }
- }
- onDisable() {
- Loader.Inst.passAnti = true
- }
- /*
- * 身份证15位编码规则:dddddd yymmdd xx p
- * dddddd:6位地区编码
- * yymmdd: 出生年(两位年)月日,如:910215
- * xx: 顺序编码,系统产生,无法确定
- * p: 性别,奇数为男,偶数为女
- *
- * 身份证18位编码规则:dddddd yyyymmdd xxx y
- * dddddd:6位地区编码
- * yyyymmdd: 出生年(四位年)月日,如:19910215
- * xxx:顺序编码,系统产生,无法确定,奇数为男,偶数为女
- * y: 校验码,该位数值可通过前17位计算获得
- *
- * 前17位号码加权因子为 Wi = [ 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 ]
- * 验证位 Y = [ 1, 0, 10, 9, 8, 7, 6, 5, 4, 3, 2 ]
- * 如果验证码恰好是10,为了保证身份证是十八位,那么第十八位将用X来代替
- * 校验位计算公式:Y_P = mod( ∑(Ai×Wi),11 )
- * i为身份证号码1...17 位; Y_P为校验码Y所在校验码数组位置
- */
- validateIdCard(idCard) {
- //15位和18位身份证号码的正则表达式
- var regIdCard = /^(^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$)|(^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])((\d{4})|\d{3}[Xx])$)$/;
- //如果通过该验证,说明身份证格式正确,但准确性还需计算
- if (regIdCard.test(idCard)) {
- if (idCard.length == 18) {
- var idCardWi = new Array(7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2); //将前17位加权因子保存在数组里
- var idCardY = new Array(1, 0, 10, 9, 8, 7, 6, 5, 4, 3, 2); //这是除以11后,可能产生的11位余数、验证码,也保存成数组
- var idCardWiSum = 0; //用来保存前17位各自乖以加权因子后的总和
- for (var i = 0; i < 17; i++) {
- idCardWiSum += idCard.substring(i, i + 1) * idCardWi[i];
- }
- var idCardMod = idCardWiSum % 11;//计算出校验码所在数组的位置
- var idCardLast = idCard.substring(17);//得到最后一位身份证号码
- //如果等于2,则说明校验码是10,身份证号码最后一位应该是X
- if (idCardMod == 2) {
- if (idCardLast == "X" || idCardLast == "x") {
- this.checkShowResult()
- } else {
- Loader.Inst.PlayTip("身份证号码错误!");
- }
- } else {
- //用计算出的验证码与最后一位身份证号码匹配,如果一致,说明通过,否则是无效的身份证号码
- if (idCardLast == idCardY[idCardMod]) {
- this.checkShowResult()
- } else {
- Loader.Inst.PlayTip("身份证号码错误!");
- }
- }
- }
- } else {
- Loader.Inst.PlayTip("身份证格式不正确!");
- }
- }
- checkShowResult() {
- let year = this.editBox.string.slice(6, 10)
- if (Number(year) > 2003) {
- Loader.Inst.PlayTip("恭喜通过验证啦!");
- this.editBox.node.active = false
- this.labResult.active = true
- GameM.commonData.identification = 2
- }
- else {
- Loader.Inst.PlayTip("恭喜通过验证啦!");
- UiM.Instance.offPanel(PANEL_NAME.CertificationNode)
- GameM.commonData.identification = 1
- }
- GameM.globalStorage.setStorage(STORAGE_KEY.identification, GameM.commonData.identification)
- }
- }
|