mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
65 lines
1.4 KiB
Vue
65 lines
1.4 KiB
Vue
<template>
|
|
<div :class="b()">
|
|
<div :class="b('tip')" v-show="tip || $slots.tip">
|
|
{{ tip }}<slot name="tip" />
|
|
</div>
|
|
<div :class="b('bar')">
|
|
<slot />
|
|
<div :class="b('price')">
|
|
<template v-if="hasPrice">
|
|
<span>{{ label || $t('label') }}</span>
|
|
<span :class="b('price-integer')">{{ currency }}{{ priceInterger }}.</span>
|
|
<span :class="b('price-decimal')">{{ priceDecimal }}</span>
|
|
</template>
|
|
</div>
|
|
<van-button :type="buttonType" :disabled="disabled" :loading="loading" @click="$emit('submit')">
|
|
{{ loading ? '' : buttonText }}
|
|
</van-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import VanButton from '../button';
|
|
import create from '../utils/create';
|
|
|
|
export default create({
|
|
name: 'submit-bar',
|
|
|
|
components: {
|
|
VanButton
|
|
},
|
|
|
|
props: {
|
|
tip: String,
|
|
type: Number,
|
|
price: Number,
|
|
label: String,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
buttonText: String,
|
|
currency: {
|
|
type: String,
|
|
default: '¥'
|
|
},
|
|
buttonType: {
|
|
type: String,
|
|
default: 'danger'
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
hasPrice() {
|
|
return typeof this.price === 'number';
|
|
},
|
|
priceInterger() {
|
|
return Math.floor(this.price / 100);
|
|
},
|
|
priceDecimal() {
|
|
const decimal = Math.floor(this.price % 100);
|
|
return (decimal < 10 ? '0' : '') + decimal;
|
|
}
|
|
}
|
|
});
|
|
</script>
|