Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
1293a738
提交
1293a738
authored
12月 13, 2020
作者:
vben
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: fix modal and drawer component missing uid
上级
f7ec3c93
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
14 行增加
和
8 行删除
+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
没有找到文件。
CHANGELOG.zh_CN.md
浏览文件 @
1293a738
...
...
@@ -22,6 +22,7 @@
-
修复 axios 大小写问题
-
修复按钮样式问题
-
修复菜单分割模式问题
-
修复
`Modal`
与
`Drawer`
组件在使用 emits 数据传递失效问题
## 2.0.0-rc.13 (2020-12-10)
...
...
src/components/Application/index.ts
浏览文件 @
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
浏览文件 @
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
浏览文件 @
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
浏览文件 @
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
浏览文件 @
1293a738
...
...
@@ -12,6 +12,6 @@
}
&__main {
margin-left:
2
px;
margin-left:
1
px;
}
}
src/layouts/default/sider/index.less
浏览文件 @
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;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论