util.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. // import { usersGetaddress } from "../service";
  2. /**
  3. * 参数校验器
  4. *
  5. * @param {*} data
  6. * @param {*} validatorList
  7. */
  8. export const validatorFun = (data, validatorList = []) => {
  9. // 默认校验器列表
  10. const validatorDefault = {
  11. // 是否不为空
  12. ['notNull']: val => !((typeof val) == "undefined" || val == null || val === ''),
  13. // 是否是手机号
  14. ['isMobile']: val => /^1[3456789]\d{9}$/.test(val),
  15. };
  16. const errList = [];
  17. validatorList.forEach(([key, ...list]) => {
  18. // 字段值
  19. const val = data[key];
  20. list.some(([validator, errMsg]) => {
  21. const validatorType = typeof validator;
  22. // 如果校验器类型为string,查找默认验证器,默认验证器不存在则不校验
  23. const stringResult = validatorType == 'string' && !(validatorDefault[validator] ?
  24. validatorDefault[validator](val) : true);
  25. // 如果校验器类型为function,调用该方法
  26. const funResult = validatorType == 'function' && !validator(val, data);
  27. // 判断校验结果,true = 不通过,false = 通过,不通过则收集错误信息
  28. if (stringResult || funResult) {
  29. errList.push({
  30. key,
  31. val,
  32. errMsg,
  33. validator,
  34. })
  35. }
  36. return stringResult || funResult;
  37. });
  38. });
  39. return errList;
  40. };
  41. /**
  42. * 数字转中文数字
  43. * @param {Object} num
  44. */
  45. export function numToChinese(num) {
  46. if (!/^\d*(\.\d*)?$/.test(num)) {
  47. alert("Number is wrong!");
  48. return "Number is wrong!";
  49. }
  50. var AA = new Array("零", "一", "二", "三", "四", "五", "六", "七", "八", "九");
  51. var BB = new Array("", "十", "百", "千", "万", "亿", "点", "");
  52. var a = ("" + num).replace(/(^0*)/g, "").split("."),
  53. k = 0,
  54. re = "";
  55. for (var i = a[0].length - 1; i >= 0; i--) {
  56. switch (k) {
  57. case 0:
  58. re = BB[7] + re;
  59. break;
  60. case 4:
  61. if (!new RegExp("0{4}\\d{" + (a[0].length - i - 1) + "}$").test(a[0]))
  62. re = BB[4] + re;
  63. break;
  64. case 8:
  65. re = BB[5] + re;
  66. BB[7] = BB[5];
  67. k = 0;
  68. break;
  69. }
  70. if (k % 4 == 2 && a[0].charAt(i + 2) != 0 && a[0].charAt(i + 1) == 0) re = AA[0] + re;
  71. if (a[0].charAt(i) != 0) re = AA[a[0].charAt(i)] + BB[k % 4] + re;
  72. k++;
  73. }
  74. if (a.length > 1) //加上小数部分(如果有小数部分)
  75. {
  76. re += BB[6];
  77. for (var i = 0; i < a[1].length; i++) re += AA[a[1].charAt(i)];
  78. }
  79. return re;
  80. };
  81. // /**
  82. // * 获取地址坐标
  83. // * @param {*} address
  84. // * @returns
  85. // */
  86. // export const addressToLocation = (address, success, fail, complete) => {
  87. // usersGetaddress({
  88. // data: {
  89. // address,
  90. // },
  91. // success: ({code, data, msg}) => {
  92. // console.log(data)
  93. // if (code == 1) {
  94. // success && success(data);
  95. // } else {
  96. // fail && fail({code, data, msg});
  97. // uni.showToast({
  98. // icon: 'none',
  99. // title: msg,
  100. // });
  101. // }
  102. // },
  103. // fail,
  104. // complete,
  105. // });
  106. // }
  107. // /**
  108. // * 导航
  109. // * @param {*} address
  110. // */
  111. // export const goAddress = (address) => {
  112. // addressToLocation(address, (result) => {
  113. // uni.openLocation({
  114. // latitude: result.lat,
  115. // longitude: result.lng,
  116. // success: function () {
  117. // console.log('success');
  118. // }
  119. // });
  120. // });
  121. // }