123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var component_1 = require("../common/component");
- var safe_area_1 = require("../mixins/safe-area");
- component_1.VantComponent({
- mixins: [safe_area_1.safeArea()],
- classes: [
- 'bar-class',
- 'price-class',
- 'button-class'
- ],
- props: {
- tip: {
- type: null,
- observer: 'updateTip'
- },
- tipIcon: String,
- type: Number,
- price: {
- type: null,
- observer: 'updatePrice'
- },
- label: String,
- loading: Boolean,
- disabled: Boolean,
- buttonText: String,
- currency: {
- type: String,
- value: '¥'
- },
- buttonType: {
- type: String,
- value: 'danger'
- },
- decimalLength: {
- type: Number,
- value: 2,
- observer: 'updatePrice'
- },
- suffixLabel: String
- },
- methods: {
- updatePrice: function () {
- var _a = this.data, price = _a.price, decimalLength = _a.decimalLength;
- this.set({
- hasPrice: typeof price === 'number',
- priceStr: (price / 100).toFixed(decimalLength)
- });
- },
- updateTip: function () {
- this.set({ hasTip: typeof this.data.tip === 'string' });
- },
- onSubmit: function (event) {
- this.$emit('submit', event.detail);
- }
- }
- });
|