qtsk-vue3 0.0.25 → 0.0.27
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.
@@ -1,6 +1,6 @@
|
|
1
1
|
<template>
|
2
2
|
<div class="normalClass">
|
3
|
-
<el-button :type="type" :color="color" :link="link" :loading="loading">
|
3
|
+
<el-button :type="type" :color="color" :link="link" :loading="loading" :disabled="disabled">
|
4
4
|
<slot>按钮</slot>
|
5
5
|
</el-button>
|
6
6
|
</div>
|
@@ -26,6 +26,7 @@ defineProps({
|
|
26
26
|
type: Boolean,
|
27
27
|
default: false
|
28
28
|
},
|
29
|
+
disabled: Boolean,
|
29
30
|
loading: {
|
30
31
|
type: Boolean,
|
31
32
|
default: false
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<el-upload
|
4
4
|
class="upload-demo"
|
5
5
|
drag
|
6
|
-
accept=".xls,.xlsx
|
6
|
+
accept=".xls,.xlsx"
|
7
7
|
:name="name"
|
8
8
|
:limit="limit"
|
9
9
|
:file-list="fileListRef"
|
@@ -14,7 +14,7 @@
|
|
14
14
|
<Icons :type="'Plus'" :size="30"></Icons>
|
15
15
|
<div class="el-upload__text">
|
16
16
|
点击或者拖动文件到虚线框内上传
|
17
|
-
<p class="next-upload-drag-hint">支持xls,xlsx
|
17
|
+
<p class="next-upload-drag-hint">支持xls,xlsx类型的文件<br>单次上传不超过1000行,大小不超过5M</p>
|
18
18
|
</div>
|
19
19
|
</el-upload>
|
20
20
|
</div>
|