Files
Vue_dbui/vue-ydui/example/routers/countdown.vue
2024-09-27 00:57:27 +08:00

46 lines
2.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<yd-layout title="CountDown">
<yd-cell-group title="普通调用" class="demo-small-pitch">
<yd-cell-item>
<span slot="left">默认模板</span>
<yd-countdown slot="right" time="2019/06/06 06:06:06"></yd-countdown>
</yd-cell-item>
<yd-cell-item>
<span slot="left">自定义参数模板</span>
<yd-countdown slot="right" time="2019/06/06 06:06:06" format="{%s}秒】{%m}分】{%h}时】{%d}天】"></yd-countdown>
</yd-cell-item>
<yd-cell-item>
<span slot="left">传入时间为</span>
<yd-countdown slot="right" :time="666666" timetype="second"></yd-countdown>
</yd-cell-item>
<yd-cell-item>
<span slot="left">传入时间为时间戳</span>
<yd-countdown slot="right" :time="1559772366" timetype="timestamp"></yd-countdown>
</yd-cell-item>
</yd-cell-group>
<yd-cell-group title="通过Slot自定义HTML模板">
<yd-cell-item>
<span slot="left">个位十位一体</span>
<yd-countdown slot="right" time="2019/08/08 08:08:08" class="demo-countdown">
<span style="color:red;">{%d}<i></i></span>
<span style="color:gray;">{%h}<i></i></span>
<span style="color:blue;">{%m}<i></i></span>
<span style="color:orange;">{%s}<i></i></span>
</yd-countdown>
</yd-cell-item>
<yd-cell-item>
<span slot="left">个位十位分开</span>
<yd-countdown slot="right" time="2019/08/08 08:08:08" class="demo-countdown">
<em>{%d0}</em><em>{%d1}</em><em>{%d2}</em>
<em>{%h1}</em><em>{%h2}</em>小时
<em>{%m1}</em><em>{%m2}</em>
<em>{%s1}</em><em>{%s2}</em>
</yd-countdown>
</yd-cell-item>
</yd-cell-group>
</yd-layout>
</template>