cloud-web-corejs 1.0.54-dev.57 → 1.0.54-dev.59
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/excelExport/mixins.js +1 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +10 -2
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +3 -896
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onAfterConfirmFile-editor.vue +30 -0
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +1 -0
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +2 -0
- package/src/store/modules/permission.js +1 -1
@@ -66,7 +66,7 @@
|
|
66
66
|
v-el-drag-dialog
|
67
67
|
>
|
68
68
|
<div>
|
69
|
-
<div class="import-box">
|
69
|
+
<div class="import-box" v-loading="importLoading" :element-loading-text="loadingTitle" style="margin-bottom: 30px;">
|
70
70
|
<div class="tips">
|
71
71
|
{{ $t2('导入中,请勿关闭当前窗口', 'components.excelImport.tip2') }}
|
72
72
|
<!-- <span class="fr">耗时:<em class="time-txt">0 时 0 分 0 秒 </em></span> -->
|
@@ -130,12 +130,20 @@
|
|
130
130
|
<div class="clearfix screen-btns">
|
131
131
|
<div class="fl">
|
132
132
|
<vxe-button status="primary" class="button-sty" icon="el-icon-upload2" @click="exportToExcel()">
|
133
|
-
导出
|
133
|
+
{{ $t1('导出') }}
|
134
134
|
</vxe-button>
|
135
135
|
</div>
|
136
136
|
<div class="fr"></div>
|
137
137
|
</div>
|
138
138
|
</template>
|
139
|
+
<template #attachment="{row,column}">
|
140
|
+
<base-attachment :option="{
|
141
|
+
title: column.title,
|
142
|
+
rows: row[column.field],
|
143
|
+
showViewButton: true,
|
144
|
+
edit:false
|
145
|
+
}" />
|
146
|
+
</template>
|
139
147
|
</vxe-grid>
|
140
148
|
</div>
|
141
149
|
</div>
|