imatrix-ui 0.0.15 → 0.1.1-up

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.
Files changed (171) hide show
  1. package/.vscode/extensions.json +3 -0
  2. package/README.md +7 -0
  3. package/components/dynamic-source-select/dynamic-source-select-service.js +106 -0
  4. package/components/dynamic-source-select/dynamic-source-select.vue +673 -0
  5. package/components/dynamic-source-select/events.js +77 -0
  6. package/components/fs-preview/fs-preview.vue +287 -0
  7. package/components/index.js +26 -0
  8. package/components/plugins/export-data-new.js +623 -0
  9. package/components/plugins/export-data.js +431 -0
  10. package/components/plugins/index.js +15 -0
  11. package/components/plugins/public-method.js +47 -0
  12. package/components/rich-editor/index-bak.vue +306 -0
  13. package/components/rich-editor/index.vue +236 -0
  14. package/components/rich-editor/langs/zh-Hans.js +438 -0
  15. package/components/rich-editor/viewer.vue +105 -0
  16. package/components/super-grid/apis.js +1065 -0
  17. package/components/super-grid/columns-config.vue +430 -0
  18. package/components/super-grid/custom-formatter.js +330 -0
  19. package/components/super-grid/dynamic-input.vue +1706 -0
  20. package/components/super-grid/eventBus.js +2 -0
  21. package/components/super-grid/events.js +56 -0
  22. package/components/super-grid/formValidatorUtil.js +300 -0
  23. package/components/super-grid/formatter.js +190 -0
  24. package/components/super-grid/group-column.vue +100 -0
  25. package/components/super-grid/header-context-menu.vue +82 -0
  26. package/components/super-grid/index-column.vue +69 -0
  27. package/components/super-grid/normal-column.vue +1148 -0
  28. package/components/super-grid/public-methods.js +30 -0
  29. package/components/super-grid/row-operation.vue +193 -0
  30. package/components/super-grid/search-button.vue +74 -0
  31. package/components/super-grid/search-condition-input.vue +73 -0
  32. package/components/super-grid/search-condition-list.vue +68 -0
  33. package/components/super-grid/search-form-advancedQuery.vue +820 -0
  34. package/components/super-grid/search-form-dialog.vue +77 -0
  35. package/components/super-grid/search-form-item.vue +470 -0
  36. package/components/super-grid/search-form-number.vue +111 -0
  37. package/components/super-grid/search-form-open.vue +178 -0
  38. package/components/super-grid/search-form-ordinarySearch.vue +218 -0
  39. package/components/super-grid/search-form.vue +756 -0
  40. package/components/super-grid/search-methods.js +484 -0
  41. package/components/super-grid/selection-column.vue +46 -0
  42. package/components/super-grid/store.js +3 -0
  43. package/components/super-grid/super-grid-service.js +682 -0
  44. package/components/super-grid/super-grid.vue +2893 -0
  45. package/components/super-grid/utils.js +851 -0
  46. package/components/super-grid/view-image-dialog.vue +173 -0
  47. package/components/utils/gogocodeTransfer.js +59 -0
  48. package/components/utils/utils.js +180 -0
  49. package/components/utils/value-set.js +98 -0
  50. package/components/z-test-utton/index.vue +82 -0
  51. package/package.json +29 -40
  52. package/public/index.html +13 -0
  53. package/public/vite.svg +1 -0
  54. package/src/api/sso-service.js +172 -19
  55. package/src/api/tab.js +36 -0
  56. package/src/api/user-service.js +11 -11
  57. package/src/assets/401/401.gif +0 -0
  58. package/src/assets/404/404-cloud.png +0 -0
  59. package/src/assets/404/404.png +0 -0
  60. package/src/assets/cloud.png +0 -0
  61. package/src/directives/permission/index.js +13 -13
  62. package/src/directives/permission/permission.js +20 -15
  63. package/src/i18n/i18n.js +16 -0
  64. package/src/i18n/langs/cn.js +254 -0
  65. package/src/i18n/langs/en.js +264 -0
  66. package/src/permission.js +157 -71
  67. package/src/plugins.js +18 -18
  68. package/src/router/index.js +96 -69
  69. package/src/store/getters.js +15 -10
  70. package/src/store/index.js +19 -19
  71. package/src/store/modules/app.js +54 -42
  72. package/src/store/modules/permission.js +137 -73
  73. package/src/store/modules/tab-content.js +36 -0
  74. package/src/store/modules/user.js +293 -80
  75. package/src/styles/display-layout.scss +34 -0
  76. package/src/styles/element-ui.scss +29 -29
  77. package/src/styles/index.scss +157 -78
  78. package/src/styles/mixin.scss +27 -27
  79. package/src/styles/theme/black/font-style.scss +70 -0
  80. package/src/styles/theme/black/index.scss +306 -0
  81. package/src/styles/theme/black/sidebar.scss +189 -0
  82. package/src/styles/theme/blue/font-style.scss +46 -0
  83. package/src/styles/theme/blue/index.scss +172 -0
  84. package/src/styles/{sidebar.scss → theme/blue/sidebar.scss} +171 -141
  85. package/src/styles/theme/blue2/font-style.scss +70 -0
  86. package/src/styles/theme/blue2/index.scss +188 -0
  87. package/src/styles/theme/blue2/sidebar.scss +201 -0
  88. package/src/styles/theme/dark-blue/button.scss +9 -0
  89. package/src/styles/theme/dark-blue/card.scss +62 -0
  90. package/src/styles/theme/dark-blue/checkbox.scss +10 -0
  91. package/src/styles/theme/dark-blue/dark-blue-var.scss +8 -0
  92. package/src/styles/theme/dark-blue/dialog.scss +21 -0
  93. package/src/styles/theme/dark-blue/element-variables.scss +7 -0
  94. package/src/styles/theme/dark-blue/font.scss +71 -0
  95. package/src/styles/theme/dark-blue/form.scss +51 -0
  96. package/src/styles/theme/dark-blue/index.scss +269 -0
  97. package/src/styles/theme/dark-blue/input.scss +15 -0
  98. package/src/styles/theme/dark-blue/message.scss +8 -0
  99. package/src/styles/theme/dark-blue/pagination.scss +14 -0
  100. package/src/styles/theme/dark-blue/scrollbar-style.scss +32 -0
  101. package/src/styles/theme/dark-blue/sidebar.scss +266 -0
  102. package/src/styles/theme/dark-blue/tab.scss +83 -0
  103. package/src/styles/theme/dark-blue/table.scss +60 -0
  104. package/src/styles/theme/dark-blue/tree.scss +31 -0
  105. package/src/styles/theme/dark-blue/var.scss +1028 -0
  106. package/src/styles/theme/gray/card-style.scss +54 -0
  107. package/src/styles/theme/gray/font-style.scss +70 -0
  108. package/src/styles/theme/gray/index.scss +172 -0
  109. package/src/styles/theme/gray/input-style.scss +19 -0
  110. package/src/styles/theme/gray/scrollbar-style.scss +32 -0
  111. package/src/styles/theme/gray/sidebar.scss +231 -0
  112. package/src/styles/theme/gray/tab-style.scss +81 -0
  113. package/src/styles/transition.scss +47 -46
  114. package/src/utils/auth-api.js +159 -0
  115. package/src/utils/auth.js +61 -15
  116. package/src/utils/calculator/calculator-factory-wf.js +558 -0
  117. package/src/utils/calculator/calculator-factory.js +145 -0
  118. package/src/utils/calculator/calculator-util.js +166 -0
  119. package/src/utils/common-util.js +305 -0
  120. package/src/utils/eventBus.js +2 -0
  121. package/src/utils/iconUtils.js +28 -0
  122. package/src/utils/index.js +102 -86
  123. package/src/utils/jump-page-utils.js +814 -0
  124. package/src/utils/local-storage.js +33 -31
  125. package/src/utils/menu.js +19 -0
  126. package/src/utils/permission.js +31 -26
  127. package/src/utils/permissionAuth.js +90 -0
  128. package/src/utils/range-selector.js +188 -0
  129. package/src/utils/request.js +270 -116
  130. package/src/utils/restful-interface-utils.js +57 -0
  131. package/src/utils/util.js +698 -0
  132. package/src/utils/validate.js +34 -33
  133. package/src/utils/watermark.js +108 -0
  134. package/src/utils/workflow-util.js +93 -0
  135. package/src/views/404.vue +248 -228
  136. package/src/views/dsc-component/Sidebar/Item.vue +84 -0
  137. package/src/views/dsc-component/Sidebar/Link.vue +38 -0
  138. package/src/views/dsc-component/Sidebar/SidebarItem.vue +196 -0
  139. package/src/views/dsc-component/Sidebar/index.vue +220 -0
  140. package/src/views/dsc-component/tabs/tab-content.vue +199 -0
  141. package/src/views/error-page/401.vue +106 -91
  142. package/src/views/error-page/404.vue +248 -228
  143. package/src/views/layout/EmptyLayout.vue +3 -0
  144. package/src/views/layout/Layout.vue +81 -68
  145. package/src/views/layout/NewLayout.vue +18 -0
  146. package/src/views/layout/components/AppMain.vue +39 -29
  147. package/src/views/layout/components/Breadcrumb/index.vue +156 -0
  148. package/src/views/layout/components/Menubar/Item.vue +57 -0
  149. package/src/views/layout/components/Menubar/Link.vue +38 -0
  150. package/src/views/layout/components/Menubar/SidebarItem.vue +164 -0
  151. package/src/views/layout/components/Menubar/index.vue +210 -0
  152. package/src/views/layout/components/Sidebar/Item.vue +53 -29
  153. package/src/views/layout/components/Sidebar/Link.vue +38 -39
  154. package/src/views/layout/components/Sidebar/SidebarItem.vue +135 -100
  155. package/src/views/layout/components/Sidebar/index.vue +141 -48
  156. package/src/views/layout/components/iframe-page.vue +38 -0
  157. package/src/views/layout/components/index.js +4 -3
  158. package/src/views/layout/components/tabs/tab-content.vue +207 -0
  159. package/src/views/layout/mixin/ResizeHandler.js +41 -41
  160. package/src/views/layout/tab-content-iframe-index.vue +38 -0
  161. package/src/views/layout/tab-content-index.vue +93 -0
  162. package/src/views/login/authredirect.vue +10 -10
  163. package/src/views/login/index.vue +296 -203
  164. package/src/views/login/update-password.vue +243 -0
  165. package/src/views/redirect/index.vue +14 -12
  166. package/src/views/wf-history/tache-subprocess-history.vue +45 -0
  167. package/vite.config.js +31 -0
  168. package/lib/super-ui.css +0 -1
  169. package/lib/super-ui.umd.min.js +0 -2
  170. package/src/styles/variables.scss +0 -4
  171. package/src/views/layout/components/Navbar.vue +0 -92
@@ -0,0 +1,623 @@
1
+ import * as Vue from 'vue'
2
+ import store from '../super-grid/src/store'
3
+ import { getExtraParam } from '../super-grid/src/utils'
4
+ import nineGridStore from '../super-nine-grid/src/store'
5
+ import { Message } from 'element-ui'
6
+ import { packageEnumAndBeanColumnValueSets } from '../utils/value-set'
7
+ import { getI18n } from '../../src/utils/util'
8
+ /**
9
+ *
10
+ * @param {*} dataParam
11
+ * @param {*} excelName
12
+ * @param {*} listCode 如果是九宫格组件导出时,如果页面中有多个九宫格时,该属性需要传“listCode~gridId”,例如:
13
+ * @param {*} exportOptions
14
+ */
15
+ function exportData(
16
+ dataParam,
17
+ excelName,
18
+ listCode,
19
+ functionCode,
20
+ uuid,
21
+ exportOptions,
22
+ isAsync,
23
+ pageCode
24
+ ) {
25
+ return new Promise((resolve, reject) => {
26
+ exportResultData(
27
+ dataParam,
28
+ excelName,
29
+ listCode,
30
+ exportOptions,
31
+ functionCode,
32
+ uuid,
33
+ isAsync,
34
+ pageCode
35
+ )
36
+ .then((result) => {
37
+ // 表示导出成功,需要执行导出成功回调方法
38
+ if (
39
+ isHasTheOption('afterExport', exportOptions) &&
40
+ typeof exportOptions.afterExport === 'function'
41
+ ) {
42
+ exportOptions.afterExport.call(this)
43
+ }
44
+ resolve(result)
45
+ })
46
+ .catch((error) => {
47
+ if (
48
+ isHasTheOption('exportError', exportOptions) &&
49
+ typeof exportOptions.exportError === 'function'
50
+ ) {
51
+ exportOptions.exportError.call(this)
52
+ }
53
+ reject(error)
54
+ })
55
+ })
56
+ }
57
+ /**
58
+ * 导出数据
59
+ */
60
+ function exportResultData(
61
+ dataParam,
62
+ excelName,
63
+ listCode,
64
+ exportOptions,
65
+ functionCode,
66
+ uuid,
67
+ isAsync,
68
+ pageCode
69
+ ) {
70
+ return new Promise((resolve, reject) => {
71
+ // 从store缓存中取出列表信息
72
+ if (store.get(listCode + 'basicInfo')) {
73
+ const basicInfo = store.get(listCode + 'basicInfo')
74
+ if (basicInfo && basicInfo.i18nLable) {
75
+ excelName = basicInfo.i18nLable
76
+ }
77
+ }
78
+ let isCanExport = true
79
+ if (
80
+ isHasTheOption('beforeExport', exportOptions) &&
81
+ typeof exportOptions.beforeExport === 'function'
82
+ ) {
83
+ isCanExport = exportOptions.beforeExport.call(this)
84
+ }
85
+ if (!isCanExport) {
86
+ resolve(false)
87
+ } else {
88
+ if (dataParam && dataParam.hasOwnProperty('url')) {
89
+ // 导出url对应的数据
90
+ exportUrlData(dataParam, excelName, listCode)
91
+ .then((result) => {
92
+ resolve(result)
93
+ })
94
+ .catch((error) => {
95
+ reject(error)
96
+ })
97
+ } else {
98
+ // const dataIds = []
99
+ if (dataParam && dataParam.hasOwnProperty('data')) {
100
+ // 导出选中行
101
+ console.log('data', dataParam.data)
102
+ // dataParam.data.forEach(item => {
103
+ // if (item.id) {
104
+ // dataIds.push(item.id)
105
+ // } else if (item.ID) {
106
+ // dataIds.push(item.ID)
107
+ // }
108
+ // })
109
+ }
110
+ // 导出台账数据,有查询条件则导出查询条件对应的数据,没有查询条件则导出所有记录
111
+ exportListData(
112
+ excelName,
113
+ listCode,
114
+ dataParam.data,
115
+ functionCode,
116
+ uuid,
117
+ isAsync,
118
+ pageCode
119
+ )
120
+ .then((result) => {
121
+ resolve(result)
122
+ })
123
+ .catch((error) => {
124
+ reject(error)
125
+ })
126
+ }
127
+ }
128
+ })
129
+ }
130
+ // 导出的后台单独重写
131
+ function exportUrlData(dataParam, excelName, listCode) {
132
+ return new Promise((resolve, reject) => {
133
+ const listCodeStore = getListCode(listCode)
134
+ let param = getExportParamByGridParam(listCode)
135
+ const url = dataParam.url
136
+ if (dataParam.hasOwnProperty('param')) {
137
+ param = Object.assign(param, dataParam.param)
138
+ }
139
+ window.$vueApp.config.globalProperties.$http
140
+ .post(url, param)
141
+ .then((data) => {
142
+ let exportSheetData
143
+ // console.log('data===', data)
144
+ if (data instanceof Array) {
145
+ // 是数组,表示返回的是list记录集合
146
+ const result = {}
147
+ // console.log('_data', data)
148
+ result['_data'] = data
149
+ exportSheetData = JSON.stringify(result)
150
+ } else {
151
+ // 表示返回的是{_data:{},_styles:{}}
152
+ exportSheetData = JSON.stringify(data)
153
+ }
154
+ return exportMyData(exportSheetData, excelName, listCodeStore)
155
+ })
156
+ .then((result) => {
157
+ resolve(result)
158
+ })
159
+ .catch((error) => {
160
+ reject(error)
161
+ })
162
+ })
163
+ }
164
+
165
+ function getListCode(listCode) {
166
+ if (listCode !== null && listCode !== undefined && listCode !== '') {
167
+ return listCode
168
+ }
169
+ let listCodeStore = listCode
170
+ if (!listCode || listCode === null || listCode === '') {
171
+ listCodeStore = store.get('_list_code')
172
+ }
173
+ if (
174
+ listCodeStore === undefined ||
175
+ listCodeStore === null ||
176
+ listCodeStore === ''
177
+ ) {
178
+ listCodeStore = nineGridStore.get('_nine_list_code')
179
+ if (listCodeStore && listCodeStore.indexOf('~') < 0) {
180
+ // 拼接默认的九宫格gridId
181
+ listCodeStore = listCodeStore + '~' + '_nineGrid'
182
+ }
183
+ }
184
+ if (listCodeStore && listCodeStore.indexOf('~') > 0) {
185
+ listCodeStore = listCodeStore.substring(0, listCodeStore.indexOf('~'))
186
+ }
187
+ return listCodeStore
188
+ }
189
+
190
+ function getGridParams(listCode) {
191
+ let gridParams = null
192
+ let listCodeStore = listCode
193
+ if (!listCode || listCode === null || listCode === '') {
194
+ listCodeStore = store.get('_list_code')
195
+ }
196
+ gridParams = store.get(listCodeStore)
197
+ if (gridParams === undefined || gridParams === null) {
198
+ if (!listCode || listCode === null || listCode === '') {
199
+ listCodeStore = nineGridStore.get('_nine_list_code')
200
+ }
201
+ if (listCodeStore && listCodeStore.indexOf('~') < 0) {
202
+ // 拼接默认的九宫格gridId
203
+ listCodeStore = listCodeStore + '~' + '_nineGrid'
204
+ }
205
+ gridParams = nineGridStore.get(listCodeStore)
206
+ }
207
+ return gridParams
208
+ }
209
+
210
+ function getGridSystemCode(gridParams) {
211
+ if (gridParams && gridParams.basicInfo && gridParams.basicInfo.systemCode) {
212
+ return gridParams.basicInfo.systemCode
213
+ }
214
+ }
215
+
216
+ function getExportParamByGridParam(listCode) {
217
+ let param = {}
218
+ const gridParams = getGridParams(listCode)
219
+ if (gridParams !== undefined && gridParams !== null) {
220
+ const searchParam = Object.assign({}, gridParams.searchParam)
221
+ const pagination = {
222
+ currentPage: 1,
223
+ pageSize: 99999999,
224
+ showTotal: false,
225
+ }
226
+ param = searchParam
227
+ searchParam.pagination = pagination
228
+ if (gridParams.options.extraParam) {
229
+ // 当前有附加参数时,处理附加参数
230
+ param = getExtraParam(searchParam, gridParams)
231
+ let parentProp
232
+ const parentPropSetting = gridParams.options.parentProp
233
+ if (
234
+ typeof parentPropSetting !== 'undefined' &&
235
+ parentPropSetting !== '' &&
236
+ parentPropSetting !== null
237
+ ) {
238
+ parentProp = parentPropSetting
239
+ }
240
+ if (
241
+ parentProp &&
242
+ searchParam &&
243
+ searchParam.searchForm &&
244
+ searchParam.searchForm.length > 0
245
+ ) {
246
+ // 表示有查询条件时,不支持树形结构显示数据
247
+ param.listViewTreeSetting = null
248
+ }
249
+ }
250
+ }
251
+ return param
252
+ }
253
+ // 导出当前台账数据
254
+ function exportListData(
255
+ excelName,
256
+ listCode,
257
+ data,
258
+ functionCode,
259
+ uuid,
260
+ isAsync,
261
+ pageCode
262
+ ) {
263
+ return new Promise((resolve, reject) => {
264
+ const gridParams = getGridParams(listCode)
265
+ if (gridParams === undefined || gridParams === null) {
266
+ reject('导出失败')
267
+ } else {
268
+ const param = getExportParamByGridParam(listCode)
269
+ param.data = data
270
+ if (gridParams.columns) {
271
+ param.exportColumns = getExportColumnsByStore(gridParams.columns)
272
+ }
273
+ param.exportData = {
274
+ excelName: excelName,
275
+ }
276
+ if (!excelName || excelName === null || excelName === '') {
277
+ excelName = 'default.xlsx'
278
+ } else {
279
+ excelName = excelName + '.xlsx'
280
+ }
281
+ if (functionCode) {
282
+ param.functionCode = functionCode
283
+ } else {
284
+ Message({
285
+ message: getI18n().t(
286
+ 'imatrixUIMessage.theButtonIsNotBoundToAResource'
287
+ ),
288
+ type: 'error',
289
+ showClose: true,
290
+ })
291
+ return
292
+ }
293
+
294
+ if (uuid) {
295
+ param.uuid = uuid
296
+ }
297
+ const systemCode = getGridSystemCode(gridParams)
298
+ param.systemCode = systemCode
299
+ // 用来控制按钮禁止编辑的
300
+ localStorage.setItem(uuid, 'start')
301
+ // 是否异步
302
+ param['async'] = isAsync
303
+ // 页面编码
304
+ param['pageCode'] = pageCode
305
+ window.$vueApp.config.globalProperties.$http
306
+ .post(
307
+ window.$vueApp.config.globalProperties.baseURL +
308
+ '/dsc/commons/export-list-data',
309
+ param
310
+ )
311
+ .then((data) => {
312
+ if (isAsync) {
313
+ Message({
314
+ message: getI18n().t('imatrixUIMessage.asyncExport'),
315
+ type: 'success',
316
+ showClose: true,
317
+ })
318
+ localStorage.setItem(uuid, 'ok')
319
+ } else {
320
+ if (data.indexOf('~~') >= 0) {
321
+ localStorage.setItem(uuid, 'ok')
322
+ return download(
323
+ window.$vueApp.config.globalProperties.baseAPI +
324
+ '/component/super-grids/downloads?fileName=' +
325
+ encodeURI(data) +
326
+ '&_t=' +
327
+ new Date().getTime(),
328
+ excelName
329
+ )
330
+ } else {
331
+ getFileUuid(data, param, excelName)
332
+ }
333
+ }
334
+ // return download(Vue.prototype.baseAPI + '/component/super-grids/downloads?fileName=' + encodeURI(fileName) + '&_t=' + new Date().getTime(), excelName)
335
+ })
336
+ .then((result) => {
337
+ resolve(result)
338
+ })
339
+ .catch((error) => {
340
+ // 用来控制按钮禁止编辑的
341
+ localStorage.setItem(uuid, 'error')
342
+ reject(error)
343
+ })
344
+ }
345
+ })
346
+ }
347
+ /**
348
+ * 根据uuid获取导出情况
349
+ * @param {*} uuid
350
+ * @param {*} param
351
+ * @param {*} excelName
352
+ */
353
+ function getFileUuid(uuid, param, excelName) {
354
+ setTimeout(() => {
355
+ window.$vueApp.config.globalProperties.$http
356
+ .post(
357
+ window.$vueApp.config.globalProperties.baseURL +
358
+ '/dsc/commons/get-file-uuid/' +
359
+ uuid,
360
+ param
361
+ )
362
+ .then((data) => {
363
+ if (data) {
364
+ if (data.code && (data.code === 'ok' || data.code === 'error')) {
365
+ if (data.code === 'ok') {
366
+ // 用来控制按钮禁止编辑的
367
+ localStorage.setItem(uuid, 'ok')
368
+ return download(
369
+ window.$vueApp.config.globalProperties.baseAPI +
370
+ '/component/super-grids/downloads?fileName=' +
371
+ encodeURI(data.fileName) +
372
+ '&uuid=' +
373
+ uuid +
374
+ '&_t=' +
375
+ new Date().getTime(),
376
+ excelName
377
+ )
378
+ } else {
379
+ localStorage.setItem(uuid, 'error')
380
+ Message({
381
+ message: data.message,
382
+ type: 'error',
383
+ showClose: true,
384
+ })
385
+ }
386
+ } else {
387
+ getFileUuid(uuid, param, excelName)
388
+ }
389
+ } else {
390
+ localStorage.setItem(uuid, 'ok')
391
+ }
392
+ })
393
+ .catch(() => {
394
+ // 用来控制按钮禁止编辑的
395
+ localStorage.setItem(uuid, 'error')
396
+ })
397
+ }, 5000)
398
+ }
399
+ function exportMyData(data, excelName, listCode) {
400
+ return new Promise((resolve, reject) => {
401
+ const gridParams = getGridParams(listCode)
402
+ if (gridParams !== undefined) {
403
+ if (gridParams.columns) {
404
+ // console.log('exportMyData--grid--gridParams.columns.length=', gridParams.columns)
405
+ const columnInfoArr = getExportColumnsByStore(gridParams.columns)
406
+ // console.log('exportMyData--grid--columnInfoArr.length=', columnInfoArr.length)
407
+ if (columnInfoArr.length === 0) {
408
+ Message({
409
+ message: getI18n().t('imatrixUIMessage.noExportColumnsConfigured'),
410
+ type: 'warning',
411
+ showClose: true,
412
+ })
413
+ resolve(false)
414
+ } else {
415
+ exportColumns(getExportInfo(data, excelName, listCode, columnInfoArr))
416
+ .then((result) => {
417
+ resolve(result)
418
+ })
419
+ .catch((error) => {
420
+ reject(error)
421
+ })
422
+ }
423
+ } else {
424
+ Message({
425
+ message: getI18n().t('imatrixUIMessage.noExportColumnsConfigured'),
426
+ type: 'warning',
427
+ showClose: true,
428
+ })
429
+ resolve(false)
430
+ }
431
+ } else {
432
+ exportOtherListData(data, excelName, listCode)
433
+ .then((result) => {
434
+ resolve(result)
435
+ })
436
+ .catch((error) => {
437
+ reject(error)
438
+ })
439
+ }
440
+ })
441
+ }
442
+
443
+ /**
444
+ * 导出非台账列表数据
445
+ * @param {*}} data
446
+ * @param {*} excelName
447
+ * @param {*} listCode
448
+ */
449
+ function exportOtherListData(
450
+ data,
451
+ excelName,
452
+ listCode,
453
+ additionalParameterStr
454
+ ) {
455
+ return new Promise((resolve, reject) => {
456
+ const params = {}
457
+ if (additionalParameterStr && additionalParameterStr !== '') {
458
+ params.additionalParamMap = additionalParameterStr
459
+ }
460
+ window.$vueApp.config.globalProperties.$http
461
+ .post(
462
+ window.$vueApp.config.globalProperties.baseAPI +
463
+ '/component/super-grids/' +
464
+ listCode +
465
+ '/export-columns',
466
+ params
467
+ )
468
+ .then((columnInfoArr) => {
469
+ packageEnumAndBeanColumnValueSets(columnInfoArr, listCode)
470
+ .then(() => {
471
+ if (columnInfoArr.length === 0) {
472
+ Message({
473
+ message: getI18n().t(
474
+ 'imatrixUIMessage.noExportColumnsConfigured'
475
+ ),
476
+ type: 'warning',
477
+ showClose: true,
478
+ })
479
+ resolve(false)
480
+ } else {
481
+ exportColumns(
482
+ getExportInfo(data, excelName, listCode, columnInfoArr)
483
+ )
484
+ .then((result) => {
485
+ resolve(result)
486
+ })
487
+ .catch((error) => {
488
+ reject(error)
489
+ })
490
+ }
491
+ })
492
+ .catch((error) => {
493
+ reject(error)
494
+ })
495
+ })
496
+ .catch((error) => {
497
+ reject(error)
498
+ })
499
+ })
500
+ }
501
+
502
+ /**
503
+ * @param {exportInfo} Object 导出的字段配置集合及导出的数据信息
504
+ */
505
+ function exportColumns(exportInfo) {
506
+ return new Promise((resolve, reject) => {
507
+ let excelName = exportInfo.exportData.excelName
508
+ if (!excelName || excelName === null || excelName === '') {
509
+ excelName = 'default.xlsx'
510
+ } else {
511
+ excelName = excelName + '.xlsx'
512
+ }
513
+ window.$vueApp.config.globalProperties.$http
514
+ .post(
515
+ window.$vueApp.config.globalProperties.baseAPI +
516
+ '/component/super-grids/exports',
517
+ exportInfo
518
+ )
519
+ .then((fileName) => {
520
+ // window.location.href = Vue.prototype.baseAPI + '/component/super-grids/downloads?fileName=' + encodeURI(fileName)
521
+ return download(
522
+ window.$vueApp.config.globalProperties.baseAPI +
523
+ '/component/super-grids/downloads?fileName=' +
524
+ encodeURI(fileName) +
525
+ '&_t=' +
526
+ new Date().getTime(),
527
+ excelName
528
+ )
529
+ })
530
+ .then((result) => {
531
+ resolve(result)
532
+ })
533
+ .catch((error) => {
534
+ reject(error)
535
+ })
536
+ })
537
+ }
538
+
539
+ function getExportColumnsByStore(columns) {
540
+ let exportColumns = []
541
+ columns.forEach((column) => {
542
+ if (column.children && column.children.length > 0) {
543
+ // 解决组合表头时没有导出的问题
544
+ exportColumns = exportColumns.concat(
545
+ getExportColumnsByStore(column.children)
546
+ )
547
+ } else {
548
+ if (column.exportable && column.exportable === true) {
549
+ exportColumns.push(column)
550
+ }
551
+ }
552
+ })
553
+ return exportColumns
554
+ }
555
+
556
+ function getExportInfo(data, excelName, listCode, columnInfoArr) {
557
+ if (!excelName || excelName === null || excelName === '') {
558
+ excelName = listCode
559
+ }
560
+ return {
561
+ exportColumns: columnInfoArr,
562
+ exportData: getExportData(data, excelName),
563
+ }
564
+ }
565
+
566
+ function getExportData(data, excelName) {
567
+ return {
568
+ excelName: excelName,
569
+ exportSheetData: [
570
+ {
571
+ data: data,
572
+ sheetName: excelName,
573
+ },
574
+ ],
575
+ }
576
+ }
577
+
578
+ function isHasTheOption(event, exportOptions) {
579
+ if (
580
+ exportOptions !== null &&
581
+ typeof exportOptions !== 'undefined' &&
582
+ typeof exportOptions[event] !== 'undefined'
583
+ ) {
584
+ return true
585
+ }
586
+ return false
587
+ }
588
+
589
+ function download(url, fileName) {
590
+ return new Promise((resolve, reject) => {
591
+ window.$vueApp.config.globalProperties
592
+ .$http({
593
+ method: 'GET',
594
+ url: url,
595
+ responseType: 'blob',
596
+ })
597
+ .then((res) => {
598
+ const blob = new Blob([res])
599
+ if (window.navigator.msSaveOrOpenBlob) {
600
+ navigator.msSaveBlob(blob, fileName)
601
+ } else {
602
+ const link = document.createElement('a')
603
+ const evt = document.createEvent('HTMLEvents')
604
+ evt.initEvent('click', false, false)
605
+ link.href = URL.createObjectURL(blob)
606
+ link.download = fileName
607
+ link.style.display = 'none'
608
+ document.body.appendChild(link)
609
+ link.click()
610
+ window.URL.revokeObjectURL(link.href)
611
+ }
612
+ resolve(true)
613
+ })
614
+ .catch((error) => {
615
+ reject(error)
616
+ })
617
+ })
618
+ }
619
+
620
+ export default {
621
+ exportData,
622
+ download,
623
+ }