// pages/user/identity_list/identity_list.js import { http, login_check } from "../../../utils/util" Page({ /** * 页面的初始数据 */ data: { _add: false, name: null, id_card: null, name_waring_text: null, id_waring_text: null }, swith() { this.setData({ _add: !this.data._add }) }, _delete(e) { var that = this wx.showModal({ content: '是否删除这条信息', success(res) { if (res.confirm) { http("/api/v1/delete-viewer", "post", { viewer_id: e.currentTarget.dataset.viewer_id }).then(res => { wx.showToast({ title: '删除成功!', icon: "none", duration: 2000, success(res) { that.onLoad({_add:0}) } }) }) } } }) }, save() { var that = this let name = this.data.name let id_card = this.data.id_card if (name && id_card) { Promise.all([this.check_name(name), this.check_id_code(id_card)]).then((res) => { let allow_name = res[0].allow_name let name_waring_text = res[0].name_waring_text let allow_id = res[1].allow_id let id_waring_text = res[1].id_waring_text if (allow_name && allow_id) { http("/api/v1/add-viewer", "post", { name, id_card }).then(res1 => { wx.showToast({ title: '添加成功!', icon: "none", duration: 2000, success(res) { if(that.data.navBack==1){ wx.navigateBack() var pages = getCurrentPages();//获取页面栈 if (pages.length > 1) { //上一个页面实例对象 var prePage = pages[pages.length - 2]; // http("/api/v1/order-confirm", "post", { // tid:prePage.data.tid // }).then(res => { // prePage.setData({_info:res}) // }) prePage.onLoad({tid:prePage.data.tid}) } }else{ that.onLoad({_add:0}) that.setData({ _add: !that.data._add, name: null, id_card: null }) } } }) }) } this.setData({ name_waring_text, id_waring_text }) }) } else { wx.showToast({ title: '请完善信息!', icon: "none", duration: 500 }) } }, check_name: function (name) { return new Promise((resolve, reject) => { var ts = this; var reg = /^[\u4E00-\u9FA5\uf900-\ufa2d·s]{2,6}$/; if (name.match(reg)) { resolve({ allow_name: true, name_waring_text: null }) } else { resolve({ allow_name: false, name_waring_text: '请填写真实姓名' }) } }) }, check_id_code: function (code) { return new Promise((resolve, reject) => { var ts = this; //身份证号合法性验证 //支持15位和18位身份证号 //支持地址编码、出生日期、校验位验证 var city = { 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: "澳门", 91: "国外 " }; var tip = ""; var pass = true; var reg = /^\d{6}(18|19|20)?\d{2}(0[1-9]|1[012])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)$/; if (!code || !code.match(reg)) { tip = "身份证号格式错误"; pass = false; } else if (!city[code.substr(0, 2)]) { tip = "地址编码错误"; pass = false; } else { //18位身份证需要验证最后一位校验位 if (code.length == 18) { code = code.split(''); //∑(ai×Wi)(mod 11) //加权因子 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 sum = 0; var ai = 0; var wi = 0; for (var i = 0; i < 17; i++) { ai = code[i]; wi = factor[i]; sum += ai * wi; } var last = parity[sum % 11]; if (parity[sum % 11] != code[17]) { tip = "校验位错误"; pass = false; } } } if (pass) { resolve({ allow_id: true, id_waring_text: null }) } if (!pass) { resolve({ allow_id: false, id_waring_text: tip }) } }) }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { /* 跳转来自下单页面 */ if(options._add==1){ this.setData({_add:true,navBack:1}) }else if (login_check(1)) { http("/api/v1/viewer-list", "get").then(res => { this.setData({ viewer_list: res.viewer_list }) }) } }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })