cloud-web-corejs 1.0.54-dev.128 → 1.0.54-dev.129
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/package.json +1 -1
- package/src/components/VabUpload/view.vue +2 -2
- package/src/components/table/index.js +12 -11
- package/src/components/table/tableFormMixin.js +6 -3
- package/src/components/xform/form-render/container-item/data-table-item.vue +1 -1
- package/src/components/xform/form-render/container-item/data-table-mixin.js +2 -1
- package/src/views/bd/setting/table_model/mixins/edit.js +1 -1
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
<template>
|
2
2
|
<div>
|
3
3
|
<div id="uploadImage" :class="{ 'upload-img': dataType || ($attrs.hideInfo == true || $attrs.hideInfo == 'true') }">
|
4
|
-
<div class="upload-list" model="singer" v-for="(attachment, index) in attachments"
|
4
|
+
<div class="upload-list" model="singer" v-for="(attachment, index) in attachments" :key="index"
|
5
5
|
style="display: inline-block;vertical-align: middle;float: left;">
|
6
6
|
<template v-if="$attrs.hideInfo !== true && $attrs.hideInfo !== 'true'">
|
7
7
|
<div class="upload-box">
|
@@ -37,7 +37,7 @@
|
|
37
37
|
</div>
|
38
38
|
<div class="el-upload-input" v-if="$attrs.showNameInput">
|
39
39
|
<el-input v-model="attachment.name" class="button-sty"
|
40
|
-
|
40
|
+
:placeholder="$t2('请输入名称', 'components.VabUpload.name')" :scale="0"/>
|
41
41
|
</div>
|
42
42
|
<div class="el-upload-list__item-status-label"><i class="el-icon-upload-success el-icon-check"></i>
|
43
43
|
</div>
|