123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- // import { usersGetaddress } from "../service";
- /**
- * 参数校验器
- *
- * @param {*} data
- * @param {*} validatorList
- */
- export const validatorFun = (data, validatorList = []) => {
- // 默认校验器列表
- const validatorDefault = {
- // 是否不为空
- ['notNull']: val => !((typeof val) == "undefined" || val == null || val === ''),
- // 是否是手机号
- ['isMobile']: val => /^1[3456789]\d{9}$/.test(val),
- };
- const errList = [];
- validatorList.forEach(([key, ...list]) => {
- // 字段值
- const val = data[key];
- list.some(([validator, errMsg]) => {
- const validatorType = typeof validator;
- // 如果校验器类型为string,查找默认验证器,默认验证器不存在则不校验
- const stringResult = validatorType == 'string' && !(validatorDefault[validator] ?
- validatorDefault[validator](val) : true);
- // 如果校验器类型为function,调用该方法
- const funResult = validatorType == 'function' && !validator(val, data);
- // 判断校验结果,true = 不通过,false = 通过,不通过则收集错误信息
- if (stringResult || funResult) {
- errList.push({
- key,
- val,
- errMsg,
- validator,
- })
- }
- return stringResult || funResult;
- });
- });
- return errList;
- };
- /**
- * 数字转中文数字
- * @param {Object} num
- */
- export function numToChinese(num) {
- if (!/^\d*(\.\d*)?$/.test(num)) {
- alert("Number is wrong!");
- return "Number is wrong!";
- }
- var AA = new Array("零", "一", "二", "三", "四", "五", "六", "七", "八", "九");
- var BB = new Array("", "十", "百", "千", "万", "亿", "点", "");
- var a = ("" + num).replace(/(^0*)/g, "").split("."),
- k = 0,
- re = "";
- for (var i = a[0].length - 1; i >= 0; i--) {
- switch (k) {
- case 0:
- re = BB[7] + re;
- break;
- case 4:
- if (!new RegExp("0{4}\\d{" + (a[0].length - i - 1) + "}$").test(a[0]))
- re = BB[4] + re;
- break;
- case 8:
- re = BB[5] + re;
- BB[7] = BB[5];
- k = 0;
- break;
- }
- if (k % 4 == 2 && a[0].charAt(i + 2) != 0 && a[0].charAt(i + 1) == 0) re = AA[0] + re;
- if (a[0].charAt(i) != 0) re = AA[a[0].charAt(i)] + BB[k % 4] + re;
- k++;
- }
- if (a.length > 1) //加上小数部分(如果有小数部分)
- {
- re += BB[6];
- for (var i = 0; i < a[1].length; i++) re += AA[a[1].charAt(i)];
- }
- return re;
- };
- // /**
- // * 获取地址坐标
- // * @param {*} address
- // * @returns
- // */
- // export const addressToLocation = (address, success, fail, complete) => {
- // usersGetaddress({
- // data: {
- // address,
- // },
- // success: ({code, data, msg}) => {
- // console.log(data)
- // if (code == 1) {
- // success && success(data);
- // } else {
- // fail && fail({code, data, msg});
- // uni.showToast({
- // icon: 'none',
- // title: msg,
- // });
- // }
- // },
- // fail,
- // complete,
- // });
- // }
- // /**
- // * 导航
- // * @param {*} address
- // */
- // export const goAddress = (address) => {
- // addressToLocation(address, (result) => {
- // uni.openLocation({
- // latitude: result.lat,
- // longitude: result.lng,
- // success: function () {
- // console.log('success');
- // }
- // });
- // });
- // }
|