mirror of https://github.com/certd/certd
🔱: [client] sync upgrade with 3 commits [trident-sync]
build: publish success fix: 修复表单全屏的bugpull/91/head
parent
43961c1c18
commit
844c4bf983
|
@ -3,6 +3,17 @@
|
||||||
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.23.4](https://github.com/fast-crud/fast-crud/compare/v1.23.3...v1.23.4) (2024-12-03)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* 修复表单全屏的bug ([a25cff7](https://github.com/fast-crud/fast-crud/commit/a25cff725bef9d0dac063f7bd653844231c57b8d))
|
||||||
|
|
||||||
|
### Performance Improvements
|
||||||
|
|
||||||
|
* rowHandle按钮支持render,删除按钮提供popcomfirm风格示例 ([b834db9](https://github.com/fast-crud/fast-crud/commit/b834db96e46e6b281d5c3a178a57c71aadf9bfd0))
|
||||||
|
* table-select open支持context参数 ([492ee98](https://github.com/fast-crud/fast-crud/commit/492ee9862eee80ffcef81f42178a33484102213a))
|
||||||
|
|
||||||
## [1.23.3](https://github.com/fast-crud/fast-crud/compare/v1.23.2...v1.23.3) (2024-11-26)
|
## [1.23.3](https://github.com/fast-crud/fast-crud/compare/v1.23.2...v1.23.3) (2024-11-26)
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@fast-crud/fs-admin-antdv4",
|
"name": "@fast-crud/fs-admin-antdv4",
|
||||||
"version": "1.23.3",
|
"version": "1.23.4",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
@ -26,10 +26,10 @@
|
||||||
"@ant-design/icons-vue": "^7.0.1",
|
"@ant-design/icons-vue": "^7.0.1",
|
||||||
"@aws-sdk/client-s3": "^3.535.0",
|
"@aws-sdk/client-s3": "^3.535.0",
|
||||||
"@aws-sdk/s3-request-presigner": "^3.535.0",
|
"@aws-sdk/s3-request-presigner": "^3.535.0",
|
||||||
"@fast-crud/fast-crud": "^1.23.3",
|
"@fast-crud/fast-crud": "^1.23.4",
|
||||||
"@fast-crud/fast-extends": "^1.23.3",
|
"@fast-crud/fast-extends": "^1.23.4",
|
||||||
"@fast-crud/ui-antdv4": "^1.23.3",
|
"@fast-crud/ui-antdv4": "^1.23.4",
|
||||||
"@fast-crud/ui-interface": "^1.23.3",
|
"@fast-crud/ui-interface": "^1.23.4",
|
||||||
"@iconify/vue": "^4.1.1",
|
"@iconify/vue": "^4.1.1",
|
||||||
"@soerenmartius/vue3-clipboard": "^0.1.2",
|
"@soerenmartius/vue3-clipboard": "^0.1.2",
|
||||||
"ant-design-vue": "^4.1.2",
|
"ant-design-vue": "^4.1.2",
|
||||||
|
|
|
@ -148,6 +148,7 @@ export default async function ({ crudExpose, context }: CreateCrudOptionsProps):
|
||||||
placeholder: "异步计算远程获取options",
|
placeholder: "异步计算远程获取options",
|
||||||
options: asyncCompute({
|
options: asyncCompute({
|
||||||
async asyncFn(watchValue: any, context: GetContextFn) {
|
async asyncFn(watchValue: any, context: GetContextFn) {
|
||||||
|
message.info("asyncCompute 获取options");
|
||||||
const url = "/mock/dicts/OpenStatusEnum?remote";
|
const url = "/mock/dicts/OpenStatusEnum?remote";
|
||||||
return await requestForMock({ url });
|
return await requestForMock({ url });
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue