cloud-web-corejs 1.0.143 → 1.0.145
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.
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
class="button-sty"
|
|
63
63
|
:placeholder="$t2('序号', 'components.VabUpload.orders')"
|
|
64
64
|
:scale="0"
|
|
65
|
+
@change="handleChange"
|
|
65
66
|
/>
|
|
66
67
|
</div>
|
|
67
68
|
<div class="el-upload-input" v-if="$attrs.showNameInput">
|
|
@@ -70,6 +71,7 @@
|
|
|
70
71
|
class="button-sty"
|
|
71
72
|
:placeholder="$t2('请输入名称', 'components.VabUpload.name')"
|
|
72
73
|
:scale="0"
|
|
74
|
+
@change="handleChange"
|
|
73
75
|
/>
|
|
74
76
|
</div>
|
|
75
77
|
<div class="el-upload-list__item-status-label">
|
|
@@ -150,22 +152,7 @@
|
|
|
150
152
|
v-if="showUploadBtn"
|
|
151
153
|
@keyup.prevent
|
|
152
154
|
@keydown.enter.prevent
|
|
153
|
-
@click="
|
|
154
|
-
$baseUpload.open({
|
|
155
|
-
..._props,
|
|
156
|
-
...$attrs,
|
|
157
|
-
limit: limit,
|
|
158
|
-
multi: multi,
|
|
159
|
-
accept: accept ? accept : 'file',
|
|
160
|
-
auto: auto,
|
|
161
|
-
size: fileMaxSize,
|
|
162
|
-
chunkSize: chunkSize,
|
|
163
|
-
callback: fileConfirm,
|
|
164
|
-
pickPrivateProfile: pickPrivateProfile,
|
|
165
|
-
confirmUpload: confirmUpload,
|
|
166
|
-
otherParams: $attrs,
|
|
167
|
-
})
|
|
168
|
-
"
|
|
155
|
+
@click="openUploadDialog()"
|
|
169
156
|
>
|
|
170
157
|
<i class="el-icon-plus avatar-uploader-icon"></i>
|
|
171
158
|
</button>
|