Explorar el Código

小程序管理新增身份证实名页面

hyq hace 6 años
padre
commit
aa57529aa0

+ 180 - 0
wx-mall/pages/ucenter/idCard/idCard.js

@@ -0,0 +1,180 @@
+var util = require('../../../utils/util.js');
+var api = require('../../../config/api.js');
+var app = getApp()
+Page({
+  data: {
+    userInfo: {},
+    curUser: {},
+    idNoM: '',
+    idNo: '',
+    userName: ''
+  },
+  onLoad: function (options) {
+    // 页面初始化 options为页面跳转所带来的参数
+    let that = this;
+  },
+  onReady: function () {
+
+  },
+  onShow: function () {
+    let that = this;
+    let userInfo = wx.getStorageSync('userInfo');
+    let token = wx.getStorageSync('token');
+
+    // 页面显示
+    if (userInfo && token) {
+      app.globalData.userInfo = userInfo;
+      app.globalData.token = token;
+    }
+
+    this.setData({
+      userInfo: app.globalData.userInfo,
+    });
+    util.request(api.getCurUser, {
+      userInfo: app.globalData.userInfo
+    }, 'POST').then(function (res) {
+      if (res.errno === 0) {
+        that.setData({
+          curUser: res.data
+        });
+        that.setData({
+          idNoM: that.formatidcard(res.data.idNo),
+          idNo: res.data.idNo,
+          userName: res.data.username
+        });
+      }
+    });
+  },
+  onHide: function () {
+    // 页面隐藏
+
+  },
+  onUnload: function () {
+    // 页面关闭
+  },
+  saveIdCard: function (e) {
+    if (!e.detail.value.idNo) {
+      util.showErrorToast('身份证号不能为空');
+      return false;
+    }
+
+    if (!e.detail.value.username) {
+      util.showErrorToast('姓名不能为空');
+      return false;
+    }
+
+    if (this.data.idNoM == '') {
+      this.setData({
+        idNo: e.detail.value.idNo
+      });
+    }
+    if (this.data.userName != e.detail.value.username) {
+      this.setData({
+        userName: e.detail.value.username
+      });
+    }
+
+    if (!this.checkIdcard(this.data.idNo)) {
+      wx.showModal({
+        title: '提示信息',
+        content: '请输入正确的身份证号',
+        showCancel: false
+      });
+      return false;
+    }
+
+    let that = this;
+    util.request(api.idCardRealName, {
+      idNo: that.data.idNo,
+      userName: that.data.userName
+    }, 'POST').then(function (res) {
+      if (res.errno === 0) {
+        //成功提示
+        wx.showToast({
+          title: res.errmsg
+        });
+        // wx.switchTab({
+        //   url: '/pages/ucenter/index/index'
+        // });
+      } else {
+        wx.showModal({
+          title: '提示信息',
+          content: res.errmsg,
+          showCancel: false
+        });
+      }
+    });
+  },
+  formatidcard(idcard) {
+    if (idcard.length == 15) {
+      return idcard.replace(/(\d{6})\d{6}(\d{3})/, "$1******$2");
+    } else {
+      return idcard.replace(/(\d{5})\d{6}(\d{6})/, "$1******$2");
+    }
+  },
+  // 校验身份证号
+  //校验码校验
+  checkCode: function (val) {
+    var p = /^[1-9]\d{5}(18|19|20)\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/;
+    var factor = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2];
+    var parity = [1, 0, 'X', 9, 8, 7, 6, 5, 4, 3, 2];
+    var code = val.substring(17);
+    if (p.test(val)) {
+      var sum = 0;
+      for (var i = 0; i < 17; i++) {
+        sum += val[i] * factor[i];
+      }
+      if (parity[sum % 11] == code.toUpperCase()) {
+        return true;
+      }
+    }
+    return false;
+  },
+  //省份校验
+  checkProv: function (val) {
+    var pattern = /^[1-9][0-9]/;
+    var provs = { 11: "北京", 12: "天津", 13: "河北", 14: "山西", 15: "内蒙古", 21: "辽宁", 22: "吉林", 23: "黑龙江 ", 31: "上海", 32: "江苏", 33: "浙江", 34: "安徽", 35: "福建", 36: "江西", 37: "山东", 41: "河南", 42: "湖北 ", 43: "湖南", 44: "广东", 45: "广西", 46: "海南", 50: "重庆", 51: "四川", 52: "贵州", 53: "云南", 54: "西藏 ", 61: "陕西", 62: "甘肃", 63: "青海", 64: "宁夏", 65: "新疆", 71: "台湾", 81: "香港", 82: "澳门" };
+    if (pattern.test(val)) {
+      if (provs[val]) {
+        return true;
+      }
+    }
+    return false;
+  },
+  //出生日期码校验
+  checkDate: function (val) {
+    var pattern = /^(18|19|20)\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)$/;
+    if (pattern.test(val)) {
+      var year = val.substring(0, 4);
+      var month = val.substring(4, 6);
+      var date = val.substring(6, 8);
+      var date2 = new Date(year + "-" + month + "-" + date);
+      if (date2 && date2.getMonth() == (parseInt(month) - 1)) {
+        return true;
+      }
+    }
+    return false;
+  },
+  checkIdcard: function (val) {
+    if (this.checkCode(val)) {
+      var date = val.substring(6, 14);
+      if (this.checkDate(date)) {
+        if (this.checkProv(val.substring(0, 2))) {
+          return true;
+        }
+      }
+    }
+    // this.isError("请输入正确身份证号");
+    return false;
+  },
+  // 通过身份证号获取出生日期和性别
+  getBirthAndSex: function (idCard) {
+    var that = this;
+    var info = {};
+    var birth = (idCard.length === 18) ? idCard.slice(6, 14) : idCard.slice(6, 12);
+    var order = (idCard.length === 18) ? idCard.slice(-2, -1) : idCard.slice(-1);
+    info.birthDay = (idCard.length === 18) ? ([birth.slice(0, 4), birth.slice(4, 6), birth.slice(-2)]).join('-') : (['19' + birth.slice(0, 2), birth.slice(2, 4), birth.slice(-2)]).join('-');
+    info.sex = (order % 2 === 0 ? 2 : 0);
+    return info;
+  }
+})

+ 3 - 0
wx-mall/pages/ucenter/idCard/idCard.json

@@ -0,0 +1,3 @@
+{
+  "navigationBarTitleText": "身份证实名"
+}

+ 20 - 0
wx-mall/pages/ucenter/idCard/idCard.wxml

@@ -0,0 +1,20 @@
+<form bindsubmit="saveIdCard" report-submit='true'>
+<view class="add-idCard">
+  <view class="add-form">
+  <text class='id-card-txt'>身份证信息用于跨境商品入境申报,请输入购买者姓名和身份证号码一致的身份证信息确保正常清关;姓名需要与身份证信息一致。</text>
+    <view class="form-item">
+      <label>身份证号:</label>
+      <input class="input" bindinput="bindinputUserName" name='idNo' placeholder="身份证" value="{{idNoM}}" auto-focus/>
+    </view>
+    <view class="form-item">
+      <label>姓名:</label>
+      <input class="input" bindinput="bindinputTelNumber" name='username' value="{{curUser.username}}" placeholder="姓名" />
+    </view>
+  </view>
+
+  <view class="btns">
+    <button class="save" form-type="submit">保存</button>
+  </view>
+
+</view>
+  </form>

+ 191 - 0
wx-mall/pages/ucenter/idCard/idCard.wxss

@@ -0,0 +1,191 @@
+page {
+  height: 100%;
+  background: #f4f4f4;
+}
+
+.add-idCard .add-form {
+  background: #fff;
+  width: 100%;
+  height: auto;
+  overflow: hidden;
+}
+
+.add-idCard .form-item {
+  height: 116rpx;
+  padding-left: 31.25rpx;
+  border-bottom: 1px solid #d9d9d9;
+  display: flex;
+  align-items: center;
+  padding-right: 31.25rpx;
+}
+
+.add-idCard .form-item .location{
+ height: 60rpx;
+ width: 60rpx;
+}
+
+.add-idCard label {
+  width: 160rpx;
+  font-weight: bold;
+}
+
+.add-idCard .input {
+  flex: 1;
+  height: 44rpx;
+  line-height: 44rpx;
+  overflow: hidden;
+}
+
+.add-idCard .form-default {
+  border-bottom: 1px solid #d9d9d9;
+  height: 96rpx;
+  background: #fafafa;
+  padding-top: 28rpx;
+  font-size: 28rpx;
+}
+
+.default-input {
+  margin: 0 auto;
+  display: block;
+  width: 240rpx;
+  height: 40rpx;
+  padding-left: 50rpx;
+  line-height: 40rpx;
+  background: url(http://image.meiping123.com/upload/20180104/1039217652163c.png) 1rpx -448rpx no-repeat;
+  background-size: 38rpx 486rpx;
+  font-size: 28rpx;
+}
+
+.default-input.selected {
+  background: url(http://image.meiping123.com/upload/20180104/1039217652163c.png) 0 -192rpx no-repeat;
+  background-size: 38rpx 486rpx;
+}
+
+.add-idCard .btns {
+  position: fixed;
+  bottom: 0;
+  left: 0;
+  overflow: hidden;
+  display: flex;
+  height: 100rpx;
+  width: 100%;
+}
+
+.add-idCard .cannel, .add-idCard .save {
+  flex: 1;
+  height: 100rpx;
+  text-align: center;
+  line-height: 100rpx;
+  font-size: 28rpx;
+  color: #fff;
+  border: none;
+  border-radius: 0;
+}
+
+.add-idCard .cannel {
+  background: #333;
+}
+
+.add-idCard .save {
+  background: #b4282d;
+}
+
+.region-select {
+  width: 100%;
+  height: 600rpx;
+  background: #fff;
+  position: fixed;
+  z-index: 10;
+  left: 0;
+  bottom: 0;
+}
+
+.region-select .hd {
+  height: 108rpx;
+  width: 100%;
+  border-bottom: 1px solid #f4f4f4;
+  padding: 46rpx 30rpx 0 30rpx;
+}
+
+.region-select .region-selected {
+  float: left;
+  height: 60rpx;
+  display: flex;
+}
+
+.region-select .region-selected .item {
+  max-width: 140rpx;
+  margin-right: 30rpx;
+  text-align: left;
+  line-height: 60rpx;
+  height: 100%;
+  color: #333;
+  font-size: 28rpx;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+
+.region-select .region-selected .item.disabled {
+  color: #999;
+}
+
+.region-select .region-selected .item.selected {
+  color: #b4282d;
+}
+
+.region-select .done {
+  float: right;
+  height: 60rpx;
+  width: 60rpx;
+  border: none;
+  background: #fff;
+  line-height: 60rpx;
+  text-align: center;
+  color: #333;
+  font-size: 28rpx;
+}
+
+.region-select .done.disabled {
+  color: #999;
+}
+
+.region-select .bd {
+  height: 492rpx;
+  width: 100%;
+  padding: 0 30rpx;
+}
+
+.region-select .region-list {
+  height: auto;
+  overflow: scroll;
+}
+
+.region-select .region-list .item {
+  width: 100%;
+  height: 104rpx;
+  line-height: 104rpx;
+  text-align: left;
+  color: #333;
+  font-size: 28rpx;
+}
+
+.region-select .region-list .item.selected {
+  color: #b4282d;
+}
+
+.bg-mask {
+  height: 100%;
+  width: 100%;
+  background: rgba(0, 0, 0, 0.4);
+  position: fixed;
+  top: 0;
+  left: 0;
+  z-index: 8;
+}
+
+.id-card-txt{
+  font-size:22rpx;
+  margin-left: 20rpx;
+  color: #a5a3a3;
+}