mirror of
https://github.com/vbenjs/gf-vben-admin.git
synced 2025-02-02 19:08:40 +08:00
fix(form): remove field binding when deleting schema #471
This commit is contained in:
parent
b92b8a3c6a
commit
38f5072695
@ -14,6 +14,7 @@
|
||||
|
||||
- 修复黑暗主题刷新闪烁的白屏
|
||||
- 修复标签页关闭其他功能失效问题
|
||||
- 修复表单已知问题
|
||||
|
||||
## 2.3.0 (2021-04-10)
|
||||
|
||||
|
@ -16,7 +16,7 @@ import { configThemePlugin } from './theme';
|
||||
import { configImageminPlugin } from './imagemin';
|
||||
import { configWindiCssPlugin } from './windicss';
|
||||
import { configSvgIconsPlugin } from './svgSprite';
|
||||
// import { configHmrPlugin } from './hmr';
|
||||
import { configHmrPlugin } from './hmr';
|
||||
|
||||
export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) {
|
||||
const {
|
||||
@ -35,7 +35,7 @@ export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) {
|
||||
];
|
||||
|
||||
// TODO
|
||||
// !isBuild && vitePlugins.push(configHmrPlugin());
|
||||
!isBuild && vitePlugins.push(configHmrPlugin());
|
||||
|
||||
// @vitejs/plugin-legacy
|
||||
VITE_LEGACY && isBuild && vitePlugins.push(legacy());
|
||||
|
@ -77,8 +77,7 @@ export function useForm(props?: Props): UseFormReturnType {
|
||||
},
|
||||
|
||||
removeSchemaByFiled: async (field: string | string[]) => {
|
||||
const form = await getForm();
|
||||
form.removeSchemaByFiled(field);
|
||||
unref(formRef)?.removeSchemaByFiled(field);
|
||||
},
|
||||
|
||||
// TODO promisify
|
||||
|
@ -88,7 +88,9 @@ export function useFormEvents({
|
||||
*/
|
||||
async function removeSchemaByFiled(fields: string | string[]): Promise<void> {
|
||||
const schemaList: FormSchema[] = cloneDeep(unref(getSchema));
|
||||
if (!fields) return;
|
||||
if (!fields) {
|
||||
return;
|
||||
}
|
||||
|
||||
let fieldList: string[] = isString(fields) ? [fields] : fields;
|
||||
if (isString(fields)) {
|
||||
@ -107,6 +109,7 @@ export function useFormEvents({
|
||||
if (isString(field)) {
|
||||
const index = schemaList.findIndex((schema) => schema.field === field);
|
||||
if (index !== -1) {
|
||||
delete formModel[field];
|
||||
schemaList.splice(index, 1);
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +0,0 @@
|
||||
### `Icon.vue`
|
||||
|
||||
```html
|
||||
<Icon icon="mdi:account" />
|
||||
```
|
||||
|
||||
The icon id follows the rules in [Iconify](https://iconify.design/) which you can use any icons from the supported icon sets.
|
Loading…
Reference in New Issue
Block a user