index.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <view class="van-submit-bar custom-class">
  3. <slot name="top" />
  4. <view class="van-submit-bar__tip">
  5. <van-icon v-if="tipIcon" size="12px" :name="tipIcon" custom-class="van-submit-bar__tip-icon" />
  6. <view v-if="hasTip" class="van-submit-bar__tip-text">
  7. {{ tip }}
  8. </view>
  9. <slot name="tip" />
  10. </view>
  11. <view class="bar-class van-submit-bar__bar">
  12. <slot />
  13. <view v-if="hasPrice" class="van-submit-bar__text">
  14. <text>{{ label || '合计:' }}</text>
  15. <text class="van-submit-bar__price price-class">
  16. <text class="van-submit-bar__currency">{{ currency }}</text>
  17. <text class="van-submit-bar__price-integer">{{ integerStr }}</text>
  18. <text>{{ decimalStr }}</text>
  19. </text>
  20. <text class="van-submit-bar__suffix-label">{{ suffixLabel }}</text>
  21. </view>
  22. <van-button
  23. round
  24. :type="buttonType"
  25. :loading="loading"
  26. :disabled="disabled"
  27. class="van-submit-bar__button"
  28. custom-class="button-class"
  29. custom-style="width: 100%;"
  30. @click="onSubmit"
  31. >
  32. {{ loading ? '' : buttonText }}
  33. </van-button>
  34. </view>
  35. <view v-if="safeAreaInsetBottom" class="van-submit-bar__safe" />
  36. </view>
  37. </template>
  38. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  39. <script>
  40. 'use strict';
  41. Object.defineProperty(exports, '__esModule', {
  42. value: true
  43. });
  44. var component_1 = require('../common/component');
  45. component_1.VantComponent({
  46. classes: ['bar-class', 'price-class', 'button-class'],
  47. props: {
  48. tip: {
  49. type: null,
  50. observer: 'updateTip'
  51. },
  52. tipIcon: String,
  53. type: Number,
  54. price: {
  55. type: null,
  56. observer: 'updatePrice'
  57. },
  58. label: String,
  59. loading: Boolean,
  60. disabled: Boolean,
  61. buttonText: String,
  62. currency: {
  63. type: String,
  64. value: '¥'
  65. },
  66. buttonType: {
  67. type: String,
  68. value: 'danger'
  69. },
  70. decimalLength: {
  71. type: Number,
  72. value: 2,
  73. observer: 'updatePrice'
  74. },
  75. suffixLabel: String,
  76. safeAreaInsetBottom: {
  77. type: Boolean,
  78. value: true
  79. }
  80. },
  81. methods: {
  82. updatePrice: function () {
  83. var _a = this;
  84. var price = _a.price;
  85. var decimalLength = _a.decimalLength;
  86. var priceStrArr = typeof price === 'number' && (price / 100).toFixed(decimalLength).split('.');
  87. this.setData({
  88. hasPrice: typeof price === 'number',
  89. integerStr: priceStrArr && priceStrArr[0],
  90. decimalStr: decimalLength && priceStrArr ? '.' + priceStrArr[1] : ''
  91. });
  92. },
  93. updateTip: function () {
  94. this.setData({
  95. hasTip: typeof this.tip === 'string'
  96. });
  97. },
  98. onSubmit: function (event) {
  99. this.$emit('submit', event.detail);
  100. }
  101. }
  102. });
  103. </script>
  104. <style>
  105. @import './index.css';
  106. </style>