123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <template name="graceCountDown">
- <view class="grace-countdown" v-if="show">
- <text class="grace-countdown-numbers" :style="{borderColor:borderColor, width:width, height:width, fontSize:fontSize, lineHeight:width, color:fontColor, backgroundColor:bgrColor}" v-if="d > 0">{{d}}</text>
- <text class="grace-countdown-splitor" :style="{color:splitorColor, lineHeight:width, fontSize:fontSize}" v-if="d > 0">{{splitorText[0]}}</text>
- <text class="grace-countdown-numbers" :style="{borderColor:borderColor, width:width, height:width, fontSize:fontSize, lineHeight:width, color:fontColor, backgroundColor:bgrColor}">{{h}}</text>
- <text class="grace-countdown-splitor" :style="{color:splitorColor, lineHeight:width, fontSize:fontSize}">{{splitorText[1]}}</text>
- <text class="grace-countdown-numbers" :style="{borderColor:borderColor, width:width, height:width, fontSize:fontSize, lineHeight:width, color:fontColor, backgroundColor:bgrColor}">{{i}}</text>
- <text class="grace-countdown-splitor" :style="{color:splitorColor, lineHeight:width, fontSize:fontSize}">{{splitorText[2]}}</text>
- <text class="grace-countdown-numbers" :style="{borderColor:borderColor, width:width, height:width, fontSize:fontSize, lineHeight:width, color:fontColor, backgroundColor:bgrColor}">{{s}}</text>
- <text class="grace-countdown-splitor" :style="{color:splitorColor, lineHeight:width, fontSize:fontSize}">{{splitorText[3]}}</text>
- </view>
- </template>
- <script>
- export default {
- name: "graceCountDown",
- props: {
- bgrColor: {
- type: String,
- default: "#FFFFFF"
- },
- borderColor:{
- type:String,
- default : "#000000"
- },
- fontColor: {
- type: String,
- default: "#000000"
- },
- fontSize: {
- type: String,
- default: "22rpx"
- },
- splitorColor: {
- type: String,
- default: "#000000"
- },
- timer:{
- type:String,
- default:""
- },
- width : {
- type:String,
- default:"40rpx"
- },
- splitorText : {
- type : Array,
- default : function () {
- return [':', ':', ':', '']
- }
- },
- show:{type:Boolean, default:true}
- },
- data() {
- return {
- d : 0,
- h : "",
- i : "",
- s : "",
- leftTime : 0,
- outTimer : null
- }
- },
- created:function(){
- this.runbase();
- },
- updated:function(){
- this.runbase();
- },
- methods: {
- runbase : function(){
- var reg = /^([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}):([0-9]{2})$/;
- var res = this.timer.match(reg);
- if (res == null){ return false; }
- var year = parseInt(res[1]);
- if (year < 1000) { return false; }
- var month = parseInt(res[2]);
- var day = parseInt(res[3]);
- var h = parseInt(res[4]);
- if (h < 0 || h > 24) { return false; }
- var i = parseInt(res[5]);
- if (i < 0 || i > 60) { return false; }
- var s = parseInt(res[6]);
- if (s < 0 || s > 60) { return false; }
- var leftTime = new Date(year, month - 1, day, h, i, s);
- this.leftTime = leftTime;
- clearTimeout(this.outTimer);
- this.countDown();
- },
- countDown: function (){
- var leftTime = this.leftTime - new Date();
- if (leftTime > 0) {
- var day = parseInt(leftTime / (1000 * 60 * 60 * 24));
- var hours = parseInt((leftTime % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
- var minutes = parseInt((leftTime % (1000 * 60 * 60)) / (1000 * 60));
- var seconds = parseInt((leftTime % (1000 * 60)) / 1000);
- if (hours < 10) { hours = '0' + hours;}
- if (minutes < 10) { minutes = '0' + minutes; }
- if (seconds < 10) { seconds = '0' + seconds; }
- this.h = hours; this.i = minutes; this.s = seconds; this.d = day;
- this.outTimer = setTimeout(()=>{this.countDown();}, 1000);
- }else{
- clearTimeout(this.outTimer);
- this.h = '00'; this.i = '00'; this.s = '00'; this.d = 0;
- this.$emit('endDo');
- }
- },
- reSetTimer : function(timer){
- clearTimeout(this.outTimer);
- this.timer = timer;
- this.runbase();
- }
- }
- }
- </script>
- <style scoped>
- .grace-countdown{flex-wrap:nowrap; justify-content:center; flex-direction:row;}
- .grace-countdown-splitor{justify-content:center; padding:0 5rpx;}
- .grace-countdown-numbers{border-radius:8rpx; margin:0 5rpx; text-align:center; border-width:1px; border-style:solid; border-color:#000000; font-size:22rpx;}
- </style>
|