Blame view

src/components/time/time.vue 1.52 KB
7f9ea0dc   梁灏   init Time component
1
  <template>
b8509c59   梁灏   update Time
2
      <span :class="classes" @click="handleClick">time</span>
7f9ea0dc   梁灏   init Time component
3
4
  </template>
  <script>
b8509c59   梁灏   update Time
5
6
7
      import { oneOf } from '../../utils/assist';
  
      const prefixCls = 'ivu-time';
7f9ea0dc   梁灏   init Time component
8
  
b8509c59   梁灏   update Time
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
      export default {
          name: 'Time',
          props: {
              time: {
                  type: [String, Number, Date],
                  required: true
              },
              type: {
                  type: String,
                  validator (value) {
                      return oneOf(value, ['relative', 'date', 'datetime']);
                  },
                  default: 'relative'
              },
              hash: {
                  type: String,
                  default: ''
              },
              interval: {
                  type: Number,
                  default: 60
              }
          },
          data () {
              return {
                  date: ''
              };
          },
          computed: {
              classes () {
                  return [
                      `${prefixCls}`,
                      {
                          [`${prefixCls}-with-hash`]: this.hash
                      }
                  ];
              }
          },
          methods: {
              handleClick () {
                  if (this.hash !== '') window.location.hash = this.hash;
              }
          },
          mounted () {
              this.setTime();
              this.timer = setInterval(() => {
                  this.setTime();
              }, 1000 * this.interval);
          },
          beforeDestroy () {
              if (this.timer) clearInterval(this.timer);
          }
7f9ea0dc   梁灏   init Time component
61
62
      };
  </script>