123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <template>
- <view class="use-count-down dflex">
- <view v-if="showDays" class="use-count-down-item dflex-c" :style="[itemStyle]">
- <view class="use-count-down-time" :style="[letterStyle]">
- {{ d }}
- </view>
- </view>
- <view v-if="showDays" class="use-count-down-colon dflex-c"
- :style="{fontSize: separatorSize + 'rpx', color: separatorColor, paddingBottom: separator == 'colon' ? '4rpx' : 0}">
- {{ separator == 'colon' ? ':' : '天' }}
- </view>
- <view v-if="showHours" class="use-count-down-item dflex-c" :style="[itemStyle]">
- <view class="use-count-down-time" :style="{ fontSize: fontSize + 'rpx', color: color}">
- {{ h }}
- </view>
- </view>
- <view v-if="showHours" class="use-count-down-colon dflex-c"
- :style="{fontSize: separatorSize + 'rpx', color: separatorColor, paddingBottom: separator == 'colon' ? '4rpx' : 0}">
- {{ separator == 'colon' ? ':' : '时' }}
- </view>
- <view v-if="showMinutes" class="use-count-down-item dflex-c" :style="[itemStyle]">
- <view class="use-count-down-time" :style="{ fontSize: fontSize + 'rpx', color: color}">
- {{ i }}
- </view>
- </view>
- <view v-if="showMinutes" class="use-count-down-colon dflex-c"
- :style="{fontSize: separatorSize + 'rpx', color: separatorColor, paddingBottom: separator == 'colon' ? '4rpx' : 0}">
- {{ separator == 'colon' ? ':' : '分' }}
- </view>
- <view v-if="showSeconds" class="use-count-down-item dflex-c" :style="[itemStyle]">
- <view class="use-count-down-time" :style="{ fontSize: fontSize + 'rpx', color: color}">
- {{ s }}
- </view>
- </view>
- <view v-if="showSeconds && separator == 'zh'" class="use-count-down-colon dflex-c"
- :style="{fontSize: separatorSize + 'rpx', color: separatorColor, paddingBottom: separator == 'colon' ? '4rpx' : 0}">
- 秒
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- // 倒计时的时间,秒为单位
- timestamp: {
- type: [Number, String],
- default: 0
- },
- // 是否自动开始倒计时
- autoplay: {
- type: Boolean,
- default: true
- },
- // 用英文冒号(colon)或者中文(zh)当做分隔符,false的时候为中文,如:"11:22"或"11时22秒"
- separator: {
- type: String,
- default: 'colon'
- },
- // 分隔符的大小,单位rpx
- separatorSize: {
- type: [Number, String],
- default: 30
- },
- // 分隔符颜色
- separatorColor: {
- type: String,
- default: "#303133"
- },
- // 字体颜色
- color: {
- type: String,
- default: '#303133'
- },
- // 字体大小,单位rpx
- fontSize: {
- type: [Number, String],
- default: 30
- },
- // 背景颜色
- bgColor: {
- type: String,
- default: '#fff'
- },
- // 数字框高度,单位rpx
- height: {
- type: [Number, String],
- default: 'auto'
- },
- // 是否显示数字框
- showBorder: {
- type: Boolean,
- default: false
- },
- // 边框颜色
- borderColor: {
- type: String,
- default: '#303133'
- },
- // 是否显示秒
- showSeconds: {
- type: Boolean,
- default: true
- },
- // 是否显示分钟
- showMinutes: {
- type: Boolean,
- default: true
- },
- // 是否显示小时
- showHours: {
- type: Boolean,
- default: true
- },
- // 是否显示“天”
- showDays: {
- type: Boolean,
- default: true
- },
- },
- watch: {
- // 监听时间戳的变化
- timestamp(newVal, oldVal) {
- // 如果倒计时间发生变化,清除定时器,重新开始倒计时
- clearInterval(this.timer);
- this.start();
- }
- },
- data() {
- return {
- d: '00', // 天的默认值
- h: '00', // 小时的默认值
- i: '00', // 分钟的默认值
- s: '00', // 秒的默认值
- timer: null ,// 定时器
- seconds: 0, // 记录不停倒计过程中变化的秒数
- };
- },
- computed: {
- // 倒计时item的样式,item为分别的时分秒部分的数字
- itemStyle() {
- let style = {};
- if(this.height) {
- style.height = this.height + 'rpx';
- style.width = this.height + 'rpx';
- }
- if(this.showBorder) {
- style.borderStyle = 'solid';
- style.borderColor = this.borderColor;
- style.borderWidth = '1px';
- }
- if(this.bgColor) {
- style.backgroundColor = this.bgColor;
- }
- return style;
- },
- // 倒计时数字的样式
- letterStyle() {
- let style = {};
- if(this.fontSize) style.fontSize = this.fontSize + 'rpx';
- if(this.color) style.color = this.color;
- return style;
- }
- },
- mounted() {
- // 如果自动倒计时
- this.autoplay && this.timestamp && this.start();
- },
- methods: {
- // 倒计时
- start() {
- if (this.timestamp <= 0) return;
- this.seconds = Number(this.timestamp);
- this.formatTime(this.seconds);
- this.timer = setInterval(() => {
- this.seconds--;
- // 发出change事件
- this.$emit('change', this.seconds);
- if (this.seconds < 0) {
- return this.end();
- }
- this.formatTime(this.seconds);
- }, 1000);
- },
- // 格式化时间
- formatTime(seconds) {
- // 小于等于0的话,结束倒计时
- seconds <= 0 && this.end();
- let [day, hour, minute, second] = [0, 0, 0, 0];
- day = Math.floor(seconds / (60 * 60 * 24));
- // 判断是否显示“天”参数,如果不显示,将天部分的值,加入到小时中
- // hour为给后面计算秒和分等用的(基于显示天的前提下计算)
- hour = Math.floor(seconds / (60 * 60)) - day * 24;
- // showHour为需要显示的小时
- let showHour = null;
- if(this.showDays) {
- showHour = hour;
- } else {
- showHour = Math.floor(seconds / (60 * 60));
- }
- minute = Math.floor(seconds / 60) - hour * 60 - day * 24 * 60;
- second = Math.floor(seconds) - day * 24 * 60 * 60 - hour * 60 * 60 - minute * 60;
- // 如果小于10,在前面补上一个"0"
- hour = hour < 10 ? '0' + hour : hour;
- minute = minute < 10 ? '0' + minute : minute;
- second = second < 10 ? '0' + second : second;
- this.d = day;
- this.h = showHour;
- this.i = minute;
- this.s = second;
- },
- // 停止倒计时
- end() {
- // 清除定时器
- clearInterval(this.timer);
- this.timer = null;
- this.$emit('end', {});
- }
- },
- beforeDestroy() {
- clearInterval(this.timer);
- this.timer = null;
- }
- };
- </script>
- <style lang="scss">
- .use-count-down {}
- .use-count-down-item {
- padding: 2rpx;
- border-radius: 6rpx;
- white-space: nowrap;
- transform: translateZ(0);
- }
- .use-count-down-time {}
- .use-count-down-colon {
- padding: 0 5rpx;
- line-height: 1;
- padding-bottom: 4rpx;
- }
- .use-count-down-scale {
- transform: scale(0.9);
- transform-origin: center center;
- }
- </style>
|