让企业管理更智慧、更快捷
Skip to content
GitLab
探索
登录
注册
源代码提交(3)
docs: update changelog
· 6dc103b3
由
丁阳
创作于
1月 30, 2024
6dc103b3
refactor: 更改上传组件的返回参数
· fb281143
由
丁阳
创作于
2月 01, 2024
fb281143
1.0.26
· ea4ce907
由
丁阳
创作于
2月 01, 2024
ea4ce907
隐藏空白变更内容
行内
左右并排
CHANGELOG.md
浏览文件 @
ea4ce907
## [1.0.25](http://git.leadwaycloud.com/package/lwc-ui-components/compare/v1.0.24...v1.0.25) (2024-01-30)
### Bug Fixes
*
修复弹窗中使用附件管理弹窗显示错误问题 (
[
26612b4
](
http://git.leadwaycloud.com/package/lwc-ui-components/commits/26612b442824e860ed868f9a10f8b2b0270177f1
)
)
## [1.0.24](http://git.leadwaycloud.com/package/lwc-ui-components/compare/v1.0.23...v1.0.24) (2024-01-22)
...
...
package.json
浏览文件 @
ea4ce907
{
"name"
:
"@package/lwc-ui-components"
,
"version"
:
"1.0.2
5
"
,
"version"
:
"1.0.2
6
"
,
"private"
:
false
,
"description"
:
"立威云UI组件库"
,
"author"
:
""
,
...
...
src/stories/changelog.stories.mdx
浏览文件 @
ea4ce907
...
...
@@ -8,6 +8,13 @@
`新特性`
`非兼容性更新`
---
### **v1.0.25 20240130**
#### 修复
- 修复 lwc-upload-file 组件在弹窗中打开新增和预览蒙版被覆盖的错误
---
### **v1.0.24 20240122**
...
...
src/stories/upload/image/src/index.js
浏览文件 @
ea4ce907
...
...
@@ -506,7 +506,7 @@ export default {
}
xhr
.
onreadystatechange
=
function
()
{
if
(
xhr
.
readyState
==
4
&&
xhr
.
status
==
200
)
{
if
(
xhr
.
readyState
==
4
&&
xhr
.
status
==
200
||
xhr
.
code
==
200
)
{
self
.
$emit
(
"
upload
"
,
xhr
.
responseText
)
if
(
self
.
path
)
{
self
.
getHref
(
xhr
.
responseText
)
...
...
@@ -538,7 +538,7 @@ export default {
}
}
else
{
const
result
=
JSON
.
parse
(
res
);
if
(
result
.
code
===
200
)
{
if
(
result
.
status
===
200
||
result
.
code
===
200
)
{
const
url
=
`
${
this
.
path
}
/
${
result
.
data
.
merchantId
}
/
${
result
.
data
.
id
}
`
;
this
.
setValue
(
url
,
'
add
'
)
}
...
...