vxe-pc-ui 4.3.70 → 4.3.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/icon/style.css +1 -1
- package/es/language/ko-KR.js +515 -515
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/es/upload/src/upload.js +4 -3
- package/lib/icon/style/style.css +1 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +6 -5
- package/lib/index.umd.min.js +1 -1
- package/lib/language/ko-KR.js +515 -515
- package/lib/language/ko-KR.min.js +1 -1
- package/lib/language/ko-KR.umd.js +515 -515
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/upload/src/upload.js +4 -3
- package/lib/upload/src/upload.min.js +1 -1
- package/package.json +1 -1
- package/packages/language/ko-KR.ts +515 -515
- package/packages/upload/src/upload.ts +4 -3
- /package/es/icon/{iconfont.1736688707319.ttf → iconfont.1736736680193.ttf} +0 -0
- /package/es/icon/{iconfont.1736688707319.woff → iconfont.1736736680193.woff} +0 -0
- /package/es/icon/{iconfont.1736688707319.woff2 → iconfont.1736736680193.woff2} +0 -0
- /package/es/{iconfont.1736688707319.ttf → iconfont.1736736680193.ttf} +0 -0
- /package/es/{iconfont.1736688707319.woff → iconfont.1736736680193.woff} +0 -0
- /package/es/{iconfont.1736688707319.woff2 → iconfont.1736736680193.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1736688707319.ttf → iconfont.1736736680193.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1736688707319.woff → iconfont.1736736680193.woff} +0 -0
- /package/lib/icon/style/{iconfont.1736688707319.woff2 → iconfont.1736736680193.woff2} +0 -0
- /package/lib/{iconfont.1736688707319.ttf → iconfont.1736736680193.ttf} +0 -0
- /package/lib/{iconfont.1736688707319.woff → iconfont.1736736680193.woff} +0 -0
- /package/lib/{iconfont.1736688707319.woff2 → iconfont.1736736680193.woff2} +0 -0
|
@@ -393,9 +393,10 @@ export default defineComponent({
|
|
|
393
393
|
}
|
|
394
394
|
|
|
395
395
|
const parseFileType = (name: string) => {
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
396
|
+
// 这里不用split('.').pop()因为没有后缀时会返回自身
|
|
397
|
+
const index = name.lastIndexOf('.')
|
|
398
|
+
if (index > 0) {
|
|
399
|
+
return name.substring(index + 1).toLowerCase()
|
|
399
400
|
}
|
|
400
401
|
return ''
|
|
401
402
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|