124 lines
3.7 KiB
Vue
124 lines
3.7 KiB
Vue
<template>
|
||
<div class="demo-form">
|
||
<div style="margin-bottom: 16px">
|
||
<div style="margin-bottom: 6px">是否对齐:<tiny-switch v-model="isLabelAlign"></tiny-switch></div>
|
||
<div>
|
||
标签位置: <tiny-button-group :data="labelPositionList" v-model="labelPositionValue"></tiny-button-group>
|
||
</div>
|
||
</div>
|
||
<tiny-form
|
||
ref="ruleForm"
|
||
:model="createData"
|
||
:rules="rules"
|
||
:validate-on-rule-change="isvalidate"
|
||
:label-align="isLabelAlign"
|
||
:label-position="labelPositionValue"
|
||
label-width="100px"
|
||
@validate="validate"
|
||
>
|
||
<tiny-form-item label="用户名" prop="username">
|
||
<tiny-input v-model="createData.username"></tiny-input>
|
||
</tiny-form-item>
|
||
<tiny-form-item label="密码" prop="password">
|
||
<tiny-input v-model="createData.password" type="password" show-password></tiny-input>
|
||
</tiny-form-item>
|
||
<tiny-form-item label="密钥" prop="password2">
|
||
<tiny-input v-model="createData.password2" type="password" show-password></tiny-input>
|
||
</tiny-form-item>
|
||
<tiny-form-item class="btn-form-item">
|
||
<tiny-button type="primary" @click="handleSubmit('ruleForm')"> 注册 </tiny-button>
|
||
<tiny-button type="primary" @click="removePass"> 清除密码校验 </tiny-button>
|
||
</tiny-form-item>
|
||
</tiny-form>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="jsx">
|
||
import { Form, FormItem, Input, Button, Modal, ButtonGroup, Switch } from '@opentiny/vue'
|
||
|
||
export default {
|
||
components: {
|
||
TinyForm: Form,
|
||
TinyFormItem: FormItem,
|
||
TinyInput: Input,
|
||
TinyButton: Button,
|
||
TinyButtonGroup: ButtonGroup,
|
||
TinySwitch: Switch
|
||
},
|
||
data() {
|
||
let validatePass = (rule, value, callback) => {
|
||
if (!/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{8,}$/.test(value)) {
|
||
callback(new Error('最少八个字符,至少包含一个大写字母,一个小写字母和一个数字'))
|
||
} else {
|
||
if (this.ruleForm.password !== '') {
|
||
this.$refs.ruleForm.validateField('password')
|
||
}
|
||
callback()
|
||
}
|
||
}
|
||
|
||
return {
|
||
isLabelAlign: true,
|
||
labelPositionList: [
|
||
{ text: 'left', value: 'left' },
|
||
{ text: 'top', value: 'top' },
|
||
{ text: 'right', value: 'right' }
|
||
],
|
||
labelPositionValue: 'left',
|
||
createData: {
|
||
username: '',
|
||
password: '',
|
||
password2: ''
|
||
},
|
||
isvalidate: true,
|
||
rules: {
|
||
username: [
|
||
{ required: true, message: '必填', trigger: 'blur' },
|
||
{ min: 2, max: 11, message: '长度必须不小于2', trigger: 'change' }
|
||
],
|
||
password: [
|
||
{ required: true, message: '必填', trigger: 'blur' },
|
||
{ validator: validatePass, trigger: 'blur' }
|
||
]
|
||
}
|
||
}
|
||
},
|
||
methods: {
|
||
validate(val) {
|
||
Modal.message({
|
||
message: `表单项被校验后触发的事件,所校验字段为:${val}`,
|
||
status: 'info'
|
||
})
|
||
},
|
||
handleSubmit(formName) {
|
||
this.$refs[formName].validate((valid) => {
|
||
if (valid) {
|
||
Modal.alert('校验通过,开始注册!')
|
||
} else {
|
||
Modal.message({ message: '校验不通过!!', status: 'warning' })
|
||
return false
|
||
}
|
||
})
|
||
},
|
||
removePass() {
|
||
this.isvalidate = false // 通过配置validate-on-rule-change属性,设置是否在rules属性改变后立即触发一次验证
|
||
this.rules = {
|
||
username: [
|
||
{ required: true, message: '必填', trigger: 'blur' },
|
||
{ min: 2, max: 11, message: '长度必须不小于2', trigger: 'change' }
|
||
]
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.demo-form {
|
||
width: 380px;
|
||
}
|
||
.btn-form-item {
|
||
padding-top: 8px;
|
||
}
|
||
</style>
|