blob: d98eae57eff4e30f7ce13082c8a52e4124526fcb [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!-- Created by Tw93 on 17/07/31. -->
<template>
<div class="wxc-demo">
<scroller class="scroller">
<title title="wxc-countdown"></title>
<category title="基础使用"></category>
<text class="demo-desc">默认样式,时间戳传5秒后,倒计时完传回调</text>
<div class="demo-3">
<text class="cb-text">{{demoText}}:</text>
<wxc-countdown
:time="demoTime"
@wxcOnComplete="onCompletedTwo">
</wxc-countdown>
</div>
<category title="自定义配置"></category>
<text class="demo-desc">配置样式,设置倒计时频率</text>
<wxc-countdown
:interval="2000"
tpl="{h}时"
:timeBoxStyle="{backgroundColor: '#C3413D', height: '50px', width: '50px'}"
:timeTextStyle="{fontSize: '24px', color: '#FFB706'}"
:dotTextStyle="{color: '#C3413D', fontSize: '26px'}"
:dotBoxStyle="{width: '30px'}"
:style="{marginTop: '10px', justifyContent: 'center'}"
:time="TIME">
</wxc-countdown>
<wxc-countdown
:interval="2000"
tpl="{m}分"
:timeBoxStyle="{backgroundColor: '#C3413D', height: '50px', width: '70px'}"
:timeTextStyle="{fontSize: '24px', color: '#FFB706'}"
:dotTextStyle="{color: '#C3413D', fontSize: '26px'}"
:dotBoxStyle="{width: '30px'}"
:style="{marginTop: '10px', justifyContent: 'center'}"
:time="TIME">
</wxc-countdown>
<wxc-countdown
:interval="2000"
tpl="{s}秒"
:timeBoxStyle="{backgroundColor: '#C3413D', height: '50px', width: '80px'}"
:timeTextStyle="{fontSize: '24px', color: '#FFB706'}"
:dotTextStyle="{color: '#C3413D', fontSize: '26px'}"
:dotBoxStyle="{width: '30px'}"
:style="{marginTop: '10px', justifyContent: 'center'}"
:time="TIME">
</wxc-countdown>
<wxc-countdown
:interval="2000"
tpl="{m}分{s}秒"
:timeBoxStyle="{backgroundColor: '#C3413D', height: '50px', width: '50px'}"
:timeTextStyle="{fontSize: '24px', color: '#FFB706'}"
:dotTextStyle="{color: '#C3413D', fontSize: '26px'}"
:dotBoxStyle="{width: '30px'}"
:style="{marginTop: '10px', justifyContent: 'center'}"
:time="TIME">
</wxc-countdown>
<wxc-countdown
:interval="2000"
tpl="{h}时{m}分"
:timeBoxStyle="{backgroundColor: '#C3413D', height: '50px', width: '50px'}"
:timeTextStyle="{fontSize: '24px', color: '#FFB706'}"
:dotTextStyle="{color: '#C3413D', fontSize: '26px'}"
:dotBoxStyle="{width: '30px'}"
:style="{marginTop: '10px', justifyContent: 'center'}"
:time="TIME">
</wxc-countdown>
<wxc-countdown
:interval="2000"
tpl="{h}时{m}分{s}秒"
:timeBoxStyle="{backgroundColor: '#C3413D', height: '50px', width: '50px'}"
:timeTextStyle="{fontSize: '24px', color: '#FFB706'}"
:dotTextStyle="{color: '#C3413D', fontSize: '26px'}"
:dotBoxStyle="{width: '30px'}"
:style="{marginTop: '10px', justifyContent: 'center'}"
:time="TIME">
</wxc-countdown>
<wxc-countdown
:interval="2000"
tpl="{d}天{h}时{m}分{s}秒"
:timeBoxStyle="{backgroundColor: '#C3413D', height: '50px', width: '50px'}"
:timeTextStyle="{fontSize: '24px', color: '#FFB706'}"
:dotTextStyle="{color: '#C3413D', fontSize: '26px'}"
:dotBoxStyle="{width: '30px'}"
:style="{marginTop: '10px', justifyContent: 'center'}"
:time="TIME">
</wxc-countdown>
<wxc-countdown
:interval="2000"
tpl="{d}天{h}:{m}:{s}"
:timeBoxStyle="{backgroundColor: '#C3413D', height: '50px', width: '50px'}"
:timeTextStyle="{fontSize: '24px', color: '#FFB706'}"
:dotTextStyle="{color: '#C3413D', fontSize: '26px'}"
:dotBoxStyle="{width: '30px'}"
:style="{marginTop: '10px', justifyContent: 'center'}"
:time="TIME">
</wxc-countdown>
</scroller>
</div>
</template>
<style scoped>
.wxc-demo {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: #ffffff;
}
.demo-desc {
font-size: 32px;
margin-top: 20px;
margin-bottom: 10px;
margin-left: 30px;
margin-right: 30px;
color: rgb(102, 102, 102);
text-align: center;
}
.demo-3 {
margin-top: 30px;
flex-direction: row;
align-items: center;
justify-content: center;
}
.scroller {
flex: 1;
}
</style>
<script>
const modal = weex.requireModule('modal');
import { setTitle } from '../_mods/set-nav';
import Title from '../_mods/title.vue';
import Category from '../_mods/category.vue';
import { WxcCountdown } from '../../index'
export default {
components: { Title, Category, WxcCountdown },
data: () => ({
// TIME: new Date().getTime() + 86400000 + ''
TIME: new Date().getTime() + 100000000,
demoTime: new Date().getTime() + 5000,
callbackText: '',
demoText: '距离开始'
}),
created () {
setTitle('Countdown');
},
methods: {
onCompleted () {
this.callbackText = '倒计时完成了';
modal.toast({
message: '倒计时完成了'
})
},
onCompletedTwo () {
this.demoTime = new Date().getTime() + 5000;
this.demoText = this.demoText === '距离开始' ? '距离结束' : '距离开始';
modal.toast({
message: '倒计时完成了'
})
}
}
}
</script>