cloud-web-corejs 1.0.283 → 1.0.285
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/mixins.js +126 -19
- package/src/components/VabUpload/view.vue +248 -209
- package/src/components/excelExport/conditionExportConfig.js +112 -0
- package/src/components/excelExport/exportType.js +8 -0
- package/src/components/excelExport/index.vue +7 -1
- package/src/components/excelExport/mixins.js +410 -259
- package/src/components/mobile/wf/addTaskUserdialog.vue +100 -80
- package/src/components/mobile/wf/content.vue +1705 -1556
- package/src/components/mobile/wf/deleteTaskUserDialog.vue +73 -54
- package/src/components/mobile/wf/mixins/wfModifyDialogMixin.js +8 -6
- package/src/components/mobile/wf/selectUserDialog.vue +118 -0
- package/src/components/mobile/wf/setCandidateDialog.vue +69 -48
- package/src/components/mobile/wf/urgingDialog.vue +75 -52
- package/src/components/mobile/wf/wfModifyDialog.vue +4 -0
- package/src/components/xform/docs/2026-08 xform H5 P0 /345/256/236/347/216/260/350/247/204/346/240/274.md" +528 -0
- package/src/components/xform/docs/2026-08 xform H5 P1 /345/256/236/347/216/260/350/247/204/346/240/274.md" +412 -0
- package/src/components/xform/docs/2026-08 xform H5 P2 /345/256/236/347/216/260/350/247/204/346/240/274.md" +287 -0
- package/src/components/xform/docs/2026-08 xform /347/247/273/345/212/250/347/253/257/345/270/203/345/261/200/345/257/271/351/275/220 bill_setting /346/226/271/346/241/210.md" +400 -0
- package/src/components/xform/form-designer/designer.js +5 -0
- package/src/components/xform/form-designer/form-widget/container-widget/detail-h5-widget.vue +243 -227
- package/src/components/xform/form-designer/form-widget/container-widget/h5-card-pane-widget.vue +228 -207
- package/src/components/xform/form-designer/form-widget/container-widget/h5-card-widget.vue +165 -136
- package/src/components/xform/form-designer/form-widget/dialog/fileReferenceDialog.vue +2 -3
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +3 -3
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +190 -185
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +2641 -1833
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +2 -3
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +39 -1
- package/src/components/xform/form-designer/form-widget/field-widget/import-button-widget.vue +18 -5
- package/src/components/xform/form-designer/form-widget/field-widget/select-export-item-button-widget.vue +2 -1
- package/src/components/xform/form-designer/form-widget/field-widget/singleUpload-widget.vue +1 -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 +3 -2
- package/src/components/xform/form-designer/indexMixin.js +35 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-list-h5/list-h5-editor.vue +19 -5
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +62 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +236 -96
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/empty-number-input.vue +51 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-item-button-editor.vue +27 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/table-export-button-editor.vue +33 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/h5Span-editor.vue +51 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/itemStyle-editor.vue +39 -0
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +10 -0
- package/src/components/xform/form-designer/toolbar-panel/index.vue +6 -1
- package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +13 -0
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +22 -6
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +88 -3
- package/src/components/xform/form-render/container-item/data-table-mixin.js +3 -1
- package/src/components/xform/form-render/container-item/detail-h5-item.vue +204 -34
- package/src/components/xform/form-render/container-item/h5-card-pane-item.vue +160 -140
- package/src/components/xform/form-render/container-item/list-h5-item.vue +1917 -1700
- package/src/components/xform/form-render/index.vue +7 -1
- package/src/components/xform/form-render/indexMixin.js +42 -4
- package/src/components/xform/lang/en-US.js +10 -0
- package/src/components/xform/lang/zh-CN.js +10 -0
- package/src/components/xform/styles/h5.scss +2305 -0
- package/src/directive/append-to-body/index.js +48 -0
- package/src/index.js +4 -0
- package/src/views/bd/setting/form_template/edit.vue +25 -3
- package/src/views/bd/setting/form_template/formDesignerDialog.vue +6 -0
- package/src/views/bd/setting/form_template/formTemplateType.js +43 -0
- package/src/views/bd/setting/form_template/list.vue +1 -0
- package/src/views/bd/setting/form_template/mixins/edit.js +64 -0
- package/src/views/bd/setting/form_template/mixins/list.js +27 -0
- package/src/views/user/form/vform/designer.vue +3 -1
- package/src/components/xform/docs/2026-09 /346/235/241/344/273/266/345/257/274/345/207/272/345/244/247/346/225/260/346/215/256/351/207/217/345/264/251/346/272/203/346/216/222/346/237/245.md" +0 -389
- package/src/components/xform/docs/2026-09 /347/274/226/350/276/221/350/241/250/350/241/214/345/206/205/344/277/235/345/255/230/346/240/241/351/252/214/350/214/203/345/233/264/344/270/216/345/210/227/345/277/205/345/241/253/350/247/243/346/236/220/344/277/256/345/244/215.md" +0 -233
- package/src/components/xform/form-render/container-item/list-h5-item2.vue +0 -1340
|
@@ -1,185 +1,190 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div v-if="showContent">
|
|
3
|
-
<el-dialog
|
|
4
|
-
:title="$t2('导入', 'components.excelImport.title')"
|
|
5
|
-
:append-to-body="true"
|
|
6
|
-
:modal-append-to-body="falseValue"
|
|
7
|
-
:close-on-click-modal="falseValue"
|
|
8
|
-
:visible.sync="showImportDialog"
|
|
9
|
-
:modal="falseValue"
|
|
10
|
-
custom-class="dialog-style"
|
|
11
|
-
width="501px"
|
|
12
|
-
v-el-drag-dialog
|
|
13
|
-
@close="dialogClose1"
|
|
14
|
-
>
|
|
15
|
-
<div class="import-box">
|
|
16
|
-
<div class="tips">{{ $t2('请下载文件模板,填写信息后再上传文件', 'components.excelImport.tip') }}</div>
|
|
17
|
-
<el-button type="success" plain class="button-sty template-btn" @click="commonLocalDownload()">
|
|
18
|
-
{{ $t2('模板下载', 'components.excelImport.downloadBUtton') }}
|
|
19
|
-
</el-button>
|
|
20
|
-
<el-upload v-if="!fileRaw" ref="uploadBtn" action="" class="upload-file" :auto-upload="false"
|
|
21
|
-
:on-change="fileChange">
|
|
22
|
-
<div class="el-upload-dragger">
|
|
23
|
-
<i class="el-icon-upload"></i>
|
|
24
|
-
<div class="el-upload__text"><em>{{ $t2('点击上传', 'components.excelImport.uploadBUtton') }}</em></div>
|
|
25
|
-
</div>
|
|
26
|
-
</el-upload>
|
|
27
|
-
<div class="upload-finish" v-if="fileRaw">
|
|
28
|
-
<img :src="require('@/resources' + '/images/ico-excel.svg')" class="ico"/>
|
|
29
|
-
<p class="name">{{ fileRaw.name }}</p>
|
|
30
|
-
<!-- <p>2022-1-17</p> -->
|
|
31
|
-
<el-tooltip :enterable="false" class="item" effect="dark"
|
|
32
|
-
:content="$t2('关闭', 'components.excelImport.closeBUtton')" placement="bottom">
|
|
33
|
-
<i
|
|
34
|
-
class="el-icon-error js-close"
|
|
35
|
-
@click="
|
|
36
|
-
fileRaw = false;
|
|
37
|
-
$refs.uploadBtn.clearFiles();
|
|
38
|
-
"
|
|
39
|
-
></i>
|
|
40
|
-
</el-tooltip>
|
|
41
|
-
</div>
|
|
42
|
-
</div>
|
|
43
|
-
<span slot="footer" class="dialog-footer">
|
|
44
|
-
<span class="fl tips">{{ $t1('注:导入文件不允许超过{fileSize}MB', {fileSize: importFileLimitSize}) }}</span>
|
|
45
|
-
<el-button type="primary" plain class="button-sty" @click="dialogClose1">
|
|
46
|
-
<i class="el-icon-close el-icon"></i>
|
|
47
|
-
{{ $t2('取 消', 'system.button.cancel2') }}
|
|
48
|
-
</el-button>
|
|
49
|
-
<el-button type="primary" @click="dialogPrimary1" class="button-sty">
|
|
50
|
-
<i class="el-icon-check el-icon"></i>
|
|
51
|
-
{{ $t2('确 定', 'system.button.confirm2') }}
|
|
52
|
-
</el-button>
|
|
53
|
-
</span>
|
|
54
|
-
</el-dialog>
|
|
55
|
-
<el-dialog
|
|
56
|
-
ref="importDialog"
|
|
57
|
-
:title="$t2('导入', 'components.excelImport.title')"
|
|
58
|
-
:append-to-body="true"
|
|
59
|
-
:modal-append-to-body="falseValue"
|
|
60
|
-
:close-on-click-modal="falseValue"
|
|
61
|
-
:visible.sync="showImportDialog2"
|
|
62
|
-
:modal="falseValue"
|
|
63
|
-
custom-class="dialog-style"
|
|
64
|
-
width="501px"
|
|
65
|
-
height="250px"
|
|
66
|
-
:beforeClose="handleBeforeClose"
|
|
67
|
-
@close="handleClose2"
|
|
68
|
-
v-el-drag-dialog
|
|
69
|
-
>
|
|
70
|
-
<div>
|
|
71
|
-
<div v-show="importLoading" class="import-stepbox">
|
|
72
|
-
<ul>
|
|
73
|
-
<li :class="getLoadingClass(1,percent1)">
|
|
74
|
-
<i class="el-icon-circle-check"></i>
|
|
75
|
-
<i class="el-icon-loading"></i>
|
|
76
|
-
<span v-html="$t1('上传导入文件 {percent}', {percent: `<span class=nums>${percent1}%</span>`})"></span>
|
|
77
|
-
</li>
|
|
78
|
-
<li :class="getLoadingClass(2,percent2)">
|
|
79
|
-
<i class="el-icon-circle-check"></i>
|
|
80
|
-
<i class="el-icon-loading"></i>
|
|
81
|
-
<span
|
|
82
|
-
v-html="$t1('校验导入文件中的图片数据格式 {percent}', {percent: `<span class=nums>${percent2}%</span>`})"></span>
|
|
83
|
-
</li>
|
|
84
|
-
<li :class="getLoadingClass(3,percent3)">
|
|
85
|
-
<i class="el-icon-circle-check"></i>
|
|
86
|
-
<i class="el-icon-loading"></i>
|
|
87
|
-
<span
|
|
88
|
-
v-html="$t1('存储导入文件中的图片 {percent}', {percent: `<span class=nums>${percent3}%</span>`})"></span>
|
|
89
|
-
</li>
|
|
90
|
-
</ul>
|
|
91
|
-
</div>
|
|
92
|
-
<div v-show="!importLoading" class="import-box" style="margin-bottom: 30px;">
|
|
93
|
-
<div class="tips">
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
<
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
<
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
<
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
<span class="
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
<i class="el-icon-
|
|
125
|
-
{{ $t2('
|
|
126
|
-
</el-button>
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
:
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
<div class="
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
</
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<div v-if="showContent">
|
|
3
|
+
<el-dialog
|
|
4
|
+
:title="$t2('导入', 'components.excelImport.title')"
|
|
5
|
+
:append-to-body="true"
|
|
6
|
+
:modal-append-to-body="falseValue"
|
|
7
|
+
:close-on-click-modal="falseValue"
|
|
8
|
+
:visible.sync="showImportDialog"
|
|
9
|
+
:modal="falseValue"
|
|
10
|
+
custom-class="dialog-style"
|
|
11
|
+
width="501px"
|
|
12
|
+
v-el-drag-dialog
|
|
13
|
+
@close="dialogClose1"
|
|
14
|
+
>
|
|
15
|
+
<div class="import-box">
|
|
16
|
+
<div class="tips">{{ $t2('请下载文件模板,填写信息后再上传文件', 'components.excelImport.tip') }}</div>
|
|
17
|
+
<el-button type="success" plain class="button-sty template-btn" @click="commonLocalDownload()">
|
|
18
|
+
{{ $t2('模板下载', 'components.excelImport.downloadBUtton') }}
|
|
19
|
+
</el-button>
|
|
20
|
+
<el-upload v-if="!fileRaw" ref="uploadBtn" action="" class="upload-file" :auto-upload="false"
|
|
21
|
+
:on-change="fileChange">
|
|
22
|
+
<div class="el-upload-dragger">
|
|
23
|
+
<i class="el-icon-upload"></i>
|
|
24
|
+
<div class="el-upload__text"><em>{{ $t2('点击上传', 'components.excelImport.uploadBUtton') }}</em></div>
|
|
25
|
+
</div>
|
|
26
|
+
</el-upload>
|
|
27
|
+
<div class="upload-finish" v-if="fileRaw">
|
|
28
|
+
<img :src="$assetUrl(require('@/resources' + '/images/ico-excel.svg'))" class="ico"/>
|
|
29
|
+
<p class="name">{{ fileRaw.name }}</p>
|
|
30
|
+
<!-- <p>2022-1-17</p> -->
|
|
31
|
+
<el-tooltip :enterable="false" class="item" effect="dark"
|
|
32
|
+
:content="$t2('关闭', 'components.excelImport.closeBUtton')" placement="bottom">
|
|
33
|
+
<i
|
|
34
|
+
class="el-icon-error js-close"
|
|
35
|
+
@click="
|
|
36
|
+
fileRaw = false;
|
|
37
|
+
$refs.uploadBtn.clearFiles();
|
|
38
|
+
"
|
|
39
|
+
></i>
|
|
40
|
+
</el-tooltip>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
<span slot="footer" class="dialog-footer">
|
|
44
|
+
<span class="fl tips">{{ $t1('注:导入文件不允许超过{fileSize}MB', {fileSize: importFileLimitSize}) }}</span>
|
|
45
|
+
<el-button type="primary" plain class="button-sty" @click="dialogClose1">
|
|
46
|
+
<i class="el-icon-close el-icon"></i>
|
|
47
|
+
{{ $t2('取 消', 'system.button.cancel2') }}
|
|
48
|
+
</el-button>
|
|
49
|
+
<el-button type="primary" @click="dialogPrimary1" class="button-sty">
|
|
50
|
+
<i class="el-icon-check el-icon"></i>
|
|
51
|
+
{{ $t2('确 定', 'system.button.confirm2') }}
|
|
52
|
+
</el-button>
|
|
53
|
+
</span>
|
|
54
|
+
</el-dialog>
|
|
55
|
+
<el-dialog
|
|
56
|
+
ref="importDialog"
|
|
57
|
+
:title="$t2('导入', 'components.excelImport.title')"
|
|
58
|
+
:append-to-body="true"
|
|
59
|
+
:modal-append-to-body="falseValue"
|
|
60
|
+
:close-on-click-modal="falseValue"
|
|
61
|
+
:visible.sync="showImportDialog2"
|
|
62
|
+
:modal="falseValue"
|
|
63
|
+
custom-class="dialog-style"
|
|
64
|
+
width="501px"
|
|
65
|
+
height="250px"
|
|
66
|
+
:beforeClose="handleBeforeClose"
|
|
67
|
+
@close="handleClose2"
|
|
68
|
+
v-el-drag-dialog
|
|
69
|
+
>
|
|
70
|
+
<div>
|
|
71
|
+
<div v-show="importLoading" class="import-stepbox">
|
|
72
|
+
<ul>
|
|
73
|
+
<li :class="getLoadingClass(1,percent1)">
|
|
74
|
+
<i class="el-icon-circle-check"></i>
|
|
75
|
+
<i class="el-icon-loading"></i>
|
|
76
|
+
<span v-html="$t1('上传导入文件 {percent}', {percent: `<span class=nums>${percent1}%</span>`})"></span>
|
|
77
|
+
</li>
|
|
78
|
+
<li :class="getLoadingClass(2,percent2)">
|
|
79
|
+
<i class="el-icon-circle-check"></i>
|
|
80
|
+
<i class="el-icon-loading"></i>
|
|
81
|
+
<span
|
|
82
|
+
v-html="$t1('校验导入文件中的图片数据格式 {percent}', {percent: `<span class=nums>${percent2}%</span>`})"></span>
|
|
83
|
+
</li>
|
|
84
|
+
<li :class="getLoadingClass(3,percent3)">
|
|
85
|
+
<i class="el-icon-circle-check"></i>
|
|
86
|
+
<i class="el-icon-loading"></i>
|
|
87
|
+
<span
|
|
88
|
+
v-html="$t1('存储导入文件中的图片 {percent}', {percent: `<span class=nums>${percent3}%</span>`})"></span>
|
|
89
|
+
</li>
|
|
90
|
+
</ul>
|
|
91
|
+
</div>
|
|
92
|
+
<div v-show="!importLoading" class="import-box" style="margin-bottom: 30px;">
|
|
93
|
+
<div class="tips">
|
|
94
|
+
{{ backendValidating
|
|
95
|
+
? $t1('后台校验中,请勿关闭当前窗口')
|
|
96
|
+
: $t2('导入中,请勿关闭当前窗口', 'components.excelImport.tip2') }}
|
|
97
|
+
<!-- <span class="fr">耗时:<em class="time-txt">0 时 0 分 0 秒 </em></span> -->
|
|
98
|
+
</div>
|
|
99
|
+
<el-progress :text-inside="true" :stroke-width="26" :percentage="percentageNum"
|
|
100
|
+
class="export-progress"></el-progress>
|
|
101
|
+
<div class="i-status">
|
|
102
|
+
<div class="item">
|
|
103
|
+
<i class="el-icon-success f-green"></i>
|
|
104
|
+
{{ $t2('成功', 'components.excelImport.success') }}:
|
|
105
|
+
<span class="successNum" @click="showSuccessResult">{{ totalSuccessNum }}</span>
|
|
106
|
+
</div>
|
|
107
|
+
<div class="item">
|
|
108
|
+
<i class="el-icon-error f-red"></i>
|
|
109
|
+
{{ $t2('失败', 'components.excelImport.fail') }}:
|
|
110
|
+
<span class="failNum" @click="showErrorResult">{{ totalErrorNum }}</span>
|
|
111
|
+
</div>
|
|
112
|
+
</div>
|
|
113
|
+
</div>
|
|
114
|
+
</div>
|
|
115
|
+
<div slot="footer" class="dialog-footer" center="true">
|
|
116
|
+
<div class="fl import-count" v-show="!importLoading">
|
|
117
|
+
<span class="f-red doneNum">{{ doneNum }}</span>
|
|
118
|
+
/
|
|
119
|
+
<span class="dataSize">{{ dataSize }}</span>
|
|
120
|
+
</div>
|
|
121
|
+
<el-button type="primary" plain class="button-sty" @click="dialogClose2"
|
|
122
|
+
:disabled="backendValidating"
|
|
123
|
+
v-if="!param.importOption.hideCancelButton">
|
|
124
|
+
<i class="el-icon-close el-icon"></i>
|
|
125
|
+
{{ $t2('取 消', 'system.button.cancel2') }}
|
|
126
|
+
</el-button>
|
|
127
|
+
<el-button type="primary" class="button-sty" @click="dialogPrimary2"
|
|
128
|
+
:disabled="backendValidating">
|
|
129
|
+
<i class="el-icon-check el-icon"></i>
|
|
130
|
+
{{ $t2('确 定', 'system.button.confirm2') }}
|
|
131
|
+
</el-button>
|
|
132
|
+
</div>
|
|
133
|
+
</el-dialog>
|
|
134
|
+
<el-dialog
|
|
135
|
+
:title="$t2('结果', 'components.excelImport.resultTitle')"
|
|
136
|
+
:append-to-body="true"
|
|
137
|
+
:modal-append-to-body="true"
|
|
138
|
+
:close-on-click-modal="falseValue"
|
|
139
|
+
:visible.sync="showImportResult"
|
|
140
|
+
:modal="falseValue"
|
|
141
|
+
custom-class="dialog-style list-dialog"
|
|
142
|
+
width="1200px"
|
|
143
|
+
v-el-drag-dialog
|
|
144
|
+
>
|
|
145
|
+
<div>
|
|
146
|
+
<div class="box-style">
|
|
147
|
+
<div class="cont">
|
|
148
|
+
<div class="table-div">
|
|
149
|
+
<vxe-grid
|
|
150
|
+
id="resGrid"
|
|
151
|
+
ref="resGrid"
|
|
152
|
+
height="440px"
|
|
153
|
+
v-bind="resOption"
|
|
154
|
+
@resizable-change="$vxeTableUtil.onColumnWitchChange"
|
|
155
|
+
@custom="$vxeTableUtil.customHandle"
|
|
156
|
+
>
|
|
157
|
+
<template #form>
|
|
158
|
+
<div class="clearfix screen-btns">
|
|
159
|
+
<div class="fl">
|
|
160
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-upload2" @click="exportToExcel()">
|
|
161
|
+
{{ $t1('导出') }}
|
|
162
|
+
</vxe-button>
|
|
163
|
+
</div>
|
|
164
|
+
<div class="fr"></div>
|
|
165
|
+
</div>
|
|
166
|
+
</template>
|
|
167
|
+
<template #attachment="{row,column}">
|
|
168
|
+
<base-attachment :option="{
|
|
169
|
+
title: column.title,
|
|
170
|
+
rows: row[column.field],
|
|
171
|
+
showViewButton: true,
|
|
172
|
+
edit:false
|
|
173
|
+
}"/>
|
|
174
|
+
</template>
|
|
175
|
+
</vxe-grid>
|
|
176
|
+
</div>
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
</div>
|
|
180
|
+
</el-dialog>
|
|
181
|
+
</div>
|
|
182
|
+
</template>
|
|
183
|
+
|
|
184
|
+
<script>
|
|
185
|
+
import {mixins} from './importDialogMixin';
|
|
186
|
+
|
|
187
|
+
export default {
|
|
188
|
+
mixins: [mixins]
|
|
189
|
+
};
|
|
190
|
+
</script>
|