@jari-ace/element-plus-component 0.4.4 → 0.5.1
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/dist/components/autoComplete/JaAutoComplete.vue.d.ts +24 -24
- package/dist/components/avatar/JaAvatar.vue.d.ts.map +1 -1
- package/dist/components/avatar/JaAvatar.vue.js +4 -2
- package/dist/components/avatar/JaAvatar.vue.js.map +1 -1
- package/dist/components/flowShell/FlowFormShell.vue.d.ts +400 -0
- package/dist/components/flowShell/FlowFormShell.vue.d.ts.map +1 -0
- package/dist/components/flowShell/FlowFormShell.vue.js +671 -0
- package/dist/components/flowShell/FlowFormShell.vue.js.map +1 -0
- package/dist/components/flowShell/index.d.ts +4 -0
- package/dist/components/flowShell/index.d.ts.map +1 -0
- package/dist/components/flowShell/index.js +4 -0
- package/dist/components/flowShell/index.js.map +1 -0
- package/dist/components/formItem/JaFormItem.vue.d.ts +2 -2
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/index.js +1 -0
- package/dist/components/index.js.map +1 -1
- package/dist/components/input/JaInput.vue.d.ts +14 -14
- package/dist/components/inputI18n/InputI18n.vue.d.ts.map +1 -1
- package/dist/components/inputI18n/InputI18n.vue.js +2 -0
- package/dist/components/inputI18n/InputI18n.vue.js.map +1 -1
- package/dist/components/inputI18n/JaInputI18n.vue.d.ts +70 -70
- package/dist/components/inputNumber/JaInputNumber.vue.d.ts +18 -18
- package/dist/components/scrollbar/Scrollbar.vue.d.ts +10 -10
- package/dist/components/select/JaSelect.vue.d.ts +70 -70
- package/dist/components/switch/JaSwitch.vue.d.ts +2 -2
- package/dist/components/upload/JaUploader.vue.d.ts +16 -4
- package/dist/components/upload/JaUploader.vue.d.ts.map +1 -1
- package/dist/components/upload/index.d.ts +21 -5
- package/dist/components/upload/index.d.ts.map +1 -1
- package/dist/components/upload/uploader.vue.d.ts +7 -1
- package/dist/components/upload/uploader.vue.d.ts.map +1 -1
- package/dist/components/upload/uploader.vue.js +428 -202
- package/dist/components/upload/uploader.vue.js.map +1 -1
- package/dist/components/userGroupTree/src/userGroupTree.vue.d.ts +4 -4
- package/dist/components/userPicker/src/JaUserList.vue.d.ts.map +1 -1
- package/dist/components/userPicker/src/JaUserList.vue.js +0 -2
- package/dist/components/userPicker/src/JaUserList.vue.js.map +1 -1
- package/dist/components/userTag/UserInfoTag.vue.d.ts +7 -1
- package/dist/components/userTag/UserInfoTag.vue.d.ts.map +1 -1
- package/dist/components/userTag/UserInfoTag.vue.js +67 -50
- package/dist/components/userTag/UserInfoTag.vue.js.map +1 -1
- package/lib/index.css +2 -2
- package/lib/index.js +12307 -11479
- package/lib/index.umd.cjs +36 -36
- package/package.json +4 -2
- package/packages/components/avatar/JaAvatar.vue +4 -2
- package/packages/components/flowShell/FlowFormShell.vue +628 -0
- package/packages/components/flowShell/index.ts +5 -0
- package/packages/components/index.ts +1 -0
- package/packages/components/inputI18n/InputI18n.vue +3 -5
- package/packages/components/upload/uploader.vue +258 -39
- package/packages/components/userPicker/src/JaUserList.vue +0 -1
- package/packages/components/userTag/UserInfoTag.vue +28 -6
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { createAxiosWithoutCache, Jari, useFilesApi, useLoading, useLoginUser } from "@jari-ace/app-bolts";
|
|
2
2
|
import { nextTick, onMounted, onUnmounted, ref, watch } from "vue";
|
|
3
|
-
import { ArrowDown, Download, Upload, WarningFilled } from "@element-plus/icons-vue";
|
|
3
|
+
import { ArrowDown, Document, Download, Upload, WarningFilled, Picture, VideoPlay, Headset } from "@element-plus/icons-vue";
|
|
4
4
|
import { useSystemClassificationLevelMap, useSystemClassificationLevels } from "../../hooks/useClassificationLevels";
|
|
5
5
|
var Ace = Jari.Ace;
|
|
6
|
-
import { ElMessageBox } from "element-plus";
|
|
7
6
|
import "@uppy/core/css/style.min.css";
|
|
8
7
|
import "@uppy/dashboard/css/style.min.css";
|
|
9
8
|
import "@uppy/audio/css/style.min.css";
|
|
@@ -20,9 +19,11 @@ import Dashboard from "@uppy/dashboard";
|
|
|
20
19
|
import ImageEditor from "@uppy/image-editor";
|
|
21
20
|
import prettyBytes from "pretty-bytes";
|
|
22
21
|
import PdfViewerModal from "./pdf-viewer/PdfViewerModal.vue";
|
|
23
|
-
import { ElTable, ElTableColumn, ElButton, ElDropdown, ElDropdownItem, ElDropdownMenu, ElIcon, ElTag, ElTooltip } from "element-plus";
|
|
22
|
+
import { ElMessageBox, ElTable, ElTableColumn, ElButton, ElDropdown, ElDropdownItem, ElDropdownMenu, ElIcon, ElTag, ElTooltip, ElPopover } from "element-plus";
|
|
24
23
|
import { fa } from "element-plus/es/locales.mjs";
|
|
25
|
-
const props = defineProps()
|
|
24
|
+
const props = withDefaults(defineProps(), {
|
|
25
|
+
layout: 'list'
|
|
26
|
+
});
|
|
26
27
|
const attachId = defineModel({
|
|
27
28
|
required: false
|
|
28
29
|
});
|
|
@@ -372,7 +373,40 @@ watch(() => props.attachToken, () => {
|
|
|
372
373
|
}
|
|
373
374
|
});
|
|
374
375
|
watch(() => props.classificationLevel, updateAllowedClassificationLevels);
|
|
376
|
+
function getFileIcon(fileName) {
|
|
377
|
+
if (!fileName)
|
|
378
|
+
return Document;
|
|
379
|
+
const ext = fileName.split('.').pop()?.toLowerCase();
|
|
380
|
+
switch (ext) {
|
|
381
|
+
case 'jpg':
|
|
382
|
+
case 'jpeg':
|
|
383
|
+
case 'png':
|
|
384
|
+
case 'gif':
|
|
385
|
+
case 'bmp':
|
|
386
|
+
case 'webp':
|
|
387
|
+
case 'svg':
|
|
388
|
+
return Picture;
|
|
389
|
+
case 'mp4':
|
|
390
|
+
case 'mkv':
|
|
391
|
+
case 'avi':
|
|
392
|
+
case 'mov':
|
|
393
|
+
case 'wmv':
|
|
394
|
+
case 'webm':
|
|
395
|
+
return VideoPlay;
|
|
396
|
+
case 'mp3':
|
|
397
|
+
case 'wav':
|
|
398
|
+
case 'ogg':
|
|
399
|
+
case 'flac':
|
|
400
|
+
case 'm4a':
|
|
401
|
+
return Headset;
|
|
402
|
+
default:
|
|
403
|
+
return Document;
|
|
404
|
+
}
|
|
405
|
+
}
|
|
375
406
|
debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
|
|
407
|
+
const __VLS_withDefaultsArg = (function (t) { return t; })({
|
|
408
|
+
layout: 'list'
|
|
409
|
+
});
|
|
376
410
|
const __VLS_defaults = {};
|
|
377
411
|
const __VLS_modelEmit = defineEmits();
|
|
378
412
|
const __VLS_ctx = {};
|
|
@@ -535,227 +569,417 @@ if (__VLS_ctx.uploadingProgress < 100 && __VLS_ctx.uploadingProgress > 0) {
|
|
|
535
569
|
});
|
|
536
570
|
(__VLS_ctx.uploadingProgress);
|
|
537
571
|
}
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
}
|
|
549
|
-
const __VLS_46 = __VLS_45({
|
|
550
|
-
data: (__VLS_ctx.files),
|
|
551
|
-
showHeader: (true),
|
|
552
|
-
...{ style: {} },
|
|
553
|
-
emptyText: "暂无文件",
|
|
554
|
-
height: (props.height),
|
|
555
|
-
maxHeight: (props.maxHeight),
|
|
556
|
-
}, ...__VLS_functionalComponentArgsRest(__VLS_45));
|
|
557
|
-
__VLS_47.slots.default;
|
|
558
|
-
const __VLS_48 = {}.ElTableColumn;
|
|
559
|
-
/** @type {[typeof __VLS_components.ElTableColumn, typeof __VLS_components.elTableColumn, ]} */ ;
|
|
560
|
-
// @ts-ignore
|
|
561
|
-
const __VLS_49 = __VLS_asFunctionalComponent(__VLS_48, new __VLS_48({
|
|
562
|
-
prop: "fileName",
|
|
563
|
-
}));
|
|
564
|
-
const __VLS_50 = __VLS_49({
|
|
565
|
-
prop: "fileName",
|
|
566
|
-
}, ...__VLS_functionalComponentArgsRest(__VLS_49));
|
|
567
|
-
const __VLS_52 = {}.ElTableColumn;
|
|
568
|
-
/** @type {[typeof __VLS_components.ElTableColumn, typeof __VLS_components.elTableColumn, typeof __VLS_components.ElTableColumn, typeof __VLS_components.elTableColumn, ]} */ ;
|
|
569
|
-
// @ts-ignore
|
|
570
|
-
const __VLS_53 = __VLS_asFunctionalComponent(__VLS_52, new __VLS_52({
|
|
571
|
-
prop: "fileSize",
|
|
572
|
-
width: "100",
|
|
573
|
-
}));
|
|
574
|
-
const __VLS_54 = __VLS_53({
|
|
575
|
-
prop: "fileSize",
|
|
576
|
-
width: "100",
|
|
577
|
-
}, ...__VLS_functionalComponentArgsRest(__VLS_53));
|
|
578
|
-
__VLS_55.slots.default;
|
|
579
|
-
{
|
|
580
|
-
const { default: __VLS_thisSlot } = __VLS_55.slots;
|
|
581
|
-
const [scope] = __VLS_getSlotParams(__VLS_thisSlot);
|
|
582
|
-
(__VLS_ctx.prettyBytes(scope.row.fileSize));
|
|
583
|
-
}
|
|
584
|
-
var __VLS_55;
|
|
585
|
-
const __VLS_56 = {}.ElTableColumn;
|
|
586
|
-
/** @type {[typeof __VLS_components.ElTableColumn, typeof __VLS_components.elTableColumn, typeof __VLS_components.ElTableColumn, typeof __VLS_components.elTableColumn, ]} */ ;
|
|
587
|
-
// @ts-ignore
|
|
588
|
-
const __VLS_57 = __VLS_asFunctionalComponent(__VLS_56, new __VLS_56({
|
|
589
|
-
prop: "classifiedLevel",
|
|
590
|
-
width: "80",
|
|
591
|
-
}));
|
|
592
|
-
const __VLS_58 = __VLS_57({
|
|
593
|
-
prop: "classifiedLevel",
|
|
594
|
-
width: "80",
|
|
595
|
-
}, ...__VLS_functionalComponentArgsRest(__VLS_57));
|
|
596
|
-
__VLS_59.slots.default;
|
|
597
|
-
{
|
|
598
|
-
const { default: __VLS_thisSlot } = __VLS_59.slots;
|
|
599
|
-
const [scope] = __VLS_getSlotParams(__VLS_thisSlot);
|
|
600
|
-
const __VLS_60 = {}.ElTag;
|
|
601
|
-
/** @type {[typeof __VLS_components.ElTag, typeof __VLS_components.elTag, typeof __VLS_components.ElTag, typeof __VLS_components.elTag, ]} */ ;
|
|
602
|
-
// @ts-ignore
|
|
603
|
-
const __VLS_61 = __VLS_asFunctionalComponent(__VLS_60, new __VLS_60({
|
|
604
|
-
type: (scope.row.classifiedLevel < 50 ? (scope.row.classifiedLevel < 30 ? 'danger' : 'warning') : 'info'),
|
|
605
|
-
}));
|
|
606
|
-
const __VLS_62 = __VLS_61({
|
|
607
|
-
type: (scope.row.classifiedLevel < 50 ? (scope.row.classifiedLevel < 30 ? 'danger' : 'warning') : 'info'),
|
|
608
|
-
}, ...__VLS_functionalComponentArgsRest(__VLS_61));
|
|
609
|
-
__VLS_63.slots.default;
|
|
610
|
-
(__VLS_ctx.classificationLevelMap?.get(scope.row.classifiedLevel));
|
|
611
|
-
var __VLS_63;
|
|
612
|
-
if (scope.row.classifiedLevel < __VLS_ctx.highestClassificationLevel) {
|
|
613
|
-
const __VLS_64 = {}.ElTooltip;
|
|
614
|
-
/** @type {[typeof __VLS_components.ElTooltip, typeof __VLS_components.elTooltip, typeof __VLS_components.ElTooltip, typeof __VLS_components.elTooltip, ]} */ ;
|
|
572
|
+
if (__VLS_ctx.layout === 'inline') {
|
|
573
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
574
|
+
...{ class: "inline-files" },
|
|
575
|
+
});
|
|
576
|
+
for (const [file] of __VLS_getVForSourceType((__VLS_ctx.files))) {
|
|
577
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
578
|
+
key: (file.id),
|
|
579
|
+
...{ class: "inline-file-item" },
|
|
580
|
+
});
|
|
581
|
+
const __VLS_44 = {}.ElPopover;
|
|
582
|
+
/** @type {[typeof __VLS_components.ElPopover, typeof __VLS_components.elPopover, typeof __VLS_components.ElPopover, typeof __VLS_components.elPopover, ]} */ ;
|
|
615
583
|
// @ts-ignore
|
|
616
|
-
const
|
|
617
|
-
|
|
584
|
+
const __VLS_45 = __VLS_asFunctionalComponent(__VLS_44, new __VLS_44({
|
|
585
|
+
placement: "top",
|
|
586
|
+
width: (300),
|
|
587
|
+
trigger: "hover",
|
|
618
588
|
}));
|
|
619
|
-
const
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
589
|
+
const __VLS_46 = __VLS_45({
|
|
590
|
+
placement: "top",
|
|
591
|
+
width: (300),
|
|
592
|
+
trigger: "hover",
|
|
593
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_45));
|
|
594
|
+
__VLS_47.slots.default;
|
|
595
|
+
{
|
|
596
|
+
const { reference: __VLS_thisSlot } = __VLS_47.slots;
|
|
597
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
598
|
+
...{ class: "inline-file-icon-wrapper" },
|
|
599
|
+
});
|
|
600
|
+
const __VLS_48 = {}.ElIcon;
|
|
601
|
+
/** @type {[typeof __VLS_components.ElIcon, typeof __VLS_components.elIcon, typeof __VLS_components.ElIcon, typeof __VLS_components.elIcon, ]} */ ;
|
|
602
|
+
// @ts-ignore
|
|
603
|
+
const __VLS_49 = __VLS_asFunctionalComponent(__VLS_48, new __VLS_48({
|
|
604
|
+
...{ class: "file-icon" },
|
|
605
|
+
size: "20",
|
|
606
|
+
}));
|
|
607
|
+
const __VLS_50 = __VLS_49({
|
|
608
|
+
...{ class: "file-icon" },
|
|
609
|
+
size: "20",
|
|
610
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_49));
|
|
611
|
+
__VLS_51.slots.default;
|
|
612
|
+
const __VLS_52 = ((__VLS_ctx.getFileIcon(file.fileName)));
|
|
613
|
+
// @ts-ignore
|
|
614
|
+
const __VLS_53 = __VLS_asFunctionalComponent(__VLS_52, new __VLS_52({}));
|
|
615
|
+
const __VLS_54 = __VLS_53({}, ...__VLS_functionalComponentArgsRest(__VLS_53));
|
|
616
|
+
var __VLS_51;
|
|
617
|
+
}
|
|
618
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
619
|
+
...{ class: "file-popover-content" },
|
|
620
|
+
});
|
|
621
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
622
|
+
...{ class: "popover-row" },
|
|
623
|
+
});
|
|
624
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.span, __VLS_intrinsicElements.span)({
|
|
625
|
+
...{ class: "label" },
|
|
626
|
+
});
|
|
627
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.span, __VLS_intrinsicElements.span)({
|
|
628
|
+
...{ class: "value" },
|
|
629
|
+
});
|
|
630
|
+
(file.fileName);
|
|
631
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
632
|
+
...{ class: "popover-row" },
|
|
633
|
+
});
|
|
634
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.span, __VLS_intrinsicElements.span)({
|
|
635
|
+
...{ class: "label" },
|
|
636
|
+
});
|
|
637
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.span, __VLS_intrinsicElements.span)({
|
|
638
|
+
...{ class: "value" },
|
|
639
|
+
});
|
|
640
|
+
(__VLS_ctx.prettyBytes(file.fileSize));
|
|
641
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
642
|
+
...{ class: "popover-row" },
|
|
643
|
+
});
|
|
644
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.span, __VLS_intrinsicElements.span)({
|
|
645
|
+
...{ class: "label" },
|
|
646
|
+
});
|
|
647
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.span, __VLS_intrinsicElements.span)({
|
|
648
|
+
...{ class: "value" },
|
|
649
|
+
});
|
|
650
|
+
const __VLS_56 = {}.ElTag;
|
|
651
|
+
/** @type {[typeof __VLS_components.ElTag, typeof __VLS_components.elTag, typeof __VLS_components.ElTag, typeof __VLS_components.elTag, ]} */ ;
|
|
625
652
|
// @ts-ignore
|
|
626
|
-
const
|
|
627
|
-
|
|
653
|
+
const __VLS_57 = __VLS_asFunctionalComponent(__VLS_56, new __VLS_56({
|
|
654
|
+
size: "small",
|
|
655
|
+
type: (file.classifiedLevel < 50 ? (file.classifiedLevel < 30 ? 'danger' : 'warning') : 'info'),
|
|
628
656
|
}));
|
|
629
|
-
const
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
657
|
+
const __VLS_58 = __VLS_57({
|
|
658
|
+
size: "small",
|
|
659
|
+
type: (file.classifiedLevel < 50 ? (file.classifiedLevel < 30 ? 'danger' : 'warning') : 'info'),
|
|
660
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_57));
|
|
661
|
+
__VLS_59.slots.default;
|
|
662
|
+
(__VLS_ctx.classificationLevelMap?.get(file.classifiedLevel));
|
|
663
|
+
var __VLS_59;
|
|
664
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
665
|
+
...{ class: "popover-actions" },
|
|
666
|
+
});
|
|
667
|
+
if (__VLS_ctx.checkAllowPreview(file)) {
|
|
668
|
+
const __VLS_60 = {}.ElButton;
|
|
669
|
+
/** @type {[typeof __VLS_components.ElButton, typeof __VLS_components.elButton, typeof __VLS_components.ElButton, typeof __VLS_components.elButton, ]} */ ;
|
|
670
|
+
// @ts-ignore
|
|
671
|
+
const __VLS_61 = __VLS_asFunctionalComponent(__VLS_60, new __VLS_60({
|
|
672
|
+
...{ 'onClick': {} },
|
|
673
|
+
link: true,
|
|
674
|
+
type: "primary",
|
|
675
|
+
}));
|
|
676
|
+
const __VLS_62 = __VLS_61({
|
|
677
|
+
...{ 'onClick': {} },
|
|
678
|
+
link: true,
|
|
679
|
+
type: "primary",
|
|
680
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_61));
|
|
681
|
+
let __VLS_64;
|
|
682
|
+
let __VLS_65;
|
|
683
|
+
let __VLS_66;
|
|
684
|
+
const __VLS_67 = {
|
|
685
|
+
onClick: (...[$event]) => {
|
|
686
|
+
if (!(__VLS_ctx.layout === 'inline'))
|
|
687
|
+
return;
|
|
688
|
+
if (!(__VLS_ctx.checkAllowPreview(file)))
|
|
689
|
+
return;
|
|
690
|
+
__VLS_ctx.previewFile(file.token);
|
|
691
|
+
}
|
|
692
|
+
};
|
|
693
|
+
__VLS_63.slots.default;
|
|
694
|
+
var __VLS_63;
|
|
695
|
+
}
|
|
696
|
+
if (__VLS_ctx.checkAllowDownload()) {
|
|
697
|
+
const __VLS_68 = {}.ElButton;
|
|
698
|
+
/** @type {[typeof __VLS_components.ElButton, typeof __VLS_components.elButton, typeof __VLS_components.ElButton, typeof __VLS_components.elButton, ]} */ ;
|
|
699
|
+
// @ts-ignore
|
|
700
|
+
const __VLS_69 = __VLS_asFunctionalComponent(__VLS_68, new __VLS_68({
|
|
701
|
+
...{ 'onClick': {} },
|
|
702
|
+
link: true,
|
|
703
|
+
type: "primary",
|
|
704
|
+
}));
|
|
705
|
+
const __VLS_70 = __VLS_69({
|
|
706
|
+
...{ 'onClick': {} },
|
|
707
|
+
link: true,
|
|
708
|
+
type: "primary",
|
|
709
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_69));
|
|
710
|
+
let __VLS_72;
|
|
711
|
+
let __VLS_73;
|
|
712
|
+
let __VLS_74;
|
|
713
|
+
const __VLS_75 = {
|
|
714
|
+
onClick: (...[$event]) => {
|
|
715
|
+
if (!(__VLS_ctx.layout === 'inline'))
|
|
716
|
+
return;
|
|
717
|
+
if (!(__VLS_ctx.checkAllowDownload()))
|
|
718
|
+
return;
|
|
719
|
+
__VLS_ctx.downloadFile(file.token);
|
|
720
|
+
}
|
|
721
|
+
};
|
|
722
|
+
__VLS_71.slots.default;
|
|
723
|
+
var __VLS_71;
|
|
724
|
+
}
|
|
725
|
+
if (__VLS_ctx.checkAllowDelete()) {
|
|
726
|
+
const __VLS_76 = {}.ElButton;
|
|
727
|
+
/** @type {[typeof __VLS_components.ElButton, typeof __VLS_components.elButton, typeof __VLS_components.ElButton, typeof __VLS_components.elButton, ]} */ ;
|
|
728
|
+
// @ts-ignore
|
|
729
|
+
const __VLS_77 = __VLS_asFunctionalComponent(__VLS_76, new __VLS_76({
|
|
730
|
+
...{ 'onClick': {} },
|
|
731
|
+
link: true,
|
|
732
|
+
type: "danger",
|
|
733
|
+
}));
|
|
734
|
+
const __VLS_78 = __VLS_77({
|
|
735
|
+
...{ 'onClick': {} },
|
|
736
|
+
link: true,
|
|
737
|
+
type: "danger",
|
|
738
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_77));
|
|
739
|
+
let __VLS_80;
|
|
740
|
+
let __VLS_81;
|
|
741
|
+
let __VLS_82;
|
|
742
|
+
const __VLS_83 = {
|
|
743
|
+
onClick: (...[$event]) => {
|
|
744
|
+
if (!(__VLS_ctx.layout === 'inline'))
|
|
745
|
+
return;
|
|
746
|
+
if (!(__VLS_ctx.checkAllowDelete()))
|
|
747
|
+
return;
|
|
748
|
+
__VLS_ctx.delUploadedFile(file);
|
|
749
|
+
}
|
|
750
|
+
};
|
|
751
|
+
__VLS_79.slots.default;
|
|
752
|
+
var __VLS_79;
|
|
753
|
+
}
|
|
754
|
+
var __VLS_47;
|
|
640
755
|
}
|
|
641
756
|
}
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
})
|
|
651
|
-
const __VLS_78 = __VLS_77({
|
|
652
|
-
align: "right",
|
|
653
|
-
width: "150",
|
|
654
|
-
fixed: "right",
|
|
655
|
-
}, ...__VLS_functionalComponentArgsRest(__VLS_77));
|
|
656
|
-
__VLS_79.slots.default;
|
|
657
|
-
{
|
|
658
|
-
const { default: __VLS_thisSlot } = __VLS_79.slots;
|
|
659
|
-
const [scope] = __VLS_getSlotParams(__VLS_thisSlot);
|
|
660
|
-
if (__VLS_ctx.checkAllowPreview(scope.row)) {
|
|
661
|
-
const __VLS_80 = {}.ElButton;
|
|
662
|
-
/** @type {[typeof __VLS_components.ElButton, typeof __VLS_components.elButton, typeof __VLS_components.ElButton, typeof __VLS_components.elButton, ]} */ ;
|
|
663
|
-
// @ts-ignore
|
|
664
|
-
const __VLS_81 = __VLS_asFunctionalComponent(__VLS_80, new __VLS_80({
|
|
665
|
-
...{ 'onClick': {} },
|
|
666
|
-
link: true,
|
|
667
|
-
type: "warning",
|
|
668
|
-
}));
|
|
669
|
-
const __VLS_82 = __VLS_81({
|
|
670
|
-
...{ 'onClick': {} },
|
|
671
|
-
link: true,
|
|
672
|
-
type: "warning",
|
|
673
|
-
}, ...__VLS_functionalComponentArgsRest(__VLS_81));
|
|
674
|
-
let __VLS_84;
|
|
675
|
-
let __VLS_85;
|
|
676
|
-
let __VLS_86;
|
|
677
|
-
const __VLS_87 = {
|
|
678
|
-
onClick: (...[$event]) => {
|
|
679
|
-
if (!(__VLS_ctx.checkAllowPreview(scope.row)))
|
|
680
|
-
return;
|
|
681
|
-
__VLS_ctx.previewFile(scope.row.token);
|
|
682
|
-
}
|
|
683
|
-
};
|
|
684
|
-
__VLS_83.slots.default;
|
|
685
|
-
var __VLS_83;
|
|
757
|
+
if (__VLS_ctx.layout === 'list') {
|
|
758
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
759
|
+
...{ class: "file-list" },
|
|
760
|
+
...{ style: ({ height: typeof props.height === 'number' ? props.height + 'px' : props.height, maxHeight: typeof props.maxHeight === 'number' ? props.maxHeight + 'px' : props.maxHeight }) },
|
|
761
|
+
});
|
|
762
|
+
if (__VLS_ctx.files.length === 0) {
|
|
763
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
764
|
+
...{ class: "empty-text" },
|
|
765
|
+
});
|
|
686
766
|
}
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
767
|
+
for (const [file] of __VLS_getVForSourceType((__VLS_ctx.files))) {
|
|
768
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
769
|
+
key: (file.id),
|
|
770
|
+
...{ class: "file-item" },
|
|
771
|
+
});
|
|
772
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
773
|
+
...{ class: "file-main" },
|
|
774
|
+
});
|
|
775
|
+
const __VLS_84 = {}.ElIcon;
|
|
776
|
+
/** @type {[typeof __VLS_components.ElIcon, typeof __VLS_components.elIcon, typeof __VLS_components.ElIcon, typeof __VLS_components.elIcon, ]} */ ;
|
|
690
777
|
// @ts-ignore
|
|
691
|
-
const
|
|
692
|
-
...{
|
|
693
|
-
link: true,
|
|
694
|
-
type: "primary",
|
|
778
|
+
const __VLS_85 = __VLS_asFunctionalComponent(__VLS_84, new __VLS_84({
|
|
779
|
+
...{ class: "file-icon" },
|
|
695
780
|
}));
|
|
696
|
-
const
|
|
697
|
-
...{
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
781
|
+
const __VLS_86 = __VLS_85({
|
|
782
|
+
...{ class: "file-icon" },
|
|
783
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_85));
|
|
784
|
+
__VLS_87.slots.default;
|
|
785
|
+
const __VLS_88 = ((__VLS_ctx.getFileIcon(file.fileName)));
|
|
786
|
+
// @ts-ignore
|
|
787
|
+
const __VLS_89 = __VLS_asFunctionalComponent(__VLS_88, new __VLS_88({}));
|
|
788
|
+
const __VLS_90 = __VLS_89({}, ...__VLS_functionalComponentArgsRest(__VLS_89));
|
|
789
|
+
var __VLS_87;
|
|
790
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.span, __VLS_intrinsicElements.span)({
|
|
791
|
+
...{ class: "file-name" },
|
|
792
|
+
title: (file.fileName),
|
|
793
|
+
});
|
|
794
|
+
(file.fileName);
|
|
795
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
796
|
+
...{ class: "file-info-right" },
|
|
797
|
+
});
|
|
798
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.span, __VLS_intrinsicElements.span)({
|
|
799
|
+
...{ class: "file-size" },
|
|
800
|
+
});
|
|
801
|
+
(__VLS_ctx.prettyBytes(file.fileSize));
|
|
802
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
803
|
+
...{ class: "file-tag" },
|
|
804
|
+
});
|
|
805
|
+
const __VLS_92 = {}.ElTag;
|
|
806
|
+
/** @type {[typeof __VLS_components.ElTag, typeof __VLS_components.elTag, typeof __VLS_components.ElTag, typeof __VLS_components.elTag, ]} */ ;
|
|
717
807
|
// @ts-ignore
|
|
718
|
-
const
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
type: "danger",
|
|
808
|
+
const __VLS_93 = __VLS_asFunctionalComponent(__VLS_92, new __VLS_92({
|
|
809
|
+
size: "small",
|
|
810
|
+
type: (file.classifiedLevel < 50 ? (file.classifiedLevel < 30 ? 'danger' : 'warning') : 'info'),
|
|
722
811
|
}));
|
|
723
|
-
const
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
}
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
812
|
+
const __VLS_94 = __VLS_93({
|
|
813
|
+
size: "small",
|
|
814
|
+
type: (file.classifiedLevel < 50 ? (file.classifiedLevel < 30 ? 'danger' : 'warning') : 'info'),
|
|
815
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_93));
|
|
816
|
+
__VLS_95.slots.default;
|
|
817
|
+
(__VLS_ctx.classificationLevelMap?.get(file.classifiedLevel));
|
|
818
|
+
var __VLS_95;
|
|
819
|
+
if (file.classifiedLevel < __VLS_ctx.highestClassificationLevel) {
|
|
820
|
+
const __VLS_96 = {}.ElTooltip;
|
|
821
|
+
/** @type {[typeof __VLS_components.ElTooltip, typeof __VLS_components.elTooltip, typeof __VLS_components.ElTooltip, typeof __VLS_components.elTooltip, ]} */ ;
|
|
822
|
+
// @ts-ignore
|
|
823
|
+
const __VLS_97 = __VLS_asFunctionalComponent(__VLS_96, new __VLS_96({
|
|
824
|
+
content: "文件密级已高于当前许可范围,请立即删除",
|
|
825
|
+
}));
|
|
826
|
+
const __VLS_98 = __VLS_97({
|
|
827
|
+
content: "文件密级已高于当前许可范围,请立即删除",
|
|
828
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_97));
|
|
829
|
+
__VLS_99.slots.default;
|
|
830
|
+
const __VLS_100 = {}.ElIcon;
|
|
831
|
+
/** @type {[typeof __VLS_components.ElIcon, typeof __VLS_components.elIcon, typeof __VLS_components.ElIcon, typeof __VLS_components.elIcon, ]} */ ;
|
|
832
|
+
// @ts-ignore
|
|
833
|
+
const __VLS_101 = __VLS_asFunctionalComponent(__VLS_100, new __VLS_100({
|
|
834
|
+
color: "#F56C6C",
|
|
835
|
+
...{ class: "warning-icon" },
|
|
836
|
+
}));
|
|
837
|
+
const __VLS_102 = __VLS_101({
|
|
838
|
+
color: "#F56C6C",
|
|
839
|
+
...{ class: "warning-icon" },
|
|
840
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_101));
|
|
841
|
+
__VLS_103.slots.default;
|
|
842
|
+
const __VLS_104 = {}.WarningFilled;
|
|
843
|
+
/** @type {[typeof __VLS_components.WarningFilled, typeof __VLS_components.warningFilled, ]} */ ;
|
|
844
|
+
// @ts-ignore
|
|
845
|
+
const __VLS_105 = __VLS_asFunctionalComponent(__VLS_104, new __VLS_104({}));
|
|
846
|
+
const __VLS_106 = __VLS_105({}, ...__VLS_functionalComponentArgsRest(__VLS_105));
|
|
847
|
+
var __VLS_103;
|
|
848
|
+
var __VLS_99;
|
|
849
|
+
}
|
|
850
|
+
__VLS_asFunctionalElement(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({
|
|
851
|
+
...{ class: "file-actions" },
|
|
852
|
+
});
|
|
853
|
+
if (__VLS_ctx.checkAllowPreview(file)) {
|
|
854
|
+
const __VLS_108 = {}.ElButton;
|
|
855
|
+
/** @type {[typeof __VLS_components.ElButton, typeof __VLS_components.elButton, typeof __VLS_components.ElButton, typeof __VLS_components.elButton, ]} */ ;
|
|
856
|
+
// @ts-ignore
|
|
857
|
+
const __VLS_109 = __VLS_asFunctionalComponent(__VLS_108, new __VLS_108({
|
|
858
|
+
...{ 'onClick': {} },
|
|
859
|
+
link: true,
|
|
860
|
+
type: "primary",
|
|
861
|
+
}));
|
|
862
|
+
const __VLS_110 = __VLS_109({
|
|
863
|
+
...{ 'onClick': {} },
|
|
864
|
+
link: true,
|
|
865
|
+
type: "primary",
|
|
866
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_109));
|
|
867
|
+
let __VLS_112;
|
|
868
|
+
let __VLS_113;
|
|
869
|
+
let __VLS_114;
|
|
870
|
+
const __VLS_115 = {
|
|
871
|
+
onClick: (...[$event]) => {
|
|
872
|
+
if (!(__VLS_ctx.layout === 'list'))
|
|
873
|
+
return;
|
|
874
|
+
if (!(__VLS_ctx.checkAllowPreview(file)))
|
|
875
|
+
return;
|
|
876
|
+
__VLS_ctx.previewFile(file.token);
|
|
877
|
+
}
|
|
878
|
+
};
|
|
879
|
+
__VLS_111.slots.default;
|
|
880
|
+
var __VLS_111;
|
|
881
|
+
}
|
|
882
|
+
if (__VLS_ctx.checkAllowDownload()) {
|
|
883
|
+
const __VLS_116 = {}.ElButton;
|
|
884
|
+
/** @type {[typeof __VLS_components.ElButton, typeof __VLS_components.elButton, typeof __VLS_components.ElButton, typeof __VLS_components.elButton, ]} */ ;
|
|
885
|
+
// @ts-ignore
|
|
886
|
+
const __VLS_117 = __VLS_asFunctionalComponent(__VLS_116, new __VLS_116({
|
|
887
|
+
...{ 'onClick': {} },
|
|
888
|
+
link: true,
|
|
889
|
+
type: "primary",
|
|
890
|
+
}));
|
|
891
|
+
const __VLS_118 = __VLS_117({
|
|
892
|
+
...{ 'onClick': {} },
|
|
893
|
+
link: true,
|
|
894
|
+
type: "primary",
|
|
895
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_117));
|
|
896
|
+
let __VLS_120;
|
|
897
|
+
let __VLS_121;
|
|
898
|
+
let __VLS_122;
|
|
899
|
+
const __VLS_123 = {
|
|
900
|
+
onClick: (...[$event]) => {
|
|
901
|
+
if (!(__VLS_ctx.layout === 'list'))
|
|
902
|
+
return;
|
|
903
|
+
if (!(__VLS_ctx.checkAllowDownload()))
|
|
904
|
+
return;
|
|
905
|
+
__VLS_ctx.downloadFile(file.token);
|
|
906
|
+
}
|
|
907
|
+
};
|
|
908
|
+
__VLS_119.slots.default;
|
|
909
|
+
var __VLS_119;
|
|
910
|
+
}
|
|
911
|
+
if (__VLS_ctx.checkAllowDelete()) {
|
|
912
|
+
const __VLS_124 = {}.ElButton;
|
|
913
|
+
/** @type {[typeof __VLS_components.ElButton, typeof __VLS_components.elButton, typeof __VLS_components.ElButton, typeof __VLS_components.elButton, ]} */ ;
|
|
914
|
+
// @ts-ignore
|
|
915
|
+
const __VLS_125 = __VLS_asFunctionalComponent(__VLS_124, new __VLS_124({
|
|
916
|
+
...{ 'onClick': {} },
|
|
917
|
+
link: true,
|
|
918
|
+
type: "danger",
|
|
919
|
+
}));
|
|
920
|
+
const __VLS_126 = __VLS_125({
|
|
921
|
+
...{ 'onClick': {} },
|
|
922
|
+
link: true,
|
|
923
|
+
type: "danger",
|
|
924
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_125));
|
|
925
|
+
let __VLS_128;
|
|
926
|
+
let __VLS_129;
|
|
927
|
+
let __VLS_130;
|
|
928
|
+
const __VLS_131 = {
|
|
929
|
+
onClick: (...[$event]) => {
|
|
930
|
+
if (!(__VLS_ctx.layout === 'list'))
|
|
931
|
+
return;
|
|
932
|
+
if (!(__VLS_ctx.checkAllowDelete()))
|
|
933
|
+
return;
|
|
934
|
+
__VLS_ctx.delUploadedFile(file);
|
|
935
|
+
}
|
|
936
|
+
};
|
|
937
|
+
__VLS_127.slots.default;
|
|
938
|
+
var __VLS_127;
|
|
939
|
+
}
|
|
740
940
|
}
|
|
741
941
|
}
|
|
742
|
-
var __VLS_79;
|
|
743
|
-
var __VLS_47;
|
|
744
942
|
/** @type {[typeof PdfViewerModal, typeof PdfViewerModal, ]} */ ;
|
|
745
943
|
// @ts-ignore
|
|
746
|
-
const
|
|
944
|
+
const __VLS_132 = __VLS_asFunctionalComponent(PdfViewerModal, new PdfViewerModal({
|
|
747
945
|
src: (__VLS_ctx.pdfSrc),
|
|
748
946
|
modelValue: (__VLS_ctx.pdfViewerVisible),
|
|
749
947
|
}));
|
|
750
|
-
const
|
|
948
|
+
const __VLS_133 = __VLS_132({
|
|
751
949
|
src: (__VLS_ctx.pdfSrc),
|
|
752
950
|
modelValue: (__VLS_ctx.pdfViewerVisible),
|
|
753
|
-
}, ...__VLS_functionalComponentArgsRest(
|
|
951
|
+
}, ...__VLS_functionalComponentArgsRest(__VLS_132));
|
|
754
952
|
/** @type {__VLS_StyleScopedClasses['ja-uploader']} */ ;
|
|
755
953
|
/** @type {__VLS_StyleScopedClasses['ja-uploader-tools']} */ ;
|
|
756
954
|
/** @type {__VLS_StyleScopedClasses['el-icon--right']} */ ;
|
|
757
955
|
/** @type {__VLS_StyleScopedClasses['container']} */ ;
|
|
758
956
|
/** @type {__VLS_StyleScopedClasses['loader-shimmer']} */ ;
|
|
957
|
+
/** @type {__VLS_StyleScopedClasses['inline-files']} */ ;
|
|
958
|
+
/** @type {__VLS_StyleScopedClasses['inline-file-item']} */ ;
|
|
959
|
+
/** @type {__VLS_StyleScopedClasses['inline-file-icon-wrapper']} */ ;
|
|
960
|
+
/** @type {__VLS_StyleScopedClasses['file-icon']} */ ;
|
|
961
|
+
/** @type {__VLS_StyleScopedClasses['file-popover-content']} */ ;
|
|
962
|
+
/** @type {__VLS_StyleScopedClasses['popover-row']} */ ;
|
|
963
|
+
/** @type {__VLS_StyleScopedClasses['label']} */ ;
|
|
964
|
+
/** @type {__VLS_StyleScopedClasses['value']} */ ;
|
|
965
|
+
/** @type {__VLS_StyleScopedClasses['popover-row']} */ ;
|
|
966
|
+
/** @type {__VLS_StyleScopedClasses['label']} */ ;
|
|
967
|
+
/** @type {__VLS_StyleScopedClasses['value']} */ ;
|
|
968
|
+
/** @type {__VLS_StyleScopedClasses['popover-row']} */ ;
|
|
969
|
+
/** @type {__VLS_StyleScopedClasses['label']} */ ;
|
|
970
|
+
/** @type {__VLS_StyleScopedClasses['value']} */ ;
|
|
971
|
+
/** @type {__VLS_StyleScopedClasses['popover-actions']} */ ;
|
|
972
|
+
/** @type {__VLS_StyleScopedClasses['file-list']} */ ;
|
|
973
|
+
/** @type {__VLS_StyleScopedClasses['empty-text']} */ ;
|
|
974
|
+
/** @type {__VLS_StyleScopedClasses['file-item']} */ ;
|
|
975
|
+
/** @type {__VLS_StyleScopedClasses['file-main']} */ ;
|
|
976
|
+
/** @type {__VLS_StyleScopedClasses['file-icon']} */ ;
|
|
977
|
+
/** @type {__VLS_StyleScopedClasses['file-name']} */ ;
|
|
978
|
+
/** @type {__VLS_StyleScopedClasses['file-info-right']} */ ;
|
|
979
|
+
/** @type {__VLS_StyleScopedClasses['file-size']} */ ;
|
|
980
|
+
/** @type {__VLS_StyleScopedClasses['file-tag']} */ ;
|
|
981
|
+
/** @type {__VLS_StyleScopedClasses['warning-icon']} */ ;
|
|
982
|
+
/** @type {__VLS_StyleScopedClasses['file-actions']} */ ;
|
|
759
983
|
var __VLS_dollars;
|
|
760
984
|
const __VLS_self = (await import('vue')).defineComponent({
|
|
761
985
|
setup() {
|
|
@@ -766,8 +990,6 @@ const __VLS_self = (await import('vue')).defineComponent({
|
|
|
766
990
|
WarningFilled: WarningFilled,
|
|
767
991
|
prettyBytes: prettyBytes,
|
|
768
992
|
PdfViewerModal: PdfViewerModal,
|
|
769
|
-
ElTable: ElTable,
|
|
770
|
-
ElTableColumn: ElTableColumn,
|
|
771
993
|
ElButton: ElButton,
|
|
772
994
|
ElDropdown: ElDropdown,
|
|
773
995
|
ElDropdownItem: ElDropdownItem,
|
|
@@ -775,6 +997,7 @@ const __VLS_self = (await import('vue')).defineComponent({
|
|
|
775
997
|
ElIcon: ElIcon,
|
|
776
998
|
ElTag: ElTag,
|
|
777
999
|
ElTooltip: ElTooltip,
|
|
1000
|
+
ElPopover: ElPopover,
|
|
778
1001
|
loading: loading,
|
|
779
1002
|
files: files,
|
|
780
1003
|
allowedClassificationLevels: allowedClassificationLevels,
|
|
@@ -795,10 +1018,12 @@ const __VLS_self = (await import('vue')).defineComponent({
|
|
|
795
1018
|
checkAllowDownload: checkAllowDownload,
|
|
796
1019
|
checkAllowDelete: checkAllowDelete,
|
|
797
1020
|
checkAllowPreview: checkAllowPreview,
|
|
1021
|
+
getFileIcon: getFileIcon,
|
|
798
1022
|
};
|
|
799
1023
|
},
|
|
800
1024
|
__typeEmits: {},
|
|
801
1025
|
__typeProps: {},
|
|
1026
|
+
props: {},
|
|
802
1027
|
});
|
|
803
1028
|
export default (await import('vue')).defineComponent({
|
|
804
1029
|
setup() {
|
|
@@ -806,6 +1031,7 @@ export default (await import('vue')).defineComponent({
|
|
|
806
1031
|
},
|
|
807
1032
|
__typeEmits: {},
|
|
808
1033
|
__typeProps: {},
|
|
1034
|
+
props: {},
|
|
809
1035
|
});
|
|
810
1036
|
; /* PartiallyEnd: #4569/main.vue */
|
|
811
1037
|
//# sourceMappingURL=uploader.vue.js.map
|