mirror of https://github.com/certd/certd
🔱: [client] sync upgrade with 4 commits [trident-sync]
chore: 1.13.10 chore: 1.13.9 fix: 恢复search插槽pull/14/head
parent
02466ea0bd
commit
dc735a8aa2
|
@ -3,6 +3,16 @@
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
## [1.13.10](https://github.com/fast-crud/fast-crud/compare/v1.13.9...v1.13.10) (2023-05-31)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @fast-crud/fs-admin-antdv
|
||||||
|
|
||||||
|
## [1.13.9](https://github.com/fast-crud/fast-crud/compare/v1.13.8...v1.13.9) (2023-05-31)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* 修复antdv文件上传限制数量的bug ([8b14ba3](https://github.com/fast-crud/fast-crud/commit/8b14ba3a45f90a11222cc751b2ca173e212bc666))
|
||||||
|
|
||||||
## [1.13.8](https://github.com/fast-crud/fast-crud/compare/v1.13.7...v1.13.8) (2023-05-22)
|
## [1.13.8](https://github.com/fast-crud/fast-crud/compare/v1.13.7...v1.13.8) (2023-05-22)
|
||||||
|
|
||||||
**Note:** Version bump only for package @fast-crud/fs-admin-antdv
|
**Note:** Version bump only for package @fast-crud/fs-admin-antdv
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@fast-crud/fs-admin-antdv",
|
"name": "@fast-crud/fs-admin-antdv",
|
||||||
"version": "1.13.8",
|
"version": "1.13.10",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
@ -26,10 +26,10 @@
|
||||||
"@aws-sdk/client-s3": "^3.292.0",
|
"@aws-sdk/client-s3": "^3.292.0",
|
||||||
"@aws-sdk/s3-request-presigner": "^3.292.0",
|
"@aws-sdk/s3-request-presigner": "^3.292.0",
|
||||||
"@fast-crud/fast-bpmn": "^1.0.14",
|
"@fast-crud/fast-bpmn": "^1.0.14",
|
||||||
"@fast-crud/fast-crud": "^1.13.8",
|
"@fast-crud/fast-crud": "^1.13.10",
|
||||||
"@fast-crud/fast-extends": "^1.13.8",
|
"@fast-crud/fast-extends": "^1.13.10",
|
||||||
"@fast-crud/ui-antdv": "^1.13.8",
|
"@fast-crud/ui-antdv": "^1.13.10",
|
||||||
"@fast-crud/ui-interface": "^1.13.8",
|
"@fast-crud/ui-interface": "^1.13.10",
|
||||||
"@iconify/iconify": "^3.1.0",
|
"@iconify/iconify": "^3.1.0",
|
||||||
"@iconify/json": "^2.2.35",
|
"@iconify/json": "^2.2.35",
|
||||||
"@purge-icons/generated": "^0.9.0",
|
"@purge-icons/generated": "^0.9.0",
|
||||||
|
|
|
@ -25,6 +25,27 @@ export default function ({ crudExpose }: CreateCrudOptionsProps): CreateCrudOpti
|
||||||
editRequest,
|
editRequest,
|
||||||
delRequest
|
delRequest
|
||||||
},
|
},
|
||||||
|
search: {
|
||||||
|
container: {
|
||||||
|
action: {
|
||||||
|
col: {
|
||||||
|
span: 16
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
buttons: {
|
||||||
|
change: {
|
||||||
|
text: "切换模式",
|
||||||
|
click() {
|
||||||
|
if (crudExpose.crudBinding.value.search.container.layout === "multi-line") {
|
||||||
|
crudExpose.crudBinding.value.search.container.layout = "default";
|
||||||
|
} else {
|
||||||
|
crudExpose.crudBinding.value.search.container.layout = "multi-line";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
columns: {
|
columns: {
|
||||||
id: {
|
id: {
|
||||||
title: "ID",
|
title: "ID",
|
||||||
|
|
|
@ -15,13 +15,13 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template #search-left>
|
<template #search-left>
|
||||||
<a-button type="danger">search-left插槽</a-button>
|
<fs-button type="danger">search-left插槽</fs-button>
|
||||||
</template>
|
</template>
|
||||||
<template #search-middle>
|
<template #search-middle>
|
||||||
<a-button type="danger">search-middle</a-button>
|
<fs-button type="danger">search-middle</fs-button>
|
||||||
</template>
|
</template>
|
||||||
<template #search-right>
|
<template #search-right>
|
||||||
<a-button type="danger">search-right插槽</a-button>
|
<fs-button type="danger">search-right插槽</fs-button>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template #actionbar-left>
|
<template #actionbar-left>
|
||||||
|
|
Loading…
Reference in New Issue