uni-events-helper-wx
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
3.4 KiB

3 years ago
  1. export default {
  2. computed: {
  3. // 经处理后需要显示的值
  4. value() {
  5. const {
  6. text,
  7. mode,
  8. format,
  9. href
  10. } = this
  11. // 价格类型
  12. if (mode === 'price') {
  13. // 如果text不为金额进行提示
  14. !uni.$u.test.amount(text) && uni.$u.error('金额模式下,text参数需要为金额格式')
  15. // 进行格式化,判断用户传入的format参数为正则,或者函数,如果没有传入format,则使用默认的金额格式化处理
  16. if (uni.$u.test.func(format)) {
  17. // 如果用户传入的是函数,使用函数格式化
  18. return format(text)
  19. }
  20. // 如果format非正则,非函数,则使用默认的金额格式化方法进行操作
  21. return uni.$u.priceFormat(text, 2)
  22. } if (mode === 'date') {
  23. // 判断是否合法的日期或者时间戳
  24. !uni.$u.test.date(text) && uni.$u.error('日期模式下,text参数需要为日期或时间戳格式')
  25. // 进行格式化,判断用户传入的format参数为正则,或者函数,如果没有传入format,则使用默认的格式化处理
  26. if (uni.$u.test.func(format)) {
  27. // 如果用户传入的是函数,使用函数格式化
  28. return format(text)
  29. } if (this.formart) {
  30. // 如果format非正则,非函数,则使用默认的时间格式化方法进行操作
  31. return uni.$u.timeFormat(text, format)
  32. }
  33. // 如果没有设置format,则设置为默认的时间格式化形式
  34. return uni.$u.timeFormat(text, 'yyyy-mm-dd')
  35. } if (mode === 'phone') {
  36. // 判断是否合法的手机号
  37. !uni.$u.test.mobile(text) && uni.$u.error('手机号模式下,text参数需要为手机号码格式')
  38. if (uni.$u.test.func(format)) {
  39. // 如果用户传入的是函数,使用函数格式化
  40. return format(text)
  41. } if (format === 'encrypt') {
  42. // 如果format为encrypt,则将手机号进行星号加密处理
  43. return `${text.substr(0, 3)}****${text.substr(7)}`
  44. }
  45. return text
  46. } if (mode === 'name') {
  47. // 判断是否合法的字符粗
  48. !(typeof (text) === 'string') && uni.$u.error('姓名模式下,text参数需要为字符串格式')
  49. if (uni.$u.test.func(format)) {
  50. // 如果用户传入的是函数,使用函数格式化
  51. return format(text)
  52. } if (format === 'encrypt') {
  53. // 如果format为encrypt,则将姓名进行星号加密处理
  54. // return text.replace(/(?<=.)./g, '*').substring(0, 3)
  55. return text
  56. }
  57. return text
  58. } if (mode === 'link') {
  59. // 判断是否合法的字符粗
  60. !uni.$u.test.url(href) && uni.$u.error('超链接模式下,href参数需要为URL格式')
  61. return text
  62. }
  63. return text
  64. }
  65. }
  66. }