ant-design-vue/components/form/demo/advanced-search.vue
tangjinzhou 7aae6f675c
doc: form add demo (#5070)
* doc: add form demo

* fix: form dynamic error

* doc: add form demo

* revert: formitem auto validate #4955

* fix: input not update when set undefined

* doc: add form demo

* fix: form validate for number tyope, close #5064

* fix: form validateMessages not work

* doc: add form demo
2021-12-23 22:00:14 +08:00

114 lines
3.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<docs>
---
order: 13
title:
zh-CN: 高级搜索
en-US: Advanced search
---
## zh-CN
三列栅格式的表单排列方式常用于数据表格的高级搜索
有部分定制的样式代码由于输入标签长度不确定需要根据具体情况自行调整
## en-US
Three columns layout is often used for advanced searching of data table.
Because the width of label is not fixed, you may need to adjust it by customizing its style.
</docs>
<template>
<div>
<a-form
ref="formRef"
name="advanced_search"
class="ant-advanced-search-form"
:model="formState"
@finish="onFinish"
>
<a-row :gutter="24">
<template v-for="i in 10" :key="i">
<a-col v-show="expand || i <= 6" :span="8">
<a-form-item
:name="`field-${i}`"
:label="`field-${i}`"
:rules="[{ required: true, message: 'input something' }]"
>
<a-input v-model:value="formState[`field-${i}`]" placeholder="placeholder"></a-input>
</a-form-item>
</a-col>
</template>
</a-row>
<a-row>
<a-col :span="24" style="text-align: right">
<a-button type="primary" html-type="submit">Search</a-button>
<a-button style="margin: 0 8px" @click="() => formRef.resetFields()">Clear</a-button>
<a style="font-size: 12px" @click="expand = !expand">
<template v-if="expand">
<UpOutlined />
</template>
<template v-else>
<DownOutlined />
</template>
Collapse
</a>
</a-col>
</a-row>
</a-form>
<div class="search-result-list">Search Result List</div>
</div>
</template>
<script lang="ts">
import { defineComponent, reactive, ref } from 'vue';
import { DownOutlined, UpOutlined } from '@ant-design/icons-vue';
import type { FormInstance } from 'ant-design-vue';
export default defineComponent({
components: {
DownOutlined,
UpOutlined,
},
setup() {
const expand = ref(false);
const formRef = ref<FormInstance>();
const formState = reactive({});
const onFinish = (values: any) => {
console.log('Received values of form: ', values);
console.log('formState: ', formState);
};
return {
formRef,
formState,
expand,
onFinish,
};
},
});
</script>
<style>
#components-form-demo-advanced-search .ant-form {
max-width: none;
}
#components-form-demo-advanced-search .search-result-list {
margin-top: 16px;
border: 1px dashed #e9e9e9;
border-radius: 2px;
background-color: #fafafa;
min-height: 200px;
text-align: center;
padding-top: 80px;
}
[data-theme='dark'] .ant-advanced-search-form {
background: rgba(255, 255, 255, 0.04);
border: 1px solid #434343;
padding: 24px;
border-radius: 2px;
}
[data-theme='dark'] #components-form-demo-advanced-search .search-result-list {
border: 1px dashed #434343;
background: rgba(255, 255, 255, 0.04);
}
</style>