centaline-data-driven 1.1.49 → 1.1.50
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/centaline/css/common.css +1 -1
- package/src/centaline/dynamicFile/src/dynamicFile.vue +18 -7
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +3 -1
- package/src/centaline/loader/src/ctl/SearchTable.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<div slot="file" slot-scope="{file}" :title="file.fileName">
|
|
20
20
|
<div class="cover-list-item">
|
|
21
21
|
<el-image fit="fill" :src="file.url"
|
|
22
|
-
style="width:
|
|
22
|
+
style="width: 100px; height: 100px"
|
|
23
23
|
:preview-src-list="getPreviewSrcList(file)"
|
|
24
24
|
:z-index="previewZIndex"
|
|
25
25
|
@click="handlePictureCardPreview(file)">
|
|
@@ -229,9 +229,12 @@
|
|
|
229
229
|
<style>
|
|
230
230
|
.ct-upload-display-none .el-upload--picture-card {
|
|
231
231
|
display: none;
|
|
232
|
+
|
|
232
233
|
}
|
|
233
|
-
|
|
234
|
-
|
|
234
|
+
.el-upload-list__item .is-ready{
|
|
235
|
+
width: 100px;
|
|
236
|
+
height: 100px;
|
|
237
|
+
} .ct-file .cover-list-item {
|
|
235
238
|
position: sticky;
|
|
236
239
|
}
|
|
237
240
|
|
|
@@ -261,12 +264,20 @@
|
|
|
261
264
|
.ct-file .el-icon-arrow-down {
|
|
262
265
|
font-size: 12px;
|
|
263
266
|
}
|
|
267
|
+
.el-collapse-item__content{
|
|
268
|
+
padding-bottom: 18px;
|
|
269
|
+
}
|
|
264
270
|
.el-upload--picture-card{
|
|
265
|
-
width:
|
|
266
|
-
height:
|
|
267
|
-
line-height:
|
|
271
|
+
width: 100px;
|
|
272
|
+
height: 100px;
|
|
273
|
+
line-height:initial;
|
|
274
|
+
padding: 34px;
|
|
268
275
|
}
|
|
269
276
|
.el-upload--picture-card i{
|
|
270
|
-
font-size:
|
|
277
|
+
font-size: 30px;
|
|
278
|
+
}
|
|
279
|
+
.el-upload-list--picture-card .el-upload-list__item{
|
|
280
|
+
width: 100px;
|
|
281
|
+
height: 100px;
|
|
271
282
|
}
|
|
272
283
|
</style>
|
|
@@ -684,7 +684,9 @@
|
|
|
684
684
|
},
|
|
685
685
|
on: {
|
|
686
686
|
submit(ev) {
|
|
687
|
-
|
|
687
|
+
if (!field.flagFreshCurrentRow) {
|
|
688
|
+
self.model.doAction(ev);
|
|
689
|
+
}
|
|
688
690
|
self.$forceUpdate();
|
|
689
691
|
self.$refs.footer.$forceUpdate();
|
|
690
692
|
self.$common.closeDialog(dialogOption.dialog);
|