瀏覽代碼

状态中增加时间

yangxuxian 3 年之前
父節點
當前提交
71df382193
共有 1 個文件被更改,包括 37 次插入1 次删除
  1. 37 1
      src/components/StatusBar.vue

+ 37 - 1
src/components/StatusBar.vue

@@ -2,7 +2,11 @@
 <template>
     <div class='status-bar'>
         <el-row>
-            <el-col :span="16"></el-col>
+            <el-col :span="4">
+                <span style="color: white">系统时间:</span>
+                <span style="color: white">{{currentTime}}</span>
+            </el-col>
+            <el-col :span="12"></el-col>
             <el-col :span="8">
                 <el-popover placement="top-start" :width="400" trigger="hover">
                     <template #reference>
@@ -73,6 +77,8 @@
                 defectNum: 0,
                 malfunctionNum: 0,
                 accidentNum: 0,
+                statusTimer: "",
+                currentTime: "",
                 gridData: [{
                     date: '2016-05-02',
                     name: '王小虎',
@@ -91,6 +97,36 @@
                     address: '上海市普陀区金沙江路 1518 弄'
                 }]
             }
+        },
+        mounted() {
+            let that = this
+            this.statusTimer = setInterval(function () {
+                that.currentTime =
+                    new Date().getFullYear() +
+                    "-" +
+                    that.appendZero((new Date().getMonth() + 1)) +
+                    "-" +
+                    that.appendZero(new Date().getDate()) +
+                    " " +
+                    that.appendZero(new Date().getHours()) +
+                    ":" +
+                    that.appendZero(new Date().getMinutes()) +
+                    ": " +
+                    that.appendZero(new Date().getSeconds());
+            }, 1000)
+        },
+        beforeDestory() {
+            clearInterval(this.statusTimer)
+            this.statusTimer = null;
+        },
+        methods: {
+            appendZero(obj) {
+                if (obj < 10) {
+                    return "0" + obj
+                } else {
+                    return obj
+                }
+            }
         }
     }
 </script>