BaseMoney.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <view :class="{ line: line, weight: weight }"
  3. :style="{color: '#' + incolor,fontWeight: fontWeight, display:(discount || inline) ? 'inline-block' : 'block', fontFamily: line?'Futura-Light':'Futura' }"
  4. class="base-money">
  5. <text v-if="!discount" class="symbol" :style="{'font-size': symbolSize +'rpx'}">¥</text><text class="integer"
  6. :style="{'font-size': integerSize +'rpx'}">{{ integer }}</text>
  7. <text v-if="digits && decimal != '00' && decimal != '0'" class="decimal"
  8. :style="{'font-size': decimalSize +'rpx'}">.{{ decimal }}</text>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'BaseMoney',
  14. props: {
  15. // 小数位数,为0则不显示
  16. digits: {
  17. type: Number,
  18. default: 2
  19. },
  20. fontWeight: {
  21. type: Number | String,
  22. default: 'inherit'
  23. },
  24. money: {
  25. type: String,
  26. default: ""
  27. },
  28. // 删除线
  29. line: {
  30. type: Boolean,
  31. default: false
  32. },
  33. // 粗体
  34. weight: {
  35. type: Boolean,
  36. default: false
  37. },
  38. incolor: {
  39. type: String,
  40. default: '424242'
  41. },
  42. symbolSize: {
  43. type: String,
  44. default: '20'
  45. },
  46. integerSize: {
  47. type: String,
  48. default: '26'
  49. },
  50. decimalSize: {
  51. type: String,
  52. default: '24'
  53. },
  54. discount: {
  55. type: Boolean,
  56. default: false
  57. },
  58. inline: {
  59. type: Boolean,
  60. default: false
  61. }
  62. },
  63. data() {
  64. return {
  65. integer: 0,
  66. decimal: 0
  67. };
  68. },
  69. watch: {
  70. money: {
  71. handler(newValue, oldValue) {
  72. let value = Number(newValue).toFixed(this.digits);
  73. value = value.split('.');
  74. this.integer = value[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',');
  75. if (value[1]) {
  76. this.decimal = (value[1].length == 2 && value[1].charAt(1) != 0) ? value[1] : (value[1].charAt(
  77. 0) || 0);
  78. }
  79. },
  80. immediate: true
  81. }
  82. }
  83. }
  84. </script>
  85. <style lang="scss" scoped>
  86. .base-money {
  87. font-family: Futura;
  88. // display: inline-block;
  89. &.line {
  90. text-decoration: line-through;
  91. }
  92. &.weight {
  93. font-weight: 500;
  94. }
  95. }
  96. </style>