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>-->
|
fc0c4c78
梁灏
fixed #494
|
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
|
<!--<template>-->
<!--<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>-->
<!--</template>-->
<!--<script>-->
<!--export default {-->
<!--data () {-->
<!--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);-->
<!--};-->
<!--return {-->
<!--formCustom: {-->
<!--passwd: '',-->
<!--passwdCheck: '',-->
<!--age: ''-->
<!--},-->
<!--ruleCustom: {-->
<!--passwd: [-->
<!--{ validator: validatePass, trigger: 'blur' }-->
<!--],-->
<!--passwdCheck: [-->
<!--{ validator: validatePassCheck, trigger: 'blur' }-->
<!--],-->
<!--age: [-->
<!--{ validator: validateAge, trigger: 'blur' }-->
<!--]-->
<!--}-->
<!--}-->
<!--},-->
<!--methods: {-->
<!--handleSubmit (name) {-->
<!--this.$refs[name].validate((valid) => {-->
<!--if (valid) {-->
<!--this.$Message.success('提交成功!');-->
<!--} else {-->
<!--this.$Message.error('表单验证失败!');-->
<!--}-->
<!--})-->
<!--},-->
<!--handleReset (name) {-->
<!--this.$refs[name].resetFields();-->
<!--}-->
<!--}-->
<!--}-->
<!--</script>-->
|
cc419499
梁灏
fixed #525
|
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
|
value1: [],
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: '狮子林',
}
]
}
],
}]
|