123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743 |
- ---
- description: cl-search 组件示例
- globs: *.tsx, *.ts, *.vue
- ---
- ## 起步 示例
- ```vue
- <template>
- <div class="scope">
- <div class="h">
- <el-tag size="small" effect="dark" disable-transitions>base</el-tag>
- <span>起步</span>
- </div>
- <div class="c">
- <el-button @click="open">预览</el-button>
- <demo-code :files="['search/base.vue']" />
- <!-- 自定义表格组件 -->
- <cl-dialog v-model="visible" title="起步" width="80%">
- <cl-crud ref="Crud">
- <cl-row>
- <!--【很重要】搜索组件 -->
- <cl-search ref="Search" />
- </cl-row>
- <cl-row>
- <cl-table ref="Table" />
- </cl-row>
- <cl-row>
- <cl-flex1 />
- <cl-pagination />
- </cl-row>
- </cl-crud>
- </cl-dialog>
- </div>
- <div class="f">
- <span class="date">2024-01-01</span>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { useCrud, useSearch, useTable } from '@cool-vue/crud';
- import { ref } from 'vue';
- import { useDict } from '/$/dict';
- const { dict } = useDict();
- // cl-crud 配置
- const Crud = useCrud(
- {
- service: 'test'
- },
- app => {
- app.refresh();
- }
- );
- // cl-table 配置
- const Table = useTable({
- autoHeight: false,
- contextMenu: ['refresh'],
- columns: [
- {
- label: '姓名',
- prop: 'name',
- minWidth: 140
- },
- {
- label: '手机号',
- prop: 'phone',
- minWidth: 140
- },
- {
- label: '工作',
- prop: 'occupation',
- dict: dict.get('occupation'),
- minWidth: 140
- },
- {
- label: '创建时间',
- prop: 'createTime',
- minWidth: 170,
- sortable: 'desc'
- }
- ]
- });
- // cl-search 配置
- //【很重要】该组件基于 cl-form 故很多示例都可复用
- const Search = useSearch({
- // 配置如 cl-form 一样
- items: [
- {
- label: '姓名',
- prop: 'name',
- component: {
- name: 'el-input',
- props: {
- clearable: true,
- // 值改变的时候刷新列表
- onChange(val: string) {
- refresh({
- name: val,
- page: 1
- });
- }
- }
- }
- },
- {
- label: '手机号',
- prop: 'phone',
- component: {
- name: 'el-input',
- props: {
- clearable: true
- }
- }
- },
- {
- label: '工作',
- prop: 'occupation',
- component: {
- name: 'cl-select',
- props: {
- tree: true,
- checkStrictly: true,
- options: dict.get('occupation')
- }
- }
- }
- ],
- onChange(data, prop) {
- console.log(data, prop);
- }
- });
- function refresh(params?: any) {
- Crud.value?.refresh(params);
- }
- const visible = ref(false);
- function open() {
- visible.value = true;
- }
- </script>
- ```
- ## 折叠 示例
- ```vue
- <template>
- <div class="scope">
- <div class="h">
- <el-tag size="small" effect="dark" disable-transitions>collapse</el-tag>
- <span>折叠</span>
- </div>
- <div class="c">
- <el-button @click="open">预览</el-button>
- <demo-code :files="['search/collapse.vue']" />
- <!-- 折叠表格组件 -->
- <cl-dialog v-model="visible" title="折叠" width="80%">
- <cl-crud ref="Crud">
- <!--【collapse】折叠参数,【inline】是否行内 -->
- <cl-search ref="Search" reset-btn collapse :inline="false" />
- <cl-row>
- <cl-table ref="Table" />
- </cl-row>
- <cl-row>
- <cl-flex1 />
- <cl-pagination />
- </cl-row>
- </cl-crud>
- </cl-dialog>
- </div>
- <div class="f">
- <span class="date">2024-12-26</span>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { useCrud, useSearch, useTable } from '@cool-vue/crud';
- import { ref } from 'vue';
- import { useDict } from '/$/dict';
- import { range } from 'lodash-es';
- const { dict } = useDict();
- // cl-crud 配置
- const Crud = useCrud(
- {
- service: 'test'
- },
- app => {
- app.refresh();
- }
- );
- // cl-table 配置
- const Table = useTable({
- autoHeight: false,
- contextMenu: ['refresh'],
- columns: [
- {
- label: '姓名',
- prop: 'name',
- minWidth: 140
- },
- {
- label: '手机号',
- prop: 'phone',
- minWidth: 140
- },
- {
- label: '工作',
- prop: 'occupation',
- dict: dict.get('occupation'),
- minWidth: 140
- },
- {
- label: '创建时间',
- prop: 'createTime',
- minWidth: 170,
- sortable: 'desc'
- }
- ]
- });
- // cl-search 配置
- const Search = useSearch({
- items: [
- ...range(20).map(i => {
- return {
- label: '输入框',
- prop: `T${i + 1}`,
- component: {
- name: 'el-input'
- }
- };
- })
- ]
- });
- function refresh(params?: any) {
- Crud.value?.refresh(params);
- }
- const visible = ref(false);
- function open() {
- visible.value = true;
- }
- </script>
- x
- ```
- ## 自定义 示例
- ```vue
- <template>
- <div class="scope">
- <div class="h">
- <el-tag size="small" effect="dark" disable-transitions>custom</el-tag>
- <span>自定义</span>
- </div>
- <div class="c">
- <el-button @click="open">预览</el-button>
- <demo-code :files="['search/custom.vue']" />
- <!-- 自定义表格组件 -->
- <cl-dialog v-model="visible" title="自定义" width="80%">
- <cl-crud ref="Crud">
- <cl-row>
- <!--【很重要】搜索组件 -->
- <cl-search
- ref="Search"
- :reset-btn="true"
- :on-load="onLoad"
- :on-search="onSearch"
- >
- <!-- 自定义按钮 -->
- <template #buttons="scope">
- <el-button @click="toSearch(scope)">自定义按钮</el-button>
- </template>
- </cl-search>
- </cl-row>
- <cl-row>
- <cl-table ref="Table" />
- </cl-row>
- <cl-row>
- <cl-flex1 />
- <cl-pagination />
- </cl-row>
- </cl-crud>
- </cl-dialog>
- </div>
- <div class="f">
- <span class="date">2024-01-01</span>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { useCrud, useSearch, useTable } from '@cool-vue/crud';
- import { ref } from 'vue';
- import { useDict } from '/$/dict';
- import { ElMessage } from 'element-plus';
- const { dict } = useDict();
- // cl-crud 配置
- const Crud = useCrud(
- {
- service: 'test'
- },
- app => {
- app.refresh();
- }
- );
- // cl-table 配置
- const Table = useTable({
- autoHeight: false,
- contextMenu: ['refresh'],
- columns: [
- {
- label: '姓名',
- prop: 'name',
- minWidth: 140
- },
- {
- label: '手机号',
- prop: 'phone',
- minWidth: 140
- },
- {
- label: '工作',
- prop: 'occupation',
- dict: dict.get('occupation'),
- minWidth: 140
- },
- {
- label: '创建时间',
- prop: 'createTime',
- minWidth: 170,
- sortable: 'desc'
- }
- ]
- });
- // cl-search 配置
- //【很重要】该组件基于 cl-form 故很多示例都可复用
- const Search = useSearch({
- // 配置如 cl-form 一样
- items: [
- {
- label: '姓名',
- prop: 'name',
- component: {
- name: 'el-input',
- props: {
- clearable: true,
- // 值改变的时候刷新列表
- onChange(val: string) {
- refresh({
- name: val,
- page: 1
- });
- }
- }
- }
- },
- {
- label: '手机号',
- prop: 'phone',
- component: {
- name: 'el-input',
- props: {
- clearable: true
- }
- }
- },
- {
- label: '工作',
- prop: 'occupation',
- component: {
- name: 'cl-select',
- props: {
- tree: true,
- checkStrictly: true,
- options: dict.get('occupation')
- }
- }
- }
- ]
- });
- function refresh(params?: any) {
- Crud.value?.refresh(params);
- }
- // cl-search 初始化
- function onLoad(data: any) {
- data.name = '白小纯';
- }
- // cl-search 配置 onSearch 后,必须使用 next 方法继续请求
- function onSearch(data: any, { next }: { next: (data: any) => void }) {
- ElMessage.info('开始搜索');
- // 这边可以处理其他事务
- next(data);
- }
- // 自定义搜索,data 为表单数据
- function toSearch(data: any) {
- ElMessage.info('自定义搜索');
- refresh({
- page: 1,
- ...data
- });
- }
- const visible = ref(false);
- function open() {
- visible.value = true;
- }
- </script>
- ```
- ## 布局 示例
- ```vue
- <template>
- <div class="scope">
- <div class="h">
- <el-tag size="small" effect="dark" disable-transitions>layout</el-tag>
- <span>布局</span>
- </div>
- <div class="c">
- <el-button @click="open">预览</el-button>
- <demo-code :files="['search/layout.vue']" />
- <!-- 自定义表格组件 -->
- <cl-dialog v-model="visible" title="布局" width="80%">
- <cl-crud ref="Crud">
- <!--【很重要】搜索组件 -->
- <cl-search ref="Search" :reset-btn="true" />
- <cl-row>
- <cl-table ref="Table" />
- </cl-row>
- <cl-row>
- <cl-flex1 />
- <cl-pagination />
- </cl-row>
- </cl-crud>
- </cl-dialog>
- </div>
- <div class="f">
- <span class="date">2024-01-01</span>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { useCrud, useSearch, useTable } from '@cool-vue/crud';
- import { ref } from 'vue';
- import { useDict } from '/$/dict';
- const { dict } = useDict();
- // cl-crud 配置
- const Crud = useCrud(
- {
- service: 'test'
- },
- app => {
- app.refresh();
- }
- );
- // cl-table 配置
- const Table = useTable({
- autoHeight: false,
- contextMenu: ['refresh'],
- columns: [
- {
- label: '姓名',
- prop: 'name',
- minWidth: 140
- },
- {
- label: '手机号',
- prop: 'phone',
- minWidth: 140
- },
- {
- label: '工作',
- prop: 'occupation',
- dict: dict.get('occupation'),
- minWidth: 140
- },
- {
- label: '创建时间',
- prop: 'createTime',
- minWidth: 170,
- sortable: 'desc'
- }
- ]
- });
- // cl-search 配置
- //【很重要】该组件基于 cl-form 故很多示例都可复用
- const Search = useSearch({
- // 取消行内表单模式
- inline: false,
- // 表单参数
- props: {
- labelPosition: 'top'
- },
- // 配置如 cl-form 一样
- items: [
- {
- label: '姓名',
- prop: 'name',
- component: {
- name: 'el-input',
- props: {
- clearable: true,
- // 值改变的时候刷新列表
- onChange(val: string) {
- refresh({
- name: val,
- page: 1
- });
- }
- }
- }
- },
- {
- label: '手机号',
- prop: 'phone',
- component: {
- name: 'el-input',
- props: {
- clearable: true
- }
- }
- },
- {
- label: '工作',
- prop: 'occupation',
- component: {
- name: 'cl-select',
- props: {
- tree: true,
- checkStrictly: true,
- options: dict.get('occupation')
- }
- }
- }
- ]
- });
- function refresh(params?: any) {
- Crud.value?.refresh(params);
- }
- const visible = ref(false);
- function open() {
- visible.value = true;
- }
- </script>
- ```
- ## 使用插件 示例
- ```vue
- <template>
- <div class="scope">
- <div class="h">
- <el-tag size="small" effect="dark" disable-transitions>plugin</el-tag>
- <span>使用插件</span>
- </div>
- <div class="c">
- <el-button @click="open">预览</el-button>
- <demo-code :files="['search/layout.vue']" />
- <!-- 自定义表格组件 -->
- <cl-dialog v-model="visible" title="使用插件" width="80%">
- <cl-crud ref="Crud">
- <cl-row>
- <cl-flex1 />
- <!--【很重要】搜索组件 -->
- <cl-search ref="Search" />
- </cl-row>
- <cl-row>
- <cl-table ref="Table" />
- </cl-row>
- <cl-row>
- <cl-flex1 />
- <cl-pagination />
- </cl-row>
- </cl-crud>
- </cl-dialog>
- </div>
- <div class="f">
- <span class="date">2024-01-01</span>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { useCrud, useSearch, useTable } from '@cool-vue/crud';
- import { ref } from 'vue';
- import { useDict } from '/$/dict';
- import { Plugins } from '/#/crud';
- const { dict } = useDict();
- // cl-crud 配置
- const Crud = useCrud(
- {
- service: 'test'
- },
- app => {
- app.refresh();
- }
- );
- // cl-table 配置
- const Table = useTable({
- autoHeight: false,
- contextMenu: ['refresh'],
- columns: [
- {
- label: '姓名',
- prop: 'name',
- minWidth: 140
- },
- {
- label: '手机号',
- prop: 'phone',
- minWidth: 140
- },
- {
- label: '工作',
- prop: 'occupation',
- dict: dict.get('occupation'),
- minWidth: 140
- },
- {
- label: '创建时间',
- prop: 'createTime',
- minWidth: 170,
- sortable: 'desc'
- }
- ]
- });
- // cl-search 配置
- const Search = useSearch({
- // 【很重要】自动读取 service 下的 search 数据
- plugins: [
- Plugins.Search.setAuto({
- customComponent(field) {
- if (field.propertyName == 'name') {
- return {
- name: 'cl-select',
- props: {
- options: [
- {
- label: '张三',
- value: '1'
- },
- {
- label: '李四',
- value: '2'
- }
- ]
- }
- };
- }
- // null 则不操作,按系统默认操作
- return null;
- }
- })
- ]
- });
- function refresh(params?: any) {
- Crud.value?.refresh(params);
- }
- const visible = ref(false);
- function open() {
- visible.value = true;
- }
- </script>
- ```
|