mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
46 lines
807 B
JavaScript
46 lines
807 B
JavaScript
import { create } from '../common/create';
|
|
|
|
create({
|
|
classes: [
|
|
'price-class',
|
|
'button-class'
|
|
],
|
|
props: {
|
|
tip: [String, Boolean],
|
|
type: Number,
|
|
price: Number,
|
|
label: String,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
buttonText: String,
|
|
currency: {
|
|
type: String,
|
|
value: '¥'
|
|
},
|
|
buttonType: {
|
|
type: String,
|
|
value: 'danger'
|
|
}
|
|
},
|
|
options: {
|
|
multipleSlots: true
|
|
},
|
|
computed: {
|
|
hasPrice() {
|
|
return typeof this.data.price === 'number';
|
|
},
|
|
priceStr() {
|
|
return (this.data.price / 100).toFixed(2);
|
|
},
|
|
tipStr() {
|
|
const { tip } = this.data;
|
|
return typeof tip === 'string' ? tip : '';
|
|
}
|
|
},
|
|
methods: {
|
|
onSubmit(event) {
|
|
this.$emit('submit', event.detail);
|
|
}
|
|
}
|
|
});
|