mirror of https://github.com/certd/certd
🔱: [client] sync upgrade with 3 commits [trident-sync]
build: publish success feat: 新特性,CrudOptionsPluginpull/14/head
parent
31384fbce5
commit
afb682e3eb
|
@ -3,6 +3,16 @@
|
|||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [1.18.0](https://github.com/fast-crud/fast-crud/compare/v1.17.5...v1.18.0) (2023-10-25)
|
||||
|
||||
### Features
|
||||
|
||||
* 新特性,CrudOptionsPlugin ([9e1ac6d](https://github.com/fast-crud/fast-crud/commit/9e1ac6df56622b3b75cd5a23ea565f5c722085de))
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* 优化文档搜索 ([19fff41](https://github.com/fast-crud/fast-crud/commit/19fff41b3f431e2bd1c84274a7d17ad96a547b03))
|
||||
|
||||
## [1.17.5](https://github.com/fast-crud/fast-crud/compare/v1.17.4...v1.17.5) (2023-09-26)
|
||||
|
||||
**Note:** Version bump only for package @fast-crud/fs-admin-antdv
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fast-crud/fs-admin-antdv",
|
||||
"version": "1.17.5",
|
||||
"version": "1.18.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
@ -26,10 +26,10 @@
|
|||
"@ant-design/icons-vue": "^6.1.0",
|
||||
"@aws-sdk/client-s3": "^3.383.0",
|
||||
"@aws-sdk/s3-request-presigner": "^3.383.0",
|
||||
"@fast-crud/fast-crud": "^1.17.5",
|
||||
"@fast-crud/fast-extends": "^1.17.5",
|
||||
"@fast-crud/ui-antdv": "^1.17.5",
|
||||
"@fast-crud/ui-interface": "^1.17.5",
|
||||
"@fast-crud/fast-crud": "^1.18.0",
|
||||
"@fast-crud/fast-extends": "^1.18.0",
|
||||
"@fast-crud/ui-antdv": "^1.18.0",
|
||||
"@fast-crud/ui-interface": "^1.18.0",
|
||||
"@iconify/iconify": "^3.1.1",
|
||||
"@iconify/json": "^2.2.98",
|
||||
"@purge-icons/generated": "^0.9.0",
|
||||
|
|
|
@ -29,14 +29,12 @@ export default function ({ crudExpose }: CreateCrudOptionsProps): CreateCrudOpti
|
|||
// 表头过滤改变事件
|
||||
onFilterChange(filters: any) {
|
||||
console.log("onFilterChange", filters);
|
||||
if (filters.remote != null) {
|
||||
crudExpose.setSearchFormData({
|
||||
form: {
|
||||
remote: filters.remote
|
||||
}
|
||||
});
|
||||
crudExpose.doRefresh();
|
||||
}
|
||||
crudExpose.setSearchFormData({
|
||||
form: {
|
||||
remote: filters.remote
|
||||
}
|
||||
});
|
||||
crudExpose.doRefresh();
|
||||
}
|
||||
},
|
||||
columns: {
|
||||
|
|
Loading…
Reference in New Issue