101 lines
2.7 KiB
Markdown
101 lines
2.7 KiB
Markdown
<cn>
|
|
#### 典型表单
|
|
在 `Form` 组件中,每一个表单域由一个 `FormItem` 组件构成,表单域中可以放置各种类型的表单控件,比如输入框、选择器、开关、单选框、多选框等。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Basic form
|
|
It includes all kinds of input items, such as `input`, `select`, `radio` and `checkbox`.
|
|
In each `form` component, you need a `form-item` field to be the container of your input item.
|
|
</us>
|
|
|
|
```vue
|
|
<template>
|
|
<a-form-model :model="form" :label-col="labelCol" :wrapper-col="wrapperCol">
|
|
<a-form-model-item label="Activity name">
|
|
<a-input v-model="form.name" />
|
|
</a-form-model-item>
|
|
<a-form-model-item label="Activity zone">
|
|
<a-select v-model="form.region" placeholder="please select your zone">
|
|
<a-select-option value="shanghai">
|
|
Zone one
|
|
</a-select-option>
|
|
<a-select-option value="beijing">
|
|
Zone two
|
|
</a-select-option>
|
|
</a-select>
|
|
</a-form-model-item>
|
|
<a-form-model-item label="Activity time">
|
|
<a-date-picker
|
|
v-model="form.date1"
|
|
show-time
|
|
type="date"
|
|
placeholder="Pick a date"
|
|
style="width: 100%;"
|
|
/>
|
|
</a-form-model-item>
|
|
<a-form-model-item label="Instant delivery">
|
|
<a-switch v-model="form.delivery" />
|
|
</a-form-model-item>
|
|
<a-form-model-item label="Activity type">
|
|
<a-checkbox-group v-model="form.type">
|
|
<a-checkbox value="1" name="type">
|
|
Online
|
|
</a-checkbox>
|
|
<a-checkbox value="2" name="type">
|
|
Promotion
|
|
</a-checkbox>
|
|
<a-checkbox value="3" name="type">
|
|
Offline
|
|
</a-checkbox>
|
|
</a-checkbox-group>
|
|
</a-form-model-item>
|
|
<a-form-model-item label="Resources">
|
|
<a-radio-group v-model="form.resource">
|
|
<a-radio value="1">
|
|
Sponsor
|
|
</a-radio>
|
|
<a-radio value="2">
|
|
Venue
|
|
</a-radio>
|
|
</a-radio-group>
|
|
</a-form-model-item>
|
|
<a-form-model-item label="Activity form">
|
|
<a-input v-model="form.desc" type="textarea" />
|
|
</a-form-model-item>
|
|
<a-form-model-item :wrapper-col="{ span: 14, offset: 4 }">
|
|
<a-button type="primary" @click="onSubmit">
|
|
Create
|
|
</a-button>
|
|
<a-button style="margin-left: 10px;">
|
|
Cancel
|
|
</a-button>
|
|
</a-form-model-item>
|
|
</a-form-model>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
labelCol: { span: 4 },
|
|
wrapperCol: { span: 14 },
|
|
form: {
|
|
name: '',
|
|
region: undefined,
|
|
date1: undefined,
|
|
delivery: false,
|
|
type: [],
|
|
resource: '',
|
|
desc: '',
|
|
},
|
|
};
|
|
},
|
|
methods: {
|
|
onSubmit() {
|
|
console.log('submit!', this.form);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
```
|