allPrice.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="container flex-row">
  3. <view>{{$(¥)}}</view>
  4. <view class="integer-part">{{integerPart}}</view>
  5. <view style="font-size: 32rpx;">{{decimalPart}}</view>
  6. </view>
  7. </template>
  8. <script>
  9. var config = require('../../common/config.js');
  10. var common = require('../../common/common.js');
  11. var http = require('../../common/http.js');
  12. var storage = require('../../common/storage.js');
  13. export default {
  14. props: {
  15. amount: {
  16. default: 0
  17. }
  18. },
  19. data() {
  20. return {
  21. // integerPart: '',
  22. // decimalPart: '',
  23. };
  24. }
  25. /**
  26. * 生命周期函数--监听页面加载
  27. */
  28. ,
  29. onLoad: function(options) {
  30. },
  31. /**
  32. * 生命周期函数--监听页面显示
  33. */
  34. onShow: function() {
  35. },
  36. computed: {
  37. formattedAmount() {
  38. const parts = String(this.amount).split('.');
  39. const integerPart = parts[0];
  40. const decimalPart = parts[1] ? `.${parts[1].slice(0, 2)}` : '.00';
  41. return {integerPart,decimalPart};
  42. },
  43. integerPart() {
  44. return this.formattedAmount.integerPart;
  45. },
  46. decimalPart() {
  47. return this.formattedAmount.decimalPart;
  48. }
  49. },
  50. methods: {
  51. }
  52. };
  53. </script>
  54. <style>
  55. @import './allPrice.css';
  56. </style>