value.js 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. if (!/^\d+(\.\d+)?$/.test(text)) {
  15. uni.$u.error('金额模式下,text参数需要为金额格式');
  16. }
  17. // 进行格式化,判断用户传入的format参数为正则,或者函数,如果没有传入format,则使用默认的金额格式化处理
  18. if (uni.$u.test.func(format)) {
  19. // 如果用户传入的是函数,使用函数格式化
  20. return format(text)
  21. }
  22. // 如果format非正则,非函数,则使用默认的金额格式化方法进行操作
  23. return uni.$u.priceFormat(text, 2)
  24. } if (mode === 'date') {
  25. // 判断是否合法的日期或者时间戳
  26. !uni.$u.test.date(text) && uni.$u.error('日期模式下,text参数需要为日期或时间戳格式')
  27. // 进行格式化,判断用户传入的format参数为正则,或者函数,如果没有传入format,则使用默认的格式化处理
  28. if (uni.$u.test.func(format)) {
  29. // 如果用户传入的是函数,使用函数格式化
  30. return format(text)
  31. } if (format) {
  32. // 如果format非正则,非函数,则使用默认的时间格式化方法进行操作
  33. return uni.$u.timeFormat(text, format)
  34. }
  35. // 如果没有设置format,则设置为默认的时间格式化形式
  36. return uni.$u.timeFormat(text, 'yyyy-mm-dd')
  37. } if (mode === 'phone') {
  38. // 判断是否合法的手机号
  39. // !uni.$u.test.mobile(text) && uni.$u.error('手机号模式下,text参数需要为手机号码格式')
  40. if (uni.$u.test.func(format)) {
  41. // 如果用户传入的是函数,使用函数格式化
  42. return format(text)
  43. } if (format === 'encrypt') {
  44. // 如果format为encrypt,则将手机号进行星号加密处理
  45. return `${text.substr(0, 3)}****${text.substr(7)}`
  46. }
  47. return text
  48. } if (mode === 'name') {
  49. // 判断是否合法的字符粗
  50. !(typeof (text) === 'string') && uni.$u.error('姓名模式下,text参数需要为字符串格式')
  51. if (uni.$u.test.func(format)) {
  52. // 如果用户传入的是函数,使用函数格式化
  53. return format(text)
  54. } if (format === 'encrypt') {
  55. // 如果format为encrypt,则将姓名进行星号加密处理
  56. return this.formatName(text)
  57. }
  58. return text
  59. } if (mode === 'link') {
  60. // 判断是否合法的字符粗
  61. !uni.$u.test.url(href) && uni.$u.error('超链接模式下,href参数需要为URL格式')
  62. return text
  63. }
  64. return text
  65. }
  66. },
  67. methods: {
  68. // 默认的姓名脱敏规则
  69. formatName(name) {
  70. let value = ''
  71. if (name.length === 2) {
  72. value = name.substr(0, 1) + '*'
  73. } else if (name.length > 2) {
  74. let char = ''
  75. for (let i = 0, len = name.length - 2; i < len; i++) {
  76. char += '*'
  77. }
  78. value = name.substr(0, 1) + char + name.substr(-1, 1)
  79. } else {
  80. value = name
  81. }
  82. return value
  83. }
  84. }
  85. }