Vue回炉重造之封装防刷新考试倒计时组件

简介: 欢迎阅读本博文,本博文主要讲述【Vue回炉重造之封装防刷新考试倒计时组件】,文字通俗易懂,如有不妥,还请多多指正。



<!-- 考试倒计时组件 -->
<template>
  <div class="time">
    <p>00:{{timerCount2}}:{{timerCount1}}</p>
    <button @click="reset">重新计时</button>
  </div>
</template>
<script>
export default {
  name: "Time",
  data() {
    return {
      timeSeconds: 0,
      timeMinutes: 0,
      seconds: 59, // 秒
      minutes: 1, // 分
      timer: null
    };
  },
  methods: {
    num(n) {
      return n < 10 ? "0" + n : "" + n;
    },
    // 重新计时
    reset() {
      sessionStorage.removeItem("answered");
      window.location.reload();
      localStorage.removeItem("startTime1");
      localStorage.removeItem("startTime2");
      clearInterval(this.timer);
    },
    // 清除
    clear() {
      localStorage.removeItem("startTime1");
      localStorage.removeItem("startTime2");
      sessionStorage.setItem("answered", 1);
      clearInterval(this.timer);
    },
    // 倒计时
    timing() {
      let [startTime1, startTime2] = [ localStorage.getItem("startTime1"), localStorage.getItem("startTime2") ];
      let nowTime = new Date().getTime();
      if (startTime1) {
        let surplus = this.seconds - parseInt((nowTime - startTime1) / 1000);
        this.timeSeconds = surplus <= 0 ? 0 : surplus;
      } else {
        this.timeSeconds = this.seconds;
        localStorage.setItem("startTime1", nowTime); //存储秒
      }
      if (startTime2) {
        this.timeMinutes = startTime2;
      } else {
        this.timeMinutes = this.minutes;
        localStorage.setItem("startTime2", this.minutes); //存储分
      }
      this.timer = setInterval(() => {
        if ( this.timeSeconds == 0 && this.timeMinutes != 0 && this.timeMinutes > 0 ) {
          let nowTime = new Date().getTime();
          this.timeSeconds = this.seconds;
          localStorage.setItem("startTime1", nowTime);
          this.timeMinutes--;
          localStorage.setItem("startTime2", this.timeMinutes);
        } else if (this.timeMinutes == 0 && this.timeSeconds == 0) {
          this.timeSeconds = 0;
          this.clear();
          alert("考试时间到");
        } else {
          this.timeSeconds--;
        }
      }, 1000);
    }
  },
  mounted() {
    if (sessionStorage.getItem("answered") != 1) {
      this.timing();
    }
  },
  computed: {
    timerCount1() {
      return this.timeSeconds < 10 ? "0" + this.timeSeconds : "" + this.timeSeconds;
    },
    timerCount2() {
      return this.timeMinutes < 10 ? "0" + this.timeMinutes : "" + this.timeMinutes;
    }
  },
  destroyed() {
    // 退出后清除计时器
    if (this.timer) {
      clearInterval(this.timer);
    }
  }
};
</script>
<style scoped>
.time {
  color: #f72a3a;
  font-weight: bold;
  font-size: 26px;
}
</style>
相关文章
|
26天前
|
JavaScript
vue使用iconfont图标
vue使用iconfont图标
127 1
|
5天前
|
JavaScript 安全 API
iframe嵌入页面实现免登录思路(以vue为例)
通过上述步骤,可以在Vue.js项目中通过 `iframe`实现不同应用间的免登录功能。利用Token传递和消息传递机制,可以确保安全、高效地在主应用和子应用间共享登录状态。这种方法在实际项目中具有广泛的应用前景,能够显著提升用户体验。
31 8
|
6天前
|
存储 设计模式 JavaScript
Vue 组件化开发:构建高质量应用的核心
本文深入探讨了 Vue.js 组件化开发的核心概念与最佳实践。
35 1
|
1月前
|
JavaScript 关系型数据库 MySQL
基于VUE的校园二手交易平台系统设计与实现毕业设计论文模板
基于Vue的校园二手交易平台是一款专为校园用户设计的在线交易系统,提供简洁高效、安全可靠的二手商品买卖环境。平台利用Vue框架的响应式数据绑定和组件化特性,实现用户友好的界面,方便商品浏览、发布与管理。该系统采用Node.js、MySQL及B/S架构,确保稳定性和多功能模块设计,涵盖管理员和用户功能模块,促进物品循环使用,降低开销,提升环保意识,助力绿色校园文化建设。
|
JavaScript 测试技术 容器
Vue2+VueRouter2+webpack 构建项目
1). 安装Node环境和npm包管理工具 检测版本 node -v npm -v 图1.png 2). 安装vue-cli(vue脚手架) npm install -g vue-cli --registry=https://registry.
1070 0
|
2月前
|
JavaScript 前端开发 开发者
vue 数据驱动视图
总之,Vue 数据驱动视图是一种先进的理念和技术,它为前端开发带来了巨大的便利和优势。通过理解和应用这一特性,开发者能够构建出更加动态、高效、用户体验良好的前端应用。在不断发展的前端领域中,数据驱动视图将继续发挥重要作用,推动着应用界面的不断创新和进化。
106 58
|
2月前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱前端的大一学生,专注于JavaScript与Vue,正向全栈进发。博客分享Vue学习心得、命令式与声明式编程对比、列表展示及计数器案例等。关注我,持续更新中!🎉🎉🎉
60 1
vue学习第一章
|
2月前
|
JavaScript 前端开发 索引
vue学习第三章
欢迎来到瑞雨溪的博客,一名热爱JavaScript与Vue的大一学生。本文介绍了Vue中的v-bind指令,包括基本使用、动态绑定class及style等,希望能为你的前端学习之路提供帮助。持续关注,更多精彩内容即将呈现!🎉🎉🎉
56 1
|
2月前
|
缓存 JavaScript 前端开发
vue学习第四章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript与Vue的大一学生。本文介绍了Vue中计算属性的基本与复杂使用、setter/getter、与methods的对比及与侦听器的总结。如果你觉得有用,请关注我,将持续更新更多优质内容!🎉🎉🎉
50 1
vue学习第四章
|
2月前
|
JavaScript 前端开发 算法
vue学习第7章(循环)
欢迎来到瑞雨溪的博客,一名热爱JavaScript和Vue的大一学生。本文介绍了Vue中的v-for指令,包括遍历数组和对象、使用key以及数组的响应式方法等内容,并附有综合练习实例。关注我,将持续更新更多优质文章!🎉🎉🎉
42 1
vue学习第7章(循环)