2017-01-03 16:18:21 +08:00
|
|
|
|
<template>
|
2017-02-14 10:51:12 +08:00
|
|
|
|
<i-form v-ref:form-validate :model="formValidate" :rules="ruleValidate" :label-width="100">
|
|
|
|
|
<Form-item label="输入框" prop="input">
|
|
|
|
|
<i-input :value.sync="formValidate.input" placeholder="请输入"></i-input>
|
2017-01-13 15:45:08 +08:00
|
|
|
|
</Form-item>
|
2017-02-14 10:51:12 +08:00
|
|
|
|
<Form-item label="Ajax:" prop="ajax">
|
|
|
|
|
<div slot="label">
|
|
|
|
|
<span>Ajax</span>
|
|
|
|
|
<Tooltip content="基于 axios">
|
|
|
|
|
<Icon type="ios-help" size="14" color="#3399ff"></Icon>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
<span>:</span>
|
|
|
|
|
</div>
|
|
|
|
|
<Switch :checked.sync="formValidate.ajax"></Switch>
|
2017-01-13 15:45:08 +08:00
|
|
|
|
</Form-item>
|
|
|
|
|
<Form-item>
|
2017-02-14 10:51:12 +08:00
|
|
|
|
<i-button type="primary" @click="handleSubmit('formValidate')">提交</i-button>
|
|
|
|
|
<i-button type="ghost" @click="handleReset('formValidate')" style="margin-left: 8px">重置</i-button>
|
2017-01-13 15:45:08 +08:00
|
|
|
|
</Form-item>
|
|
|
|
|
</i-form>
|
2017-01-03 16:18:21 +08:00
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data () {
|
2017-01-03 18:13:59 +08:00
|
|
|
|
return {
|
2017-02-14 10:51:12 +08:00
|
|
|
|
formValidate: {
|
|
|
|
|
input: '123',
|
|
|
|
|
ajax: true
|
2017-01-06 11:30:01 +08:00
|
|
|
|
},
|
2017-02-14 10:51:12 +08:00
|
|
|
|
ruleValidate: {
|
|
|
|
|
|
2017-01-03 18:13:59 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-03 16:18:21 +08:00
|
|
|
|
},
|
2017-01-03 18:13:59 +08:00
|
|
|
|
methods: {
|
2017-02-14 10:51:12 +08:00
|
|
|
|
handleSubmit (name) {
|
2017-01-06 11:30:01 +08:00
|
|
|
|
this.$refs[name].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
this.$Message.success('提交成功!');
|
|
|
|
|
} else {
|
|
|
|
|
this.$Message.error('表单验证失败!');
|
|
|
|
|
}
|
|
|
|
|
})
|
2017-02-14 10:51:12 +08:00
|
|
|
|
},
|
|
|
|
|
handleReset (name) {
|
|
|
|
|
this.$refs[name].resetFields();
|
2017-01-03 18:13:59 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-13 15:45:08 +08:00
|
|
|
|
}
|
|
|
|
|
</script>
|