forked from vueComponent/ant-design-vue-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
46 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
<template> | ||
<div> | ||
<a-form style="max-width: 500px; margin: 40px auto 0;"> | ||
<a-form :form="form" style="max-width: 500px; margin: 40px auto 0;"> | ||
<a-form-item | ||
label="付款账户" | ||
:labelCol="labelCol" | ||
:wrapperCol="wrapperCol" | ||
> | ||
<a-select value="1" placeholder="[email protected]"> | ||
<a-select | ||
placeholder="[email protected]" | ||
v-decorator="['paymentUser', { rules: [{required: true, message: '付款账户必须填写'}] }]"> | ||
<a-select-option value="1">[email protected]</a-select-option> | ||
</a-select> | ||
</a-form-item> | ||
|
@@ -15,27 +17,33 @@ | |
:labelCol="labelCol" | ||
:wrapperCol="wrapperCol" | ||
> | ||
<a-input-group :compact="true" style="display: inline-block; vertical-align: middle"> | ||
<a-input-group | ||
style="display: inline-block; vertical-align: middle" | ||
:compact="true" | ||
> | ||
<a-select defaultValue="alipay" style="width: 100px"> | ||
<a-select-option value="alipay">支付宝</a-select-option> | ||
<a-select-option value="wexinpay">微信</a-select-option> | ||
</a-select> | ||
<a-input :style="{width: 'calc(100% - 100px)'}" value="[email protected]"/> | ||
<a-input | ||
:style="{width: 'calc(100% - 100px)'}" | ||
v-decorator="['payType', { initialValue: '[email protected]', rules: [{required: true, message: '收款账户必须填写'}]}]" | ||
/> | ||
</a-input-group> | ||
</a-form-item> | ||
<a-form-item | ||
label="收款人姓名" | ||
:labelCol="labelCol" | ||
:wrapperCol="wrapperCol" | ||
> | ||
<a-input value="Alex" /> | ||
<a-input v-decorator="['name', { initialValue: 'Alex', rules: [{required: true, message: '收款人名称必须核对'}] }]"/> | ||
</a-form-item> | ||
<a-form-item | ||
label="转账金额" | ||
:labelCol="labelCol" | ||
:wrapperCol="wrapperCol" | ||
> | ||
<a-input prefix="¥" value="5000" /> | ||
<a-input prefix="¥" v-decorator="['momey', { initialValue: '5000', rules: [{required: true, message: '转账金额必须填写'}] }]"/> | ||
</a-form-item> | ||
<a-form-item :wrapperCol="{span: 19, offset: 5}"> | ||
<a-button type="primary" @click="nextStep">下一步</a-button> | ||
|
@@ -58,12 +66,19 @@ export default { | |
data () { | ||
return { | ||
labelCol: { lg: { span: 5 }, sm: { span: 5 } }, | ||
wrapperCol: { lg: { span: 19 }, sm: { span: 19 } } | ||
wrapperCol: { lg: { span: 19 }, sm: { span: 19 } }, | ||
form: this.$form.createForm(this) | ||
} | ||
}, | ||
methods: { | ||
nextStep () { | ||
this.$emit('nextStep') | ||
const { form: { validateFields } } = this | ||
// 先校验,通过表单校验后,才进入下一步 | ||
validateFields((err, values) => { | ||
if (!err) { | ||
this.$emit('nextStep') | ||
} | ||
}) | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters