9f5e2c7e
梁灏
update Form
|
1
|
<template>
|
184dba1c
梁灏
update Form
|
2
|
<div style="width: 400px">
|
578ca325
梁灏
fixed Radio bug
|
3
|
<i-form v-ref:form :model="form" :rules="rules" :label-width="100" label-position="right">
|
184dba1c
梁灏
update Form
|
4
5
6
7
8
9
10
11
12
13
|
<form-item label="邮箱" prop="mail">
<i-input :value.sync="form.mail" placeholder="请输入邮箱">
<Icon type="ios-email-outline" slot="prepend"></Icon>
</i-input>
</form-item>
<form-item label="密码" prop="passwd">
<i-input type="password" :value.sync="form.passwd" placeholder="请输入密码">
<Icon type="ios-locked-outline" slot="prepend"></Icon>
</i-input>
</form-item>
|
578ca325
梁灏
fixed Radio bug
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<form-item label="radio" prop="single">
<radio :checked.sync="form.single">Single</radio>
</form-item>
<form-item label="radioGroup" prop="group">
<Radio-group :model.sync="form.group">
<Radio value="apple">
<Icon type="social-apple"></Icon>
<span>Apple</span>
</Radio>
<Radio value="android">
<Icon type="social-android"></Icon>
<span>Android</span>
</Radio>
<Radio value="windows">
<Icon type="social-windows"></Icon>
<span>Windows</span>
</Radio>
</Radio-group>
</form-item>
|
f65e9be5
梁灏
update checkboxGroup
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<form-item label="checkbox-g" prop="checkboxgroup">
<Checkbox-group :model.sync="form.checkboxgroup">
<Checkbox value="twitter">
<Icon type="social-twitter"></Icon>
<span>Twitter</span>
</Checkbox>
<Checkbox value="facebook">
<Icon type="social-facebook"></Icon>
<span>Facebook</span>
</Checkbox>
<Checkbox value="github">
<Icon type="social-github"></Icon>
<span>Github</span>
</Checkbox>
<Checkbox value="snapchat">
<Icon type="social-snapchat"></Icon>
<span>Snapchat</span>
</Checkbox>
</Checkbox-group>
</form-item>
|
3ad47566
梁灏
update Select
|
53
54
55
56
57
58
59
60
61
62
|
<form-item label="select" prop="select">
<i-select :model.sync="form.select" style="width:200px" clearable>
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
</i-select>
</form-item>
<form-item label="select多选" prop="selectm">
<i-select :model.sync="form.selectm" multiple style="width:260px">
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
</i-select>
</form-item>
|
184dba1c
梁灏
update Form
|
63
64
65
|
<form-item>
<i-button type="primary" @click="onSubmit('form')">提交</i-button>
</form-item>
|
9f5e2c7e
梁灏
update Form
|
66
67
68
69
70
71
72
|
</i-form>
</div>
</template>
<script>
export default {
props: {},
data () {
|
184dba1c
梁灏
update Form
|
73
|
return {
|
3ad47566
梁灏
update Select
|
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
|
cityList: [
{
value: 'beijing',
label: '北京市'
},
{
value: 'shanghai',
label: '上海市'
},
{
value: 'shenzhen',
label: '深圳市'
},
{
value: 'hangzhou',
label: '杭州市'
},
{
value: 'nanjing',
label: '南京市'
},
{
value: 'chongqing',
label: '重庆市'
}
],
|
184dba1c
梁灏
update Form
|
100
101
|
form: {
mail: '',
|
578ca325
梁灏
fixed Radio bug
|
102
103
|
passwd: '',
single: false,
|
f65e9be5
梁灏
update checkboxGroup
|
104
|
group: '',
|
3ad47566
梁灏
update Select
|
105
106
107
|
checkboxgroup: [],
select: '',
selectm: []
|
184dba1c
梁灏
update Form
|
108
109
110
111
|
},
rules: {
mail: [
{
|
578ca325
梁灏
fixed Radio bug
|
112
113
114
115
|
required: true, message: '请输入正确的邮箱', trigger: 'blur', type: 'email'
},
{
min: 3, max: 50, message: '长度在 3 到 50 个字符', trigger: 'blur'
|
184dba1c
梁灏
update Form
|
116
117
|
},
{
|
578ca325
梁灏
fixed Radio bug
|
118
|
min: 3, max: 50, message: '长度在 3 到 5 个字符', trigger: 'change'
|
184dba1c
梁灏
update Form
|
119
120
121
122
123
124
|
}
],
passwd: [
{
required: true, message: '请输入密码', trigger: 'blur'
}
|
578ca325
梁灏
fixed Radio bug
|
125
126
127
128
129
|
],
group: [
{
required: true, message: '请单选组'
}
|
f65e9be5
梁灏
update checkboxGroup
|
130
131
132
133
134
135
136
137
|
],
checkboxgroup: [
{
required: true, message: '至少选择2个', min: 2, type: 'array',
},
{
required: true, message: '至多选择3个', max: 3, type: 'array'
}
|
3ad47566
梁灏
update Select
|
138
139
140
141
142
143
144
145
146
147
148
149
150
|
],
select: [
{
required: true
}
],
selectm: [
{
required: true, type: 'array'
},
{
min: 2, type: 'array'
}
|
184dba1c
梁灏
update Form
|
151
152
153
|
]
}
}
|
9f5e2c7e
梁灏
update Form
|
154
155
|
},
computed: {},
|
184dba1c
梁灏
update Form
|
156
157
158
159
160
161
162
163
164
165
166
167
|
methods: {
onSubmit (formName) {
this.$refs[formName].validate((valid) => {
if (valid) {
this.$Message.success('submit!');
} else {
this.$Message.error('error submit!');
return false;
}
});
}
}
|
9f5e2c7e
梁灏
update Form
|
168
169
|
};
</script>
|