Blame view

src/components/date-picker/base/confirm.vue 1.07 KB
b9041a0d   梁灏   DatePicker add co...
1
2
  <template>
      <div :class="[prefixCls + '-confirm']">
5cc9b892   梁灏   update DateTimePi...
3
4
5
6
          <span v-if="showTime" @click="handleToggleTime">
              <template v-if="isTime">选择日期</template>
              <template v-else>选择时间</template>
          </span>
b9041a0d   梁灏   DatePicker add co...
7
8
9
10
11
12
13
14
15
16
17
          <i-button size="small" type="text" @click="handleClear">清空</i-button>
          <i-button size="small" type="primary" @click="handleSuccess">确定</i-button>
      </div>
  </template>
  <script>
      import iButton from '../../button/button.vue';
  
      const prefixCls = 'ivu-picker';
  
      export default {
          components: { iButton },
5cc9b892   梁灏   update DateTimePi...
18
19
20
21
          props: {
              showTime: false,
              isTime: false
          },
b9041a0d   梁灏   DatePicker add co...
22
23
24
          data () {
              return {
                  prefixCls: prefixCls
b0893113   jingsam   :art: add eslint
25
              };
b9041a0d   梁灏   DatePicker add co...
26
27
28
29
30
31
32
          },
          methods: {
              handleClear () {
                  this.$emit('on-pick-clear');
              },
              handleSuccess () {
                  this.$emit('on-pick-success');
5cc9b892   梁灏   update DateTimePi...
33
34
35
              },
              handleToggleTime () {
                  this.$emit('on-pick-toggle-time');
b9041a0d   梁灏   DatePicker add co...
36
37
              }
          }
b0893113   jingsam   :art: add eslint
38
39
      };
  </script>