Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
najiu-admin-template
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
najiu-frontend
najiu-admin-template
Commits
c7cfeb54
Commit
c7cfeb54
authored
Oct 23, 2020
by
vben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: form reset logic modification
parent
e034d1ba
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
40 additions
and
25 deletions
+40
-25
CHANGELOG.zh_CN.md
CHANGELOG.zh_CN.md
+1
-0
BasicForm.vue
src/components/Form/src/BasicForm.vue
+4
-4
FormItem.tsx
src/components/Form/src/FormItem.tsx
+14
-1
index.tsx
src/layouts/default/multitabs/index.tsx
+21
-18
tableData.tsx
src/views/demo/table/tableData.tsx
+0
-2
No files found.
CHANGELOG.zh_CN.md
View file @
c7cfeb54
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
### 🎫 Chores
### 🎫 Chores
-
删除代码内的可选链语法
-
删除代码内的可选链语法
-
表单重置逻辑修改
### 🐛 Bug Fixes
### 🐛 Bug Fixes
...
...
src/components/Form/src/BasicForm.vue
View file @
c7cfeb54
...
@@ -194,7 +194,7 @@
...
@@ -194,7 +194,7 @@
model
:
formModel
,
model
:
formModel
,
field
:
schema
.
field
,
field
:
schema
.
field
,
values
:
{
values
:
{
...
un
er
f
(
defaultValueRef
),
...
un
re
f
(
defaultValueRef
),
...
formModel
,
...
formModel
,
},
},
});
});
...
@@ -271,11 +271,11 @@
...
@@ -271,11 +271,11 @@
const
formEl
=
unref
(
formElRef
);
const
formEl
=
unref
(
formElRef
);
if
(
!
formEl
)
return
;
if
(
!
formEl
)
return
;
Object
.
keys
(
formModel
).
forEach
((
key
)
=>
{
Object
.
keys
(
formModel
).
forEach
((
key
)
=>
{
(
formModel
as
any
)[
key
]
=
undefined
;
(
formModel
as
any
)[
key
]
=
defaultValueRef
.
value
[
key
]
;
});
});
const
values
=
formEl
.
resetFields
();
//
const values = formEl.resetFields();
emit
(
'
reset
'
,
toRaw
(
formModel
));
emit
(
'
reset
'
,
toRaw
(
formModel
));
return
values
;
//
return values;
}
}
/**
/**
...
...
src/components/Form/src/FormItem.tsx
View file @
c7cfeb54
...
@@ -139,6 +139,7 @@ export default defineComponent({
...
@@ -139,6 +139,7 @@ export default defineComponent({
}
}
return
rules
;
return
rules
;
}
}
function
renderComponent
()
{
function
renderComponent
()
{
const
{
const
{
componentProps
,
componentProps
,
...
@@ -163,7 +164,6 @@ export default defineComponent({
...
@@ -163,7 +164,6 @@ export default defineComponent({
}
}
},
},
};
};
const
Comp
=
componentMap
.
get
(
component
);
const
Comp
=
componentMap
.
get
(
component
);
const
{
autoSetPlaceHolder
,
size
}
=
props
.
formProps
;
const
{
autoSetPlaceHolder
,
size
}
=
props
.
formProps
;
...
@@ -189,9 +189,22 @@ export default defineComponent({
...
@@ -189,9 +189,22 @@ export default defineComponent({
const
bindValue
=
{
const
bindValue
=
{
[
isCheck
?
'
checked
'
:
'
value
'
]:
(
props
.
formModel
as
any
)[
field
],
[
isCheck
?
'
checked
'
:
'
value
'
]:
(
props
.
formModel
as
any
)[
field
],
};
};
// TODO先兼容antd的警告,后面官方修复后删除
if
(
component
===
'
Select
'
)
{
if
(
Reflect
.
has
(
propsData
,
'
options
'
))
{
propsData
.
options
=
propsData
.
options
.
map
((
item
:
any
)
=>
{
return
{
key
:
item
.
value
,
...
item
,
};
});
}
}
if
(
!
renderComponentContent
)
{
if
(
!
renderComponentContent
)
{
return
<
Comp
{
...
propsData
}
{
...
on
}
{
...
bindValue
}
/>;
return
<
Comp
{
...
propsData
}
{
...
on
}
{
...
bindValue
}
/>;
}
}
return
(
return
(
<
Comp
{
...
propsData
}
{
...
on
}
{
...
bindValue
}
>
<
Comp
{
...
propsData
}
{
...
on
}
{
...
bindValue
}
>
{
{
{
{
...
...
src/layouts/default/multitabs/index.tsx
View file @
c7cfeb54
...
@@ -8,7 +8,7 @@ import {
...
@@ -8,7 +8,7 @@ import {
computed
,
computed
,
// ref,
// ref,
unref
,
unref
,
onMounted
,
//
onMounted,
toRaw
,
toRaw
,
}
from
'
vue
'
;
}
from
'
vue
'
;
import
{
Tabs
}
from
'
ant-design-vue
'
;
import
{
Tabs
}
from
'
ant-design-vue
'
;
...
@@ -24,7 +24,7 @@ import { tabStore } from '/@/store/modules/tab';
...
@@ -24,7 +24,7 @@ import { tabStore } from '/@/store/modules/tab';
import
{
closeTab
}
from
'
./useTabDropdown
'
;
import
{
closeTab
}
from
'
./useTabDropdown
'
;
import
router
from
'
/@/router
'
;
import
router
from
'
/@/router
'
;
import
{
useTabs
}
from
'
/@/hooks/web/useTabs
'
;
import
{
useTabs
}
from
'
/@/hooks/web/useTabs
'
;
import
{
PageEnum
}
from
'
/@/enums/pageEnum
'
;
//
import { PageEnum } from '/@/enums/pageEnum';
import
'
./index.less
'
;
import
'
./index.less
'
;
export
default
defineComponent
({
export
default
defineComponent
({
...
@@ -33,14 +33,17 @@ export default defineComponent({
...
@@ -33,14 +33,17 @@ export default defineComponent({
let
isAddAffix
=
false
;
let
isAddAffix
=
false
;
const
go
=
useGo
();
const
go
=
useGo
();
const
{
currentRoute
}
=
useRouter
();
const
{
currentRoute
}
=
useRouter
();
const
{
addTab
,
activeKeyRef
}
=
useTabs
();
const
{
onMounted
(()
=>
{
// addTab,
const
route
=
unref
(
currentRoute
);
activeKeyRef
,
addTab
(
unref
(
currentRoute
).
path
as
PageEnum
,
false
,
{
}
=
useTabs
();
query
:
route
.
query
,
// onMounted(() => {
params
:
route
.
params
,
// const route = unref(currentRoute);
});
// addTab(unref(currentRoute).path as PageEnum, false, {
});
// query: route.query,
// params: route.params,
// });
// });
// 当前激活tab
// 当前激活tab
// const activeKeyRef = ref<string>('');
// const activeKeyRef = ref<string>('');
...
@@ -64,14 +67,14 @@ export default defineComponent({
...
@@ -64,14 +67,14 @@ export default defineComponent({
// 监听路由的话虽然可以,但是路由切换的时间会造成卡顿现象?
// 监听路由的话虽然可以,但是路由切换的时间会造成卡顿现象?
// 使用useTab的addTab的话,当用户手动调转,需要自行调用addTab
// 使用useTab的addTab的话,当用户手动调转,需要自行调用addTab
// tabStore.commitAddTab((unref(currentRoute) as unknown) as AppRouteRecordRaw);
// tabStore.commitAddTab((unref(currentRoute) as unknown) as AppRouteRecordRaw);
//
const { affix } = currentRoute.value.meta || {};
const
{
affix
}
=
currentRoute
.
value
.
meta
||
{};
//
if (affix) return;
if
(
affix
)
return
;
//
const hasInTab = tabStore.getTabsState.some(
const
hasInTab
=
tabStore
.
getTabsState
.
some
(
//
(item) => item.fullPath === currentRoute.value.fullPath
(
item
)
=>
item
.
fullPath
===
currentRoute
.
value
.
fullPath
//
);
);
//
if (!hasInTab) {
if
(
!
hasInTab
)
{
//
tabStore.commitAddTab((unref(currentRoute) as unknown) as AppRouteRecordRaw);
tabStore
.
commitAddTab
((
unref
(
currentRoute
)
as
unknown
)
as
AppRouteRecordRaw
);
//
}
}
},
},
{
{
immediate
:
true
,
immediate
:
true
,
...
...
src/views/demo/table/tableData.tsx
View file @
c7cfeb54
...
@@ -239,12 +239,10 @@ export function getFormConfig(): Partial<FormProps> {
...
@@ -239,12 +239,10 @@ export function getFormConfig(): Partial<FormProps> {
{
{
label
:
'
选项1
'
,
label
:
'
选项1
'
,
value
:
'
1
'
,
value
:
'
1
'
,
key
:
'
1
'
,
},
},
{
{
label
:
'
选项2
'
,
label
:
'
选项2
'
,
value
:
'
2
'
,
value
:
'
2
'
,
key
:
'
2
'
,
},
},
],
],
},
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment