Blame view

examples/routers/form.vue 10.7 KB
bf9649f6   梁灏   add Form
1
2
3
4
5
6
7
8
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
  <!--<template>-->
      <!--<div>-->
          <!--date: {{ formInline.date }}-->
          <!--<i-form ref="formInline" :model="formInline" :rules="ruleInline">-->
              <!--<Form-item prop="date" label="日期">-->
                  <!--<Date-picker type="date" placeholder="选择日期" v-model="formInline.date"></Date-picker>-->
              <!--</Form-item>-->
              <!--<Form-item prop="value2" label="级联选择">-->
                  <!--<Cascader :data="formInline.data" v-model="formInline.value2" change-on-select></Cascader>-->
              <!--</Form-item>-->
              <!--<Form-item prop="user" label="输入框">-->
                  <!--<Input v-model="formInline.user"></Input>-->
              <!--</Form-item>-->
              <!--<Form-item prop="targetKeys1" label="穿梭框">-->
                  <!--<Transfer-->
                      <!--filterable-->
                      <!--:data="formInline.data1"-->
                      <!--:target-keys="formInline.targetKeys1"-->
                      <!--:render-format="render1"-->
                      <!--@on-change="handleChange1"></Transfer>-->
              <!--</Form-item>-->
              <!--<Form-item>-->
                  <!--<i-button type="primary" @click.native="handleSubmit('formInline')">登录</i-button>-->
              <!--</Form-item>-->
          <!--</i-form>-->
      <!--</div>-->
  <!--</template>-->
  <!--<script>-->
      <!--export default {-->
          <!--data () {-->
              <!--return {-->
                  <!--formInline: {-->
                      <!--data1: this.getMockData(),-->
                      <!--targetKeys1: this.getTargetKeys(),-->
                      <!--date: new Date(),-->
                      <!--user: '',-->
                      <!--value2: [],-->
                      <!--data: [{-->
                          <!--value: 'beijing',-->
                          <!--label: '北京',-->
                          <!--children: [-->
                              <!--{-->
                                  <!--value: 'gugong',-->
                                  <!--label: '故宫'-->
                              <!--},-->
                              <!--{-->
                                  <!--value: 'tiantan',-->
                                  <!--label: '天坛'-->
                              <!--},-->
                              <!--{-->
                                  <!--value: 'wangfujing',-->
                                  <!--label: '王府井'-->
                              <!--}-->
                          <!--]-->
                      <!--}, {-->
                          <!--value: 'jiangsu',-->
                          <!--label: '江苏',-->
                          <!--children: [-->
                              <!--{-->
                                  <!--value: 'nanjing',-->
                                  <!--label: '南京',-->
                                  <!--children: [-->
                                      <!--{-->
                                          <!--value: 'fuzimiao',-->
                                          <!--label: '夫子庙',-->
                                      <!--}-->
                                  <!--]-->
                              <!--},-->
                              <!--{-->
                                  <!--value: 'suzhou',-->
                                  <!--label: '苏州',-->
                                  <!--children: [-->
                                      <!--{-->
                                          <!--value: 'zhuozhengyuan',-->
                                          <!--label: '拙政园',-->
                                      <!--},-->
                                      <!--{-->
                                          <!--value: 'shizilin',-->
                                          <!--label: '狮子林',-->
                                      <!--}-->
                                  <!--]-->
                              <!--}-->
                          <!--],-->
                      <!--}]-->
                  <!--},-->
                  <!--ruleInline: {-->
                      <!--date: [-->
                          <!--{-->
                              <!--required: true,-->
                              <!--type: 'date',-->
                              <!--message: '请选择日期',-->
                              <!--trigger: 'change'-->
                          <!--}-->
                      <!--],-->
                      <!--user: [-->
                          <!--{-->
                              <!--required: true,-->
                              <!--message: '请输入',-->
                              <!--trigger: 'change',-->
                              <!--min: 10-->
                          <!--},-->
                          <!--{-->
                              <!--required: true,-->
                              <!--message: '请输入2',-->
                              <!--trigger: 'blur'-->
                          <!--}-->
                      <!--],-->
                      <!--value2: [-->
                          <!--{-->
                              <!--required: true,-->
                              <!--type: 'array',-->
                              <!--message: '请输入',-->
                              <!--trigger: 'change'-->
                          <!--}-->
                      <!--],-->
                      <!--targetKeys1: [-->
                          <!--{-->
                              <!--required: true,-->
                              <!--type: 'array',-->
                              <!--max: 2,-->
                              <!--message: '太多了',-->
                              <!--trigger: 'change'-->
                          <!--}-->
                      <!--]-->
                  <!--}-->
              <!--}-->
          <!--},-->
          <!--methods: {-->
              <!--handleSubmit(name) {-->
                  <!--this.$refs[name].validate((valid) => {-->
                      <!--if (valid) {-->
                          <!--this.$Message.success('提交成功!');-->
                      <!--} else {-->
                          <!--this.$Message.error('表单验证失败!');-->
                      <!--}-->
                  <!--})-->
              <!--},-->
              <!--handleInput (val) {-->
                  <!--console.log(val)-->
              <!--},-->
              <!--getMockData () {-->
                  <!--let mockData = [];-->
                  <!--for (let i = 1; i <= 20; i++) {-->
                      <!--mockData.push({-->
                          <!--key: i.toString(),-->
                          <!--label: '内容' + i,-->
                          <!--description: '内容' + i + '的描述信息',-->
                          <!--disabled: Math.random() * 3 < 1-->
                      <!--});-->
                  <!--}-->
                  <!--return mockData;-->
              <!--},-->
              <!--getTargetKeys () {-->
                  <!--return this.getMockData()-->
                      <!--.filter(() => Math.random() * 2 > 1)-->
                      <!--.map(item => item.key);-->
              <!--},-->
              <!--render1 (item) {-->
                  <!--return item.label;-->
              <!--},-->
              <!--handleChange1 (newTargetKeys, direction, moveKeys) {-->
                  <!--console.log(newTargetKeys);-->
                  <!--console.log(direction);-->
                  <!--console.log(moveKeys);-->
                  <!--this.formInline.targetKeys1 = newTargetKeys;-->
              <!--}-->
          <!--}-->
      <!--}-->
  <!--</script>-->
  
  
9f5e2c7e   梁灏   update Form
172
  <template>
bf9649f6   梁灏   add Form
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
      <Form ref="formCustom" :model="formCustom" :rules="ruleCustom" :label-width="80">
          <Form-item label="密码" prop="passwd">
              <Input type="password" v-model="formCustom.passwd"></Input>
          </Form-item>
          <Form-item label="确认密码" prop="passwdCheck">
              <Input type="password" v-model="formCustom.passwdCheck"></Input>
          </Form-item>
          <Form-item label="年龄" prop="age">
              <Input type="text" v-model="formCustom.age" number></Input>
          </Form-item>
          <Form-item>
              <Button type="primary" @click="handleSubmit('formCustom')">提交</Button>
              <Button type="ghost" @click="handleReset('formCustom')" style="margin-left: 8px">重置</Button>
          </Form-item>
      </Form>
9f5e2c7e   梁灏   update Form
188
189
190
  </template>
  <script>
      export default {
9f5e2c7e   梁灏   update Form
191
          data () {
bf9649f6   梁灏   add Form
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
              const validatePass = (rule, value, callback) => {
                  if (value === '') {
                      callback(new Error('请输入密码'));
                  } else {
                      if (this.formCustom.passwdCheck !== '') {
                          // 对第二个密码框单独验证
                          this.$refs.formCustom.validateField('passwdCheck');
                      }
                      callback();
                  }
              };
              const validatePassCheck = (rule, value, callback) => {
                  if (value === '') {
                      callback(new Error('请再次输入密码'));
                  } else if (value !== this.formCustom.passwd) {
                      callback(new Error('两次输入密码不一致!'));
                  } else {
                      callback();
                  }
              };
              const validateAge = (rule, value, callback) => {
                  if (!value) {
                      return callback(new Error('年龄不能为空'));
                  }
                  // 模拟异步验证效果
                  setTimeout(() => {
                      if (!Number.isInteger(value)) {
                          callback(new Error('请输入数字值'));
                      } else {
                          if (value < 18) {
                              callback(new Error('必须年满18岁'));
                          } else {
                              callback();
                          }
                      }
                  }, 1000);
              };
  
184dba1c   梁灏   update Form
230
              return {
bf9649f6   梁灏   add Form
231
232
233
234
                  formCustom: {
                      passwd: '',
                      passwdCheck: '',
                      age: ''
c3a9f389   梁灏   update Input
235
                  },
bf9649f6   梁灏   add Form
236
237
238
                  ruleCustom: {
                      passwd: [
                          { validator: validatePass, trigger: 'blur' }
257f80f1   梁灏   support Form
239
                      ],
bf9649f6   梁灏   add Form
240
241
                      passwdCheck: [
                          { validator: validatePassCheck, trigger: 'blur' }
04e5e3cd   梁灏   prevent dispatch ...
242
                      ],
bf9649f6   梁灏   add Form
243
244
                      age: [
                          { validator: validateAge, trigger: 'blur' }
257f80f1   梁灏   support Form
245
                      ]
184dba1c   梁灏   update Form
246
247
                  }
              }
9f5e2c7e   梁灏   update Form
248
          },
184dba1c   梁灏   update Form
249
          methods: {
bf9649f6   梁灏   add Form
250
              handleSubmit (name) {
c3a9f389   梁灏   update Input
251
252
                  this.$refs[name].validate((valid) => {
                      if (valid) {
21dad188   梁灏   prevent dispatch ...
253
                          this.$Message.success('提交成功!');
c3a9f389   梁灏   update Input
254
                      } else {
21dad188   梁灏   prevent dispatch ...
255
                          this.$Message.error('表单验证失败!');
c3a9f389   梁灏   update Input
256
257
                      }
                  })
21dad188   梁灏   prevent dispatch ...
258
              },
bf9649f6   梁灏   add Form
259
260
              handleReset (name) {
                  this.$refs[name].resetFields();
184dba1c   梁灏   update Form
261
262
              }
          }
8bca1070   梁灏   update Input on-f...
263
264
      }
  </script>