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
1293a738
Commit
1293a738
authored
Dec 13, 2020
by
vben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: fix modal and drawer component missing uid
parent
f7ec3c93
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
8 deletions
+14
-8
CHANGELOG.zh_CN.md
CHANGELOG.zh_CN.md
+1
-0
index.ts
src/components/Application/index.ts
+3
-1
useDrawer.ts
src/components/Drawer/src/useDrawer.ts
+1
-1
useModal.ts
src/components/Modal/src/useModal.ts
+4
-2
LayoutMultipleHeader.less
src/layouts/default/header/LayoutMultipleHeader.less
+3
-2
index.less
src/layouts/default/index.less
+1
-1
index.less
src/layouts/default/sider/index.less
+1
-1
No files found.
CHANGELOG.zh_CN.md
View file @
1293a738
...
...
@@ -22,6 +22,7 @@
-
修复 axios 大小写问题
-
修复按钮样式问题
-
修复菜单分割模式问题
-
修复
`Modal`
与
`Drawer`
组件在使用 emits 数据传递失效问题
## 2.0.0-rc.13 (2020-12-10)
...
...
src/components/Application/index.ts
View file @
1293a738
import
{
withInstall
}
from
'
../util
'
;
import
{
createAsyncComponent
}
from
'
/@/utils/factory/createAsyncComponent
'
;
import
AppLogo
from
'
./src/AppLogo.vue
'
;
export
const
AppLocalePicker
=
createAsyncComponent
(()
=>
import
(
'
./src/AppLocalePicker.vue
'
),
{
loading
:
true
,
...
...
@@ -8,8 +9,9 @@ export const AppProvider = createAsyncComponent(() => import('./src/AppProvider.
export
const
AppSearch
=
createAsyncComponent
(()
=>
import
(
'
./src/search/AppSearch.vue
'
),
{
loading
:
true
,
});
export
const
AppLogo
=
createAsyncComponent
(()
=>
import
(
'
./src/AppLogo.vue
'
));
//
export const AppLogo = createAsyncComponent(() => import('./src/AppLogo.vue'));
withInstall
(
AppLocalePicker
,
AppLogo
,
AppProvider
,
AppSearch
);
export
{
useAppProviderContext
}
from
'
./src/useAppContext
'
;
export
{
AppLogo
};
src/components/Drawer/src/useDrawer.ts
View file @
1293a738
...
...
@@ -102,7 +102,7 @@ export const useDrawerInner = (callbackFn?: Fn): UseDrawerInnerReturnType => {
uidRef
.
value
=
uuid
;
drawerInstanceRef
.
value
=
modalInstance
;
currentInstall
.
emit
(
'
register
'
,
modalInstance
);
currentInstall
.
emit
(
'
register
'
,
modalInstance
,
uuid
);
};
watchEffect
(()
=>
{
...
...
src/components/Modal/src/useModal.ts
View file @
1293a738
...
...
@@ -90,6 +90,9 @@ export const useModalInner = (callbackFn?: Fn): UseModalInnerReturnType => {
throw
new
Error
(
'
instance is undefined!
'
);
}
// currentInstall.type.emits = [...currentInstall.type.emits, 'register'];
// Object.assign(currentInstall.type.emits, ['register']);
const
getInstance
=
()
=>
{
const
instance
=
unref
(
modalInstanceRef
);
if
(
!
instance
)
{
...
...
@@ -103,10 +106,9 @@ export const useModalInner = (callbackFn?: Fn): UseModalInnerReturnType => {
tryOnUnmounted
(()
=>
{
modalInstanceRef
.
value
=
null
;
});
uidRef
.
value
=
uuid
;
modalInstanceRef
.
value
=
modalInstance
;
currentInstall
.
emit
(
'
register
'
,
modalInstance
);
currentInstall
.
emit
(
'
register
'
,
modalInstance
,
uuid
);
};
watchEffect
(()
=>
{
...
...
src/layouts/default/header/LayoutMultipleHeader.less
View file @
1293a738
.multiple-tab-header {
flex: 0 0 auto
;
margin-left: 1px
;
transition: width 0.2s;
flex: 0 0 auto;
&.dark {
margin-left:
-1px
;
margin-left:
0
;
}
&.fixed {
...
...
src/layouts/default/index.less
View file @
1293a738
...
...
@@ -12,6 +12,6 @@
}
&__main {
margin-left:
2
px;
margin-left:
1
px;
}
}
src/layouts/default/sider/index.less
View file @
1293a738
...
...
@@ -25,7 +25,7 @@
}
&:not(.ant-layout-sider-dark) {
box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
//
box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
.ant-layout-sider-trigger {
color: @text-color-base;
...
...
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