import { PropType, CSSProperties, defineComponent } from 'vue'; import { truthProp, createNamespace } from '../utils'; // Components import { Icon } from '../icon'; import { Button, ButtonType } from '../button'; const [name, bem, t] = createNamespace('submit-bar'); export default defineComponent({ name, props: { tip: String, label: String, price: Number, tipIcon: String, loading: Boolean, disabled: Boolean, textAlign: String as PropType, buttonText: String, buttonColor: String, suffixLabel: String, safeAreaInsetBottom: truthProp, decimalLength: { type: [Number, String], default: 2, }, currency: { type: String, default: '¥', }, buttonType: { type: String as PropType, default: 'danger', }, }, emits: ['submit'], setup(props, { emit, slots }) { const renderText = () => { const { price, label, currency, textAlign, suffixLabel, decimalLength, } = props; if (typeof price === 'number') { const pricePair = (price / 100).toFixed(+decimalLength).split('.'); const decimal = decimalLength ? `.${pricePair[1]}` : ''; return (
{label || t('label')} {currency} {pricePair[0]} {decimal} {suffixLabel && ( {suffixLabel} )}
); } }; const renderTip = () => { const { tip, tipIcon } = props; if (slots.tip || tip) { return (
{tipIcon && } {tip && {tip}} {slots.tip?.()}
); } }; const onClickButton = () => emit('submit'); const renderButton = () => { if (slots.button) { return slots.button(); } return (