mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
165 lines
3.5 KiB
Vue
165 lines
3.5 KiB
Vue
<template>
|
|
<demo-section>
|
|
<demo-block :title="$t('title1')">
|
|
<van-button
|
|
type="primary"
|
|
@click="$toast($t('text'))"
|
|
>
|
|
{{ $t('title1') }}
|
|
</van-button>
|
|
<van-button
|
|
type="primary"
|
|
@click="$toast($t('longText'))"
|
|
>
|
|
{{ $t('longTextButton') }}
|
|
</van-button>
|
|
</demo-block>
|
|
|
|
<demo-block :title="$t('title2')">
|
|
<van-button
|
|
type="primary"
|
|
@click="showLoadingToast"
|
|
>
|
|
{{ $t('title2') }}
|
|
</van-button>
|
|
</demo-block>
|
|
|
|
<demo-block :title="$t('title3')">
|
|
<van-button
|
|
type="info"
|
|
@click="showSuccessToast"
|
|
>
|
|
{{ $t('success') }}
|
|
</van-button>
|
|
<van-button
|
|
type="danger"
|
|
@click="showFailToast"
|
|
>
|
|
{{ $t('fail') }}
|
|
</van-button>
|
|
</demo-block>
|
|
|
|
<demo-block :title="$t('customIcon')">
|
|
<van-button
|
|
type="primary"
|
|
@click="showIconToast"
|
|
>
|
|
{{ $t('customIcon') }}
|
|
</van-button>
|
|
|
|
<van-button
|
|
type="primary"
|
|
@click="showImageToast"
|
|
>
|
|
{{ $t('customImage') }}
|
|
</van-button>
|
|
</demo-block>
|
|
|
|
<demo-block :title="$t('advancedUsage')">
|
|
<van-button
|
|
type="primary"
|
|
@click="showCustomizedToast"
|
|
>
|
|
{{ $t('advancedUsage') }}
|
|
</van-button>
|
|
</demo-block>
|
|
</demo-section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
i18n: {
|
|
'zh-CN': {
|
|
title1: '文字提示',
|
|
title2: '加载提示',
|
|
title3: '成功/失败提示',
|
|
success: '成功提示',
|
|
fail: '失败提示',
|
|
text: '提示内容',
|
|
longText: '这是一条长文字提示,超过一定字数就会换行',
|
|
text2: '成功文案',
|
|
text3: '失败文案',
|
|
customIcon: '自定义图标',
|
|
customImage: '展示图片',
|
|
text4: second => `倒计时 ${second} 秒`,
|
|
longTextButton: '长文字提示'
|
|
},
|
|
'en-US': {
|
|
title1: 'Text',
|
|
title2: 'Loading',
|
|
title3: 'Success/Fail',
|
|
success: 'Success',
|
|
fail: 'Fail',
|
|
text: 'Some messages',
|
|
longText: 'This is a long message, text will wrap when over a certain length',
|
|
text2: 'Success',
|
|
text3: 'Fail',
|
|
customIcon: 'Custom Icon',
|
|
customImage: 'Custom Image',
|
|
text4: second => `${second} seconds`,
|
|
longTextButton: 'Long Text'
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
showLoadingToast() {
|
|
this.$toast.loading({ mask: true, message: this.$t('loading') });
|
|
},
|
|
|
|
showSuccessToast() {
|
|
this.$toast.success(this.$t('text2'));
|
|
},
|
|
|
|
showFailToast() {
|
|
this.$toast.fail(this.$t('text3'));
|
|
},
|
|
|
|
showIconToast() {
|
|
this.$toast({
|
|
message: this.$t('customIcon'),
|
|
icon: 'like-o'
|
|
});
|
|
},
|
|
|
|
showImageToast() {
|
|
this.$toast({
|
|
message: this.$t('customImage'),
|
|
icon: 'https://img.yzcdn.cn/vant/logo.png'
|
|
});
|
|
},
|
|
|
|
showCustomizedToast() {
|
|
const toast = this.$toast.loading({
|
|
duration: 0,
|
|
forbidClick: true,
|
|
loadingType: 'spinner',
|
|
message: this.$t('text4', 3)
|
|
});
|
|
|
|
let second = 3;
|
|
const timer = setInterval(() => {
|
|
second--;
|
|
if (second) {
|
|
toast.message = this.$t('text4', second);
|
|
} else {
|
|
clearInterval(timer);
|
|
this.$toast.clear();
|
|
}
|
|
}, 1000);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import "../../style/var";
|
|
|
|
.demo-toast {
|
|
background-color: @white;
|
|
|
|
.van-button {
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
</style>
|