让企业管理更智慧、更快捷
Skip to content
GitLab
探索
登录
注册
源代码提交(3)
fix: 修复弹窗中使用附件管理弹窗显示错误问题
· 26612b44
由
丁阳
创作于
1月 30, 2024
26612b44
Merge branch 'master' of
http://git.leadwaycloud.com/package/lwc-ui-components
· fb263558
由
丁阳
创作于
1月 30, 2024
fb263558
1.0.25
· f70f28b3
由
丁阳
创作于
1月 30, 2024
f70f28b3
隐藏空白变更内容
行内
左右并排
package.json
浏览文件 @
f70f28b3
{
"name"
:
"@package/lwc-ui-components"
,
"version"
:
"1.0.2
4
"
,
"version"
:
"1.0.2
5
"
,
"private"
:
false
,
"description"
:
"立威云UI组件库"
,
"author"
:
""
,
...
...
src/index.js
浏览文件 @
f70f28b3
...
...
@@ -209,7 +209,7 @@ if (typeof window !== 'undefined' && window.Vue) {
}
export
default
{
version
:
'
1.0.2
1
'
,
version
:
'
1.0.2
4
'
,
install
,
LwcBasicButton
,
LwcBasicButtonIcon
,
...
...
src/stories/upload/file/src/index.js
浏览文件 @
f70f28b3
...
...
@@ -88,7 +88,8 @@ function renderPreviewFile(h, _vm) {
visible
:
_vm
.
previewFileDialog
,
top
:
"
10vh
"
,
"
close-on-click-modal
"
:
false
,
customClass
:
"
text-center
"
customClass
:
"
text-center
"
,
...(
_vm
.
dialogConfig
||
{})
},
on
:
{
"
update:visible
"
:
(
val
)
=>
{
...
...
@@ -132,7 +133,8 @@ function renderAddFile(h, _vm) {
visible
:
_vm
.
addFileDialog
,
top
:
"
10%
"
,
width
:
"
600px
"
,
"
close-on-click-modal
"
:
false
"
close-on-click-modal
"
:
false
,
...(
_vm
.
dialogConfig
||
{})
},
on
:
{
"
update:visible
"
:
(
val
)
=>
{
...
...
@@ -297,6 +299,14 @@ export default {
}
}
}
},
dialogConfig
:
{
type
:
Object
,
default
:
function
()
{
return
{
"
append-to-body
"
:
true
}
}
}
},
data
()
{
...
...