cloud-web-corejs 1.0.69 → 1.0.70
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 +2 -2
- package/src/components/VabUpload/mixins.js +1 -1
- package/src/components/excelExport/mixins.js +1 -2
- package/src/components/fileLibrary/index.vue +3 -3
- package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +0 -2
- package/src/components/fileLibrary/mixins/propertiesDialogMixins.js +2 -1
- package/src/components/jsonImport/index.js +17 -17
- package/src/components/jsonImport/mixins.js +1 -1
- package/src/components/table/index.js +1 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +35 -5
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +3 -1
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +4 -1
- package/src/components/xform/form-designer/form-widget/field-widget/table-export-button-widget.vue +2 -1
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +8 -6
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +6 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +13 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onAfterConfirmFile-editor.vue +5 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +3 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/table-export-button-editor.vue +26 -7
- package/src/components/xform/form-designer/setting-panel/property-editor/wfFlag-editor.vue +103 -18
- package/src/components/xform/form-render/container-item/data-table-item.vue +5 -4
- package/src/components/xform/form-render/container-item/data-table-mixin.js +1 -1
- package/src/components/xform/form-render/indexMixin.js +1 -1
- package/src/mixins/selectDialog/index.js +1 -1
- package/src/store/config/index.js +1 -1
- package/src/store/modules/permission.js +1 -1
- package/src/utils/request.js +1 -1
- package/src/views/bd/setting/form_template/batchWfObjConfigDialog.vue +2 -2
- package/src/views/bd/setting/form_template/edit.vue +6 -2
- package/src/views/bd/setting/form_template/editWfObjConfigDialog.vue +2 -2
- package/src/views/bd/setting/form_template/list.vue +4 -2
- package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +1 -1
- package/src/views/bd/setting/form_template/mixins/edit.js +1 -1
- package/src/views/bd/setting/form_template/mixins/list.js +1 -1
- package/src/views/bd/setting/form_template/mixins/wf_list.js +1 -1
- package/src/views/bd/setting/form_template/wfObjConfigDialog.vue +4 -4
- package/src/views/bd/setting/form_template/wf_list.vue +1 -1
- package/src/views/bd/setting/table_model/edit.vue +1 -1
- package/src/views/bd/setting/table_model/list.vue +4 -2
- package/src/views/bd/setting/table_model/mixins/list.js +14 -14
- package/src/views/user/bill_setting/edit.vue +1 -1
- package/src/views/user/bill_setting/list.vue +1 -1
- package/src/views/user/common_attribute/itemEdit.vue +2 -2
- package/src/views/user/common_attribute/list.vue +1 -1
- package/src/views/user/common_script/edit.vue +1 -1
- package/src/views/user/common_script/list.vue +1 -1
- package/src/views/user/company_info/dialog.vue +19 -9
- package/src/views/user/company_info/edit.vue +1 -1
- package/src/views/user/extend_datasource/dialog.vue +1 -0
- package/src/views/user/extend_datasource/edit.vue +3 -0
- package/src/views/user/extend_datasource/list.vue +2 -1
- package/src/views/user/groups/edit.vue +2 -0
- package/src/views/user/groups/list.vue +1 -0
- package/src/views/user/home/dev.vue +29 -0
- package/src/views/user/home/index.vue +16 -6
- package/src/views/user/outLink/index.vue +17 -0
- package/src/views/user/push_setting/list.vue +2 -2
- package/src/views/user/user/edit.vue +2 -2
- package/src/views/user/user/form_edit.vue +117 -49
- package/src/views/user/user/form_list.vue +1 -0
- package/src/views/user/user/info.vue +21 -91
- package/src/views/user/user/list.vue +563 -563
@@ -2,7 +2,7 @@
|
|
2
2
|
<div v-if="showContent">
|
3
3
|
<el-dialog
|
4
4
|
:title="$t2('导入', 'components.excelImport.title')"
|
5
|
-
:append-to-body="
|
5
|
+
:append-to-body="true"
|
6
6
|
:modal-append-to-body="falseValue"
|
7
7
|
:close-on-click-modal="falseValue"
|
8
8
|
:visible.sync="showImportDialog"
|
@@ -41,6 +41,7 @@
|
|
41
41
|
</div>
|
42
42
|
</div>
|
43
43
|
<span slot="footer" class="dialog-footer">
|
44
|
+
<span class="fl tips">{{ $t1('注:导入文件不允许超过{fileSize}MB', {fileSize: importFileLimitSize}) }}</span>
|
44
45
|
<el-button type="primary" plain class="button-sty" @click="dialogClose1">
|
45
46
|
<i class="el-icon-close el-icon"></i>
|
46
47
|
{{ $t2('取 消', 'system.button.cancel2') }}
|
@@ -54,7 +55,7 @@
|
|
54
55
|
<el-dialog
|
55
56
|
ref="importDialog"
|
56
57
|
:title="$t2('导入', 'components.excelImport.title')"
|
57
|
-
:append-to-body="
|
58
|
+
:append-to-body="true"
|
58
59
|
:modal-append-to-body="falseValue"
|
59
60
|
:close-on-click-modal="falseValue"
|
60
61
|
:visible.sync="showImportDialog2"
|
@@ -66,7 +67,28 @@
|
|
66
67
|
v-el-drag-dialog
|
67
68
|
>
|
68
69
|
<div>
|
69
|
-
<div class="import-
|
70
|
+
<div v-show="importLoading" class="import-stepbox">
|
71
|
+
<ul>
|
72
|
+
<li :class="getLoadingClass(1,percent1)">
|
73
|
+
<i class="el-icon-circle-check"></i>
|
74
|
+
<i class="el-icon-loading"></i>
|
75
|
+
<span v-html="$t1('上传导入文件 {percent}', {percent: `<span class=nums>${percent1}%</span>`})"></span>
|
76
|
+
</li>
|
77
|
+
<li :class="getLoadingClass(2,percent2)">
|
78
|
+
<i class="el-icon-circle-check"></i>
|
79
|
+
<i class="el-icon-loading"></i>
|
80
|
+
<span
|
81
|
+
v-html="$t1('校验导入文件中的图片数据格式 {percent}', {percent: `<span class=nums>${percent2}%</span>`})"></span>
|
82
|
+
</li>
|
83
|
+
<li :class="getLoadingClass(3,percent3)">
|
84
|
+
<i class="el-icon-circle-check"></i>
|
85
|
+
<i class="el-icon-loading"></i>
|
86
|
+
<span
|
87
|
+
v-html="$t1('存储导入文件中的图片 {percent}', {percent: `<span class=nums>${percent3}%</span>`})"></span>
|
88
|
+
</li>
|
89
|
+
</ul>
|
90
|
+
</div>
|
91
|
+
<div v-show="!importLoading" class="import-box" style="margin-bottom: 30px;">
|
70
92
|
<div class="tips">
|
71
93
|
{{ $t2('导入中,请勿关闭当前窗口', 'components.excelImport.tip2') }}
|
72
94
|
<!-- <span class="fr">耗时:<em class="time-txt">0 时 0 分 0 秒 </em></span> -->
|
@@ -88,7 +110,7 @@
|
|
88
110
|
</div>
|
89
111
|
</div>
|
90
112
|
<div slot="footer" class="dialog-footer" center="true">
|
91
|
-
<div class="fl import-count">
|
113
|
+
<div class="fl import-count" v-show="!importLoading">
|
92
114
|
<span class="f-red doneNum">0</span>
|
93
115
|
/
|
94
116
|
<span class="dataSize">0</span>
|
@@ -130,12 +152,20 @@
|
|
130
152
|
<div class="clearfix screen-btns">
|
131
153
|
<div class="fl">
|
132
154
|
<vxe-button status="primary" class="button-sty" icon="el-icon-upload2" @click="exportToExcel()">
|
133
|
-
导出
|
155
|
+
{{ $t1('导出') }}
|
134
156
|
</vxe-button>
|
135
157
|
</div>
|
136
158
|
<div class="fr"></div>
|
137
159
|
</div>
|
138
160
|
</template>
|
161
|
+
<template #attachment="{row,column}">
|
162
|
+
<base-attachment :option="{
|
163
|
+
title: column.title,
|
164
|
+
rows: row[column.field],
|
165
|
+
showViewButton: true,
|
166
|
+
edit:false
|
167
|
+
}"/>
|
168
|
+
</template>
|
139
169
|
</vxe-grid>
|
140
170
|
</div>
|
141
171
|
</div>
|