Blame view

local/routers/index.vue 1.94 KB
7fa943eb   梁灏   init
1
2
3
4
  <style>
  
  </style>
  <template>
be966e9f   梁灏   add Modal component
5
6
7
8
9
      <Button @click="info">info</Button>
      <Button @click="success">success</Button>
      <Button @click="warning">warning</Button>
      <Button @click="error">error</Button>
      <Button @click="confirm">confirm</Button>
4935594e   梁灏   fixed #21
10
11
12
      <Page :total="11" :page-size="11"></Page>
      <Page :total="11" size="small"></Page>
      <Page :current="1" :total="0" simple></Page>
7fa943eb   梁灏   init
13
14
  </template>
  <script>
4935594e   梁灏   fixed #21
15
      import { Modal, Button, Message, Page } from 'iview';
39e6e965   梁灏   fixed checkbox bu...
16
  
7fa943eb   梁灏   init
17
      export default {
4935594e   梁灏   fixed #21
18
          components: { Modal, Button, Page },
7fa943eb   梁灏   init
19
20
21
22
23
          props: {
          
          },
          data () {
              return {
be966e9f   梁灏   add Modal component
24
  
7fa943eb   梁灏   init
25
26
27
              }        
          },
          methods: {
be966e9f   梁灏   add Modal component
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
              info () {
                  Modal.info({
                      title: '这是对话框标题',
                      content: `<p>这是对话框内容</p><p>这是对话框内容这是对话框内容这是对话框内容这是对话框内容这是对话框内容这是对话框内容这是对话框内容这是对话框内容这是对话框内容这是对话框内容</p>`
                  });
              },
              success () {
                  Modal.success();
              },
              warning () {
                  Modal.warning();
              },
              error () {
                  Modal.error();
              },
              confirm () {
                  Modal.confirm({
  //                    okText: 'OK',
  //                    cancelText: 'Cancel',
                      title: '删除提示',
                      content: '删除后将不可找回,您确定要删除吗?',
                      onCancel () {
                          Message.info('cancel it');
                      },
                      onOk () {
                          setTimeout(() => {
                              Modal.remove();
                              Message.success('OK!');
                          }, 2000);
                      },
                      loading: true
                  });
39e6e965   梁灏   fixed checkbox bu...
60
              }
7fa943eb   梁灏   init
61
62
63
          }
      }
  </script>