cloud-web-corejs 1.0.54-dev.57 → 1.0.54-dev.571

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 (471) hide show
  1. package/package.json +21 -13
  2. package/src/App.vue +30 -34
  3. package/src/api/user.js +16 -0
  4. package/src/components/Qrcode/fileParse.vue +0 -1
  5. package/src/components/Tinymce/index.vue +112 -71
  6. package/src/components/VabUpload/image-viewer.vue +2 -2
  7. package/src/components/VabUpload/index.js +49 -1
  8. package/src/components/VabUpload/mixins.js +1822 -2
  9. package/src/components/VabUpload/propertiesDialog.vue +1 -1
  10. package/src/components/VabUpload/view.vue +209 -120
  11. package/src/components/advancedSearchDialog/mixins.js +28 -1
  12. package/src/components/base-textarea/index.vue +104 -0
  13. package/src/components/baseAlert/index.js +44 -1
  14. package/src/components/baseAlert/index.vue +23 -19
  15. package/src/components/baseAlert/mixins.js +61 -1
  16. package/src/components/baseAttachment/index.vue +49 -40
  17. package/src/components/baseAttachment/install.js +21 -5
  18. package/src/components/baseAttachment/mixins.js +310 -1
  19. package/src/components/baseInputBatch/mixins.js +58 -1
  20. package/src/components/baseInputExport/index.vue +19 -12
  21. package/src/components/baseInputExport/mixins.js +391 -1
  22. package/src/components/baseTabs/mixins.js +166 -1
  23. package/src/components/cnPrint/index.js +44 -1
  24. package/src/components/cnPrint/mixins.js +189 -1
  25. package/src/components/code-editor/index.vue +102 -63
  26. package/src/components/confirmDialog/index.js +41 -1
  27. package/src/components/confirmDialog/index.vue +24 -17
  28. package/src/components/confirmDialog/mixins.js +31 -1
  29. package/src/components/errorMsg/index.js +44 -1
  30. package/src/components/errorMsg/index.vue +78 -70
  31. package/src/components/errorMsg/mixins.js +101 -5
  32. package/src/components/excelExport/button.vue +57 -4
  33. package/src/components/excelExport/exportFieldDialog.vue +215 -81
  34. package/src/components/excelExport/index.js +6 -6
  35. package/src/components/excelExport/index.vue +56 -2
  36. package/src/components/excelExport/mixins.js +3 -2
  37. package/src/components/excelImport/index.js +13 -13
  38. package/src/components/excelImport/mixins.js +2 -1
  39. package/src/components/fileLibrary/fileObjAuthDialog.vue +179 -89
  40. package/src/components/fileLibrary/fileObjAuthEditDialog.vue +6 -0
  41. package/src/components/fileLibrary/filterDialog.vue +454 -0
  42. package/src/components/fileLibrary/index.vue +605 -262
  43. package/src/components/fileLibrary/mixins/categoryMoveDialogMixins.js +1 -1
  44. package/src/components/fileLibrary/mixins/fileCategoryDialogMixins.js +1 -1
  45. package/src/components/fileLibrary/mixins/fileHistoryDialogMixins.js +2 -2
  46. package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +339 -211
  47. package/src/components/fileLibrary/mixins/fileObjAuthEditDialogMixin.js +31 -27
  48. package/src/components/fileLibrary/mixins/fileObjAuthEditMixin.js +4 -4
  49. package/src/components/fileLibrary/mixins/indexMixins.js +220 -101
  50. package/src/components/fileLibrary/mixins/propertiesDialogMixins.js +64 -4
  51. package/src/components/fileLibrary/mixins/recycleBinDialogMixins.js +3 -3
  52. package/src/components/fileLibrary/propertiesDialog.vue +113 -74
  53. package/src/components/fileLibrary/shareDialog.vue +1 -1
  54. package/src/components/formOplog/mixins.js +77 -1
  55. package/src/components/hiprint/css/bootstrap.min.css +6 -0
  56. package/src/components/hiprint/fonts/glyphicons-halflings-regular.eot +0 -0
  57. package/src/components/hiprint/fonts/glyphicons-halflings-regular.svg +288 -0
  58. package/src/components/hiprint/fonts/glyphicons-halflings-regular.ttf +0 -0
  59. package/src/components/hiprint/fonts/glyphicons-halflings-regular.woff +0 -0
  60. package/src/components/hiprint/fonts/glyphicons-halflings-regular.woff2 +0 -0
  61. package/src/components/hiprint/hiprint.bundle.js +7 -2
  62. package/src/components/hiprint/view/design/index.vue +140 -47
  63. package/src/components/hiprint/view/design/mixins.js +611 -1
  64. package/src/components/hiprint/view/design/preview.vue +75 -52
  65. package/src/components/hiprint/view/json-view.vue +31 -31
  66. package/src/components/jdPrint/index.js +44 -1
  67. package/src/components/jdPrint/mixins.js +208 -1
  68. package/src/components/jsonImport/index.js +187 -17
  69. package/src/components/jsonImport/mixins.js +333 -1
  70. package/src/components/langImport/index.js +80 -1
  71. package/src/components/langImport/mixins.js +500 -16
  72. package/src/components/langTag/mixins/addButton.js +51 -5
  73. package/src/components/langTag/mixins/deleteButton.js +55 -5
  74. package/src/components/langTag/mixins/view.js +47 -5
  75. package/src/components/luckysheet/dialog.vue +159 -0
  76. package/src/components/luckysheet/export.js +595 -0
  77. package/src/components/luckysheet/fileUtils.js +147 -0
  78. package/src/components/luckysheet/index.js +72 -0
  79. package/src/components/luckysheet/templateJson.js +12078 -0
  80. package/src/components/luckysheet/view.vue +210 -0
  81. package/src/components/obsUpload/index.js +34 -0
  82. package/src/components/obsUpload/index.vue +231 -0
  83. package/src/components/obsUpload/mixins.js +1476 -0
  84. package/src/components/onlineTalk/mixins.js +852 -1
  85. package/src/components/oplogTable/mixins.js +83 -4
  86. package/src/components/pddPrint/index.js +44 -1
  87. package/src/components/pddPrint/mixins.js +252 -1
  88. package/src/components/projectTag/mixins/addButton.js +52 -1
  89. package/src/components/projectTag/mixins/deleteButton.js +52 -1
  90. package/src/components/projectTag/mixins/view.js +43 -1
  91. package/src/components/scriptDescription/button.vue +12 -4
  92. package/src/components/scriptDescription/mixins.js +30 -1
  93. package/src/components/scriptTest/mixins.js +90 -1
  94. package/src/components/statusTag/mixins.js +66 -1
  95. package/src/components/table/CellSlot.vue +1 -0
  96. package/src/components/table/config.js +1 -1
  97. package/src/components/table/index.js +12 -11
  98. package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.es6.min.js +11028 -0
  99. package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.min.css +200 -0
  100. package/src/components/table/tableForm.vue +99 -63
  101. package/src/components/table/tableFormMixin.js +1 -1
  102. package/src/components/table/util/index.js +335 -0
  103. package/src/components/table/vxeFilter/index.js +1 -1
  104. package/src/components/table/vxeFilter/mixin.js +6 -6
  105. package/src/components/tempStorage/index.vue +76 -55
  106. package/src/components/tempStorage/tempStorageDialog.vue +179 -54
  107. package/src/components/vb-tabs/x-tabs.vue +56 -30
  108. package/src/components/vipPrint/index.js +44 -1
  109. package/src/components/vipPrint/mixins.js +268 -1
  110. package/src/components/wf/addOpinionButton.vue +57 -0
  111. package/src/components/wf/content.vue +834 -362
  112. package/src/components/wf/mixins/addOpinionButton.js +53 -0
  113. package/src/components/wf/mixins/setCandidateButton.js +161 -0
  114. package/src/components/wf/mixins/setCandidateDialog.js +213 -1
  115. package/src/components/wf/mixins/setCandidateDialog2.js +252 -0
  116. package/src/components/wf/mixins/wfFlowEleScriptDialog.js +131 -0
  117. package/src/components/wf/mixins/wfTaskUserRangeDialog.js +69 -0
  118. package/src/components/wf/setCandidateButton.vue +40 -0
  119. package/src/components/wf/setCandidateDialog.vue +10 -0
  120. package/src/components/wf/setCandidateDialog2.vue +105 -0
  121. package/src/components/wf/wf.js +2156 -1
  122. package/src/components/wf/wfFlowEleScriptDialog.vue +89 -0
  123. package/src/components/wf/wfStartDialog.vue +66 -42
  124. package/src/components/wf/wfTaskUserRangeDialog.vue +65 -0
  125. package/src/components/wf/wfUtil.js +279 -1
  126. package/src/components/xform/form-designer/designer.js +5 -3
  127. package/src/components/xform/form-designer/form-widget/components/gantt/index.vue +434 -0
  128. package/src/components/xform/form-designer/form-widget/container-widget/containerMixin.js +1 -1
  129. package/src/components/xform/form-designer/form-widget/container-widget/data-table-mixin.js +9 -8
  130. package/src/components/xform/form-designer/form-widget/container-widget/data-table-widget.vue +4 -1
  131. package/src/components/xform/form-designer/form-widget/container-widget/detail-widget.vue +3 -3
  132. package/src/components/xform/form-designer/form-widget/dialog/baseFormulaDialog copy.vue +971 -0
  133. package/src/components/xform/form-designer/form-widget/dialog/baseFormulaDialog.vue +971 -0
  134. package/src/components/xform/form-designer/form-widget/dialog/exportDialog.vue +13 -0
  135. package/src/components/xform/form-designer/form-widget/dialog/fileReferenceDialog.vue +301 -0
  136. package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +82 -49
  137. package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +5 -1
  138. package/src/components/xform/form-designer/form-widget/dialog/formulaDialog.vue +799 -0
  139. package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +38 -7
  140. package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +9 -903
  141. package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +196 -73
  142. package/src/components/xform/form-designer/form-widget/field-widget/a-link-widget.vue +2 -2
  143. package/src/components/xform/form-designer/form-widget/field-widget/a-text-widget.vue +1 -1
  144. package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +32 -4
  145. package/src/components/xform/form-designer/form-widget/field-widget/button-widget.vue +1 -1
  146. package/src/components/xform/form-designer/form-widget/field-widget/cascader-widget.vue +19 -1
  147. package/src/components/xform/form-designer/form-widget/field-widget/census-widget.vue +40 -28
  148. package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +18 -7
  149. package/src/components/xform/form-designer/form-widget/field-widget/color-widget.vue +4 -1
  150. package/src/components/xform/form-designer/form-widget/field-widget/copy_button-widget.vue +95 -0
  151. package/src/components/xform/form-designer/form-widget/field-widget/date-range-widget.vue +14 -2
  152. package/src/components/xform/form-designer/form-widget/field-widget/date-widget.vue +30 -4
  153. package/src/components/xform/form-designer/form-widget/field-widget/download-button-widget.vue +133 -0
  154. package/src/components/xform/form-designer/form-widget/field-widget/dropdown-item-widget.vue +77 -0
  155. package/src/components/xform/form-designer/form-widget/field-widget/dropdown-menu-widget.vue +106 -0
  156. package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +25 -997
  157. package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +705 -379
  158. package/src/components/xform/form-designer/form-widget/field-widget/gantt-widget.vue +964 -0
  159. package/src/components/xform/form-designer/form-widget/field-widget/html-text-widget.vue +6 -2
  160. package/src/components/xform/form-designer/form-widget/field-widget/import-button-widget.vue +22 -11
  161. package/src/components/xform/form-designer/form-widget/field-widget/import2-button-widget.vue +90 -0
  162. package/src/components/xform/form-designer/form-widget/field-widget/input-widget.vue +7 -2
  163. package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-bar-mixin.js +40 -10
  164. package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-category-mixin.js +58 -91
  165. package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-pie-mixin.js +8 -1
  166. package/src/components/xform/form-designer/form-widget/field-widget/mixins/vabsearch-mixin.js +179 -0
  167. package/src/components/xform/form-designer/form-widget/field-widget/multiSearch-widget.vue +53 -0
  168. package/src/components/xform/form-designer/form-widget/field-widget/number-widget.vue +114 -81
  169. package/src/components/xform/form-designer/form-widget/field-widget/oplog-widget.vue +186 -0
  170. package/src/components/xform/form-designer/form-widget/field-widget/print-button-widget.vue +55 -28
  171. package/src/components/xform/form-designer/form-widget/field-widget/print-detail-button-widget.vue +119 -0
  172. package/src/components/xform/form-designer/form-widget/field-widget/project-tag-widget.vue +154 -47
  173. package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +26 -6
  174. package/src/components/xform/form-designer/form-widget/field-widget/search_button-widget.vue +2 -2
  175. package/src/components/xform/form-designer/form-widget/field-widget/select-export-button-widget.vue +86 -0
  176. package/src/components/xform/form-designer/form-widget/field-widget/select-export-item-button-widget.vue +92 -0
  177. package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +24 -9
  178. package/src/components/xform/form-designer/form-widget/field-widget/singerSearch-widget.vue +53 -0
  179. package/src/components/xform/form-designer/form-widget/field-widget/singleUpload-widget.vue +145 -0
  180. package/src/components/xform/form-designer/form-widget/field-widget/static-content-wrapper.vue +12 -1
  181. package/src/components/xform/form-designer/form-widget/field-widget/static-text-widget.vue +8 -3
  182. package/src/components/xform/form-designer/form-widget/field-widget/status-widget.vue +31 -17
  183. package/src/components/xform/form-designer/form-widget/field-widget/table-export-button-widget.vue +38 -37
  184. package/src/components/xform/form-designer/form-widget/field-widget/tableexportbuttonwidget.vue +99 -0
  185. package/src/components/xform/form-designer/form-widget/field-widget/tempStorage-widget.vue +147 -0
  186. package/src/components/xform/form-designer/form-widget/field-widget/text-widget.vue +106 -33
  187. package/src/components/xform/form-designer/form-widget/field-widget/time-range-widget.vue +2 -2
  188. package/src/components/xform/form-designer/form-widget/field-widget/vabSearch-widget.vue +3 -171
  189. package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +191 -66
  190. package/src/components/xform/form-designer/form-widget/field-widget/vabUpload2-widget.vue +753 -0
  191. package/src/components/xform/form-designer/form-widget/indexMixin.js +1 -1
  192. package/src/components/xform/form-designer/indexMixin.js +3 -772
  193. package/src/components/xform/form-designer/refMixinDesign.js +1 -28
  194. package/src/components/xform/form-designer/setting-panel/form-setting.vue +978 -169
  195. package/src/components/xform/form-designer/setting-panel/index.vue +4 -0
  196. package/src/components/xform/form-designer/setting-panel/indexMixin.js +1 -1
  197. package/src/components/xform/form-designer/setting-panel/option-items-setting.vue +537 -302
  198. package/src/components/xform/form-designer/setting-panel/property-editor/a-link-editor.vue +4 -4
  199. package/src/components/xform/form-designer/setting-panel/property-editor/a-text-editor.vue +3 -3
  200. package/src/components/xform/form-designer/setting-panel/property-editor/autoValueEnabled-editor.vue +38 -0
  201. package/src/components/xform/form-designer/setting-panel/property-editor/censusClass-editor.vue +6 -0
  202. package/src/components/xform/form-designer/setting-panel/property-editor/colorClass-editor.vue +28 -0
  203. package/src/components/xform/form-designer/setting-panel/property-editor/commonAttributeEnabled-editor.vue +41 -0
  204. package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/columnRenderDialog.vue +125 -0
  205. package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +953 -1042
  206. package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/exportItemColumns-dialog.vue +432 -0
  207. package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/onCheckboxChange-editor.vue +1 -1
  208. package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +1127 -520
  209. package/src/components/xform/form-designer/setting-panel/property-editor/container-detail/detail-editor.vue +2 -2
  210. package/src/components/xform/form-designer/setting-panel/property-editor/container-detail-pane/detail-pane-editor.vue +3 -3
  211. package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-offset-editor.vue +1 -1
  212. package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-pull-editor.vue +1 -1
  213. package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-push-editor.vue +1 -1
  214. package/src/components/xform/form-designer/setting-panel/property-editor/container-list-h5/list-h5-editor.vue +0 -8
  215. package/src/components/xform/form-designer/setting-panel/property-editor/container-tree/tree-customClass-editor.vue +31 -2
  216. package/src/components/xform/form-designer/setting-panel/property-editor/copyButton-editor.vue +36 -0
  217. package/src/components/xform/form-designer/setting-panel/property-editor/downloadButtonFlag-editor.vue +32 -0
  218. package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/eventMixin.js +2 -2
  219. package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onAfterConfirmFile-editor.vue +32 -0
  220. package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onClick-editor.vue +14 -7
  221. package/src/components/xform/form-designer/setting-panel/property-editor/field-button/clickBindEvent-editor.vue +35 -20
  222. package/src/components/xform/form-designer/setting-panel/property-editor/field-button/search-dialog-event-editor.vue +64 -5
  223. package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultTime-editor.vue +27 -0
  224. package/src/components/xform/form-designer/setting-panel/property-editor/field-dropdown-menu/dropdown-item-editor.vue +21 -0
  225. package/src/components/xform/form-designer/setting-panel/property-editor/field-dropdown-menu/dropdown-menu-editor.vue +59 -0
  226. package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-bar-editor.vue +25 -0
  227. package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-category-editor.vue +5 -5
  228. package/src/components/xform/form-designer/setting-panel/property-editor/field-gantt/gantt-editor.vue +36 -0
  229. package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +77 -20
  230. package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +96 -0
  231. package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-button-editor.vue +44 -15
  232. package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-detail-button-editor.vue +115 -0
  233. package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/rate-defaultValue-editor.vue +1 -1
  234. package/src/components/xform/form-designer/setting-panel/property-editor/field-static-text/preWrap-editor.vue +23 -0
  235. package/src/components/xform/form-designer/setting-panel/property-editor/field-static-text/textContent-editor.vue +1 -1
  236. package/src/components/xform/form-designer/setting-panel/property-editor/field-status/field-status-editor.vue +67 -41
  237. package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-button-editor.vue +56 -0
  238. package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-item-button-editor.vue +71 -0
  239. package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/table-export-button-editor.vue +24 -8
  240. package/src/components/xform/form-designer/setting-panel/property-editor/field-vabSearch/vabSearchName-editor.vue +13 -1
  241. package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload/field-vabUpload-editor.vue +33 -1
  242. package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload2/field-vabUpload2-editor.vue +66 -0
  243. package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +89 -19
  244. package/src/components/xform/form-designer/setting-panel/property-editor/formatType-editor.vue +137 -0
  245. package/src/components/xform/form-designer/setting-panel/property-editor/formula-editor.vue +721 -466
  246. package/src/components/xform/form-designer/setting-panel/property-editor/labelColor-editor.vue +20 -11
  247. package/src/components/xform/form-designer/setting-panel/property-editor/labelIconClass-editor.vue +1 -1
  248. package/src/components/xform/form-designer/setting-panel/property-editor/labelIconPosition-editor.vue +1 -1
  249. package/src/components/xform/form-designer/setting-panel/property-editor/labelTooltip-editor.vue +1 -1
  250. package/src/components/xform/form-designer/setting-panel/property-editor/limit-editor.vue +1 -1
  251. package/src/components/xform/form-designer/setting-panel/property-editor/multiple-editor.vue +19 -14
  252. package/src/components/xform/form-designer/setting-panel/property-editor/multipleLimit-editor.vue +1 -1
  253. package/src/components/xform/form-designer/setting-panel/property-editor/name-editor.vue +124 -50
  254. package/src/components/xform/form-designer/setting-panel/property-editor/oplog-editor.vue +31 -0
  255. package/src/components/xform/form-designer/setting-panel/property-editor/precision-editor.vue +1 -1
  256. package/src/components/xform/form-designer/setting-panel/property-editor/project-tag-editor.vue +349 -0
  257. package/src/components/xform/form-designer/setting-panel/property-editor/required-editor.vue +10 -6
  258. package/src/components/xform/form-designer/setting-panel/property-editor/requiredHint-editor.vue +3 -3
  259. package/src/components/xform/form-designer/setting-panel/property-editor/showRuleFlag-editor.vue +1 -1
  260. package/src/components/xform/form-designer/setting-panel/property-editor/tempStorage-editor.vue +42 -0
  261. package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +305 -19
  262. package/src/components/xform/form-designer/setting-panel/property-editor/validation-editor.vue +2 -2
  263. package/src/components/xform/form-designer/setting-panel/property-editor/validationHint-editor.vue +2 -2
  264. package/src/components/xform/form-designer/setting-panel/property-editor/wfFlag-editor.vue +372 -50
  265. package/src/components/xform/form-designer/setting-panel/property-editor/widgetShowRuleFlag-editor.vue +263 -0
  266. package/src/components/xform/form-designer/setting-panel/propertyRegister.js +35 -11
  267. package/src/components/xform/form-designer/toolbar-panel/index.vue +12 -11
  268. package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +1 -1
  269. package/src/components/xform/form-designer/widget-panel/index.vue +21 -1
  270. package/src/components/xform/form-designer/widget-panel/indexMixin.js +19 -18
  271. package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +1724 -917
  272. package/src/components/xform/form-render/container-item/containerItemMixin.js +12 -11
  273. package/src/components/xform/form-render/container-item/data-table-item.vue +206 -198
  274. package/src/components/xform/form-render/container-item/data-table-mixin.js +22 -1685
  275. package/src/components/xform/form-render/container-item/detail-pane-item.vue +17 -3
  276. package/src/components/xform/form-render/container-item/grid-col-item.vue +10 -3
  277. package/src/components/xform/form-render/container-item/grid-item.vue +1 -1
  278. package/src/components/xform/form-render/container-item/list-h5-item.vue +1 -9
  279. package/src/components/xform/form-render/container-item/list-h5-item2.vue +1 -8
  280. package/src/components/xform/form-render/container-item/tab-item.vue +62 -25
  281. package/src/components/xform/form-render/container-item/table-cell-item.vue +38 -32
  282. package/src/components/xform/form-render/container-item/table-item.vue +4 -2
  283. package/src/components/xform/form-render/container-item/table2-cell-item.vue +53 -34
  284. package/src/components/xform/form-render/container-item/table2-item.vue +153 -92
  285. package/src/components/xform/form-render/container-item/tree-item.vue +32 -11
  286. package/src/components/xform/form-render/dynamicDialogRender.js +1 -1
  287. package/src/components/xform/form-render/index.vue +77 -20
  288. package/src/components/xform/form-render/indexMixin.js +24 -12
  289. package/src/components/xform/form-render/refMixin.js +3 -3
  290. package/src/components/xform/lang/zh-CN.js +29 -4
  291. package/src/components/xform/mixins/defaultHandle.js +3 -2
  292. package/src/components/xform/mixins/scriptHttp.js +3 -1
  293. package/src/components/xform/utils/emitter.js +4 -4
  294. package/src/components/xform/utils/formHttp.js +162 -0
  295. package/src/components/xform/utils/format.js +41 -34
  296. package/src/components/xform/utils/formula-util.js +966 -0
  297. package/src/components/xform/utils/util.js +5 -1
  298. package/src/components/xform/utils/validators.js +2 -5
  299. package/src/components/xform/utils/vue2js-generator.js +2 -2
  300. package/src/components/xhsPrint/index.js +44 -1
  301. package/src/components/xhsPrint/mixins.js +269 -1
  302. package/src/directive/LimitNumber/index.js +125 -1
  303. package/src/directive/el-dialog-center/index.js +34 -1
  304. package/src/directive/el-drag-dialog/drag.js +86 -1
  305. package/src/directive/el-readonly/index.js +15 -1
  306. package/src/directive/permission/hasPermi.js +34 -1
  307. package/src/index.js +215 -190
  308. package/src/lang/index.js +56 -51
  309. package/src/lang/locale/en/login.js +20 -0
  310. package/src/lang/locale/zh/login.js +20 -0
  311. package/src/layout/components/AppMain.vue +8 -1
  312. package/src/layout/components/Sidebar/default.vue +1423 -1222
  313. package/src/layout/components/TagsView/index.vue +37 -12
  314. package/src/layout/components/createCompany/createCompanyDialog.vue +157 -0
  315. package/src/layout/components/extractedCode/createDialog.vue +92 -0
  316. package/src/layout/components/extractedCode/queryDialog.vue +96 -0
  317. package/src/layout/components/extractedCode/viewDialog.vue +193 -0
  318. package/src/layout/components/watermark/index.vue +83 -0
  319. package/src/layout/defaultLayout.vue +1 -1
  320. package/src/mixins/selectDialog/index.js +266 -1
  321. package/src/mixins/tableTree/index.js +199 -4
  322. package/src/mixins/wf/index.js +33 -1
  323. package/src/permission.js +135 -18
  324. package/src/resources/js/base/common.js +109 -109
  325. package/src/router/modules/customer.js +0 -15
  326. package/src/router/modules/system.js +4 -0
  327. package/src/store/config/index.js +667 -1
  328. package/src/store/getters.js +3 -1
  329. package/src/store/modules/permission.js +46 -41
  330. package/src/store/modules/settings.js +1 -1
  331. package/src/store/modules/tagsView.js +5 -8
  332. package/src/store/modules/user.js +10 -16
  333. package/src/utils/aes.js +2 -1
  334. package/src/utils/auth.js +1 -1
  335. package/src/utils/global.js +1 -1
  336. package/src/utils/index.js +2 -3
  337. package/src/utils/keepAlive.js +1 -1
  338. package/src/utils/pddLog.js +92 -0
  339. package/src/utils/pdfUtil.js +71 -0
  340. package/src/utils/request.js +1 -1
  341. package/src/utils/vab.js +19 -27
  342. package/src/utils/validate.js +1 -1
  343. package/src/utils/wf.js +4 -4
  344. package/src/views/bd/setting/bd_attach_setting/edit.vue +5 -5
  345. package/src/views/bd/setting/bd_attach_setting/list.vue +28 -55
  346. package/src/views/bd/setting/bd_attach_setting/mixins/edit.js +4 -5
  347. package/src/views/bd/setting/bd_attach_setting/mixins/list.js +1 -1
  348. package/src/views/bd/setting/bd_company_env/dialog.vue +174 -0
  349. package/src/views/bd/setting/bd_company_env/edit.vue +193 -0
  350. package/src/views/bd/setting/bd_company_env/list.vue +175 -0
  351. package/src/views/bd/setting/config_manage/list.vue +83 -0
  352. package/src/views/bd/setting/form_import_log/edit.vue +127 -0
  353. package/src/views/bd/setting/form_import_log/list.vue +206 -0
  354. package/src/views/bd/setting/form_script/edit.vue +9 -0
  355. package/src/views/bd/setting/form_script/edit1.vue +36 -3
  356. package/src/views/bd/setting/form_script/form_list.vue +99 -37
  357. package/src/views/bd/setting/form_script/list1.vue +181 -118
  358. package/src/views/bd/setting/form_script/mixins/dialog.js +1 -7
  359. package/src/views/bd/setting/form_script/mixins/edit.js +1 -7
  360. package/src/views/bd/setting/form_script/mixins/edit1.js +1 -9
  361. package/src/views/bd/setting/form_script/mixins/form_list.js +1 -14
  362. package/src/views/bd/setting/form_script/mixins/list.js +1 -8
  363. package/src/views/bd/setting/form_script/mixins/list1.js +1 -14
  364. package/src/views/bd/setting/form_script/mixins/list2.js +1 -5
  365. package/src/views/bd/setting/form_script/mixins/otherAuthDialog.js +1 -0
  366. package/src/views/bd/setting/form_script/mixins/preformDialog.js +1 -3
  367. package/src/views/bd/setting/form_script/otherAuthDialog.vue +83 -0
  368. package/src/views/bd/setting/form_template/batchWfObjConfigDialog.vue +2 -2
  369. package/src/views/bd/setting/form_template/edit.vue +22 -1
  370. package/src/views/bd/setting/form_template/editWfObjConfigDialog.vue +2 -2
  371. package/src/views/bd/setting/form_template/list.vue +326 -214
  372. package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +2 -277
  373. package/src/views/bd/setting/form_template/mixins/edit.js +10 -9
  374. package/src/views/bd/setting/form_template/mixins/list.js +25 -22
  375. package/src/views/bd/setting/form_template/mixins/otherAuthDialog.js +7 -0
  376. package/src/views/bd/setting/form_template/mixins/wf_list.js +1 -423
  377. package/src/views/bd/setting/form_template/otherAuthDialog.vue +83 -0
  378. package/src/views/bd/setting/form_template/wfObjConfigDialog.vue +4 -4
  379. package/src/views/bd/setting/form_template/wf_list.vue +1 -1
  380. package/src/views/bd/setting/logic_param/edit.vue +146 -0
  381. package/src/views/bd/setting/logic_param/edit1.vue +106 -0
  382. package/src/views/bd/setting/logic_param/edit2.vue +139 -0
  383. package/src/views/bd/setting/logic_param/list.vue +74 -0
  384. package/src/views/bd/setting/logic_param/list1.vue +12 -0
  385. package/src/views/bd/setting/logic_param/list2.vue +12 -0
  386. package/src/views/bd/setting/logic_param/mixins/edit.js +3 -0
  387. package/src/views/bd/setting/logic_param/mixins/list.js +9 -0
  388. package/src/views/bd/setting/menu_kind/list.vue +172 -83
  389. package/src/views/bd/setting/menu_kind/mixins/authDialog.js +7 -7
  390. package/src/views/bd/setting/menu_kind/mixins/list.js +1 -1
  391. package/src/views/bd/setting/push_data/edit.vue +139 -0
  392. package/src/views/bd/setting/push_data/list.vue +283 -0
  393. package/src/views/bd/setting/push_data_h/edit.vue +153 -0
  394. package/src/views/bd/setting/push_data_h/list.vue +293 -0
  395. package/src/views/bd/setting/request_async_setting/edit.vue +320 -0
  396. package/src/views/bd/setting/request_async_setting/list.vue +372 -0
  397. package/src/views/bd/setting/request_setting/edit.vue +300 -0
  398. package/src/views/bd/setting/request_setting/list.vue +311 -0
  399. package/src/views/bd/setting/table_model/edit.vue +875 -426
  400. package/src/views/bd/setting/table_model/list.vue +190 -128
  401. package/src/views/bd/setting/table_model/mixins/dialog.js +1 -1
  402. package/src/views/bd/setting/table_model/mixins/edit copy.js +903 -0
  403. package/src/views/bd/setting/table_model/mixins/edit.js +14 -13
  404. package/src/views/bd/setting/table_model/mixins/list.js +14 -14
  405. package/src/views/bd/setting/table_model/mixins/otherAuthDialog.js +7 -0
  406. package/src/views/bd/setting/table_model/otherAuthDialog.vue +83 -0
  407. package/src/views/user/access_log/list.vue +418 -349
  408. package/src/views/user/area/dialog.vue +223 -117
  409. package/src/views/user/area/list.vue +318 -0
  410. package/src/views/user/bill_setting/edit.vue +1 -1
  411. package/src/views/user/bill_setting/list.vue +1 -1
  412. package/src/views/user/common_attribute/itemEdit.vue +2 -2
  413. package/src/views/user/common_attribute/list.vue +5 -2
  414. package/src/views/user/common_script/edit.vue +1 -1
  415. package/src/views/user/common_script/list.vue +1 -1
  416. package/src/views/user/company_info/dialog.vue +195 -163
  417. package/src/views/user/company_info/edit.vue +1 -1
  418. package/src/views/user/extend_datasource/dialog.vue +4 -0
  419. package/src/views/user/extend_datasource/edit.vue +5 -1
  420. package/src/views/user/extend_datasource/list.vue +5 -1
  421. package/src/views/user/fieldTranslation/editDialog.vue +7 -7
  422. package/src/views/user/fieldTranslation/list.vue +32 -32
  423. package/src/views/user/form/vform/designer.vue +776 -749
  424. package/src/views/user/form/vform/out_render.vue +1 -1
  425. package/src/views/user/form/vform/render.vue +59 -37
  426. package/src/views/user/form/view/edit.vue +38 -37
  427. package/src/views/user/form/view/list.vue +261 -49
  428. package/src/views/user/home/default.vue +1026 -979
  429. package/src/views/user/home/dev.vue +29 -0
  430. package/src/views/user/home/index.vue +16 -6
  431. package/src/views/user/login/default.vue +165 -36
  432. package/src/views/user/login/index.vue +4 -6
  433. package/src/views/user/login/indexMixin.js +186 -9
  434. package/src/views/user/menu/list.vue +24 -1
  435. package/src/views/user/notify_message/dialog.vue +44 -22
  436. package/src/views/user/notify_template/edit.vue +188 -187
  437. package/src/views/user/notify_template/edit2.vue +176 -0
  438. package/src/views/user/notify_template/list.vue +4 -1
  439. package/src/views/user/notify_template/list2.vue +190 -0
  440. package/src/views/user/outLink/form_view.vue +211 -211
  441. package/src/views/user/outLink/index.vue +67 -11
  442. package/src/views/user/position/list.vue +4 -4
  443. package/src/views/user/project_tag/dialog.vue +9 -4
  444. package/src/views/user/project_tag/edit.vue +2 -2
  445. package/src/views/user/project_tag/list.vue +9 -4
  446. package/src/views/user/push_setting/list.vue +2 -2
  447. package/src/views/user/request_setting/edit.vue +258 -0
  448. package/src/views/user/request_setting/list.vue +248 -0
  449. package/src/views/user/role/authConfig.vue +89 -0
  450. package/src/views/user/role/dialog.vue +70 -48
  451. package/src/views/user/role/edit.vue +609 -429
  452. package/src/views/user/role/list.vue +4 -4
  453. package/src/views/user/sale_org/dialog.vue +1 -1
  454. package/src/views/user/sale_org/list.vue +4 -1
  455. package/src/views/user/user/dialog.vue +46 -23
  456. package/src/views/user/user/edit.vue +1290 -1021
  457. package/src/views/user/user/form_dialog.vue +158 -0
  458. package/src/views/user/user/form_info.vue +210 -0
  459. package/src/views/user/user/list.vue +652 -563
  460. package/src/views/user/user/modifyPasswordDialog.vue +64 -53
  461. package/src/views/user/wf/wfReport/index.vue +619 -0
  462. package/src/views/user/wf/wf_auto_submit_data/list.vue +2 -0
  463. package/src/views/user/wf/wf_manage/list.vue +379 -250
  464. package/src/views/user/wf/wf_manage/wfContentDialog.vue +25 -22
  465. package/src/views/user/wf/wf_obj_config/importItemDialog.vue +109 -0
  466. package/src/views/user/wf/wf_obj_config/itemEdit.vue +25 -1
  467. package/src/views/user/wf/wf_obj_config/list.vue +114 -9
  468. package/src/views/user/wf/wf_obj_config/wfBizDataSettingDialog.vue +2 -2
  469. package/src/views/user/wf/wf_transfer_setting/edit.vue +282 -0
  470. package/src/views/user/wf/wf_transfer_setting/list.vue +319 -0
  471. package/src/utils/renderUtils.js +0 -76
@@ -8,7 +8,8 @@ modules = {
8
8
  },
9
9
  treeNodeArr: {
10
10
  type: Array
11
- }
11
+ },
12
+ option:Object
12
13
  },
13
14
  inject: ['current_prefix', 'getTitle'],
14
15
  components: {},
@@ -18,10 +19,14 @@ modules = {
18
19
  falseValue: false,
19
20
  vxeOption: {},
20
21
  showContent: true,
21
- attachmentDTO: {},
22
+ attachmentDTO: {
23
+ fileAttachAttributeDTOs:[]
24
+ },
25
+ fileAttachObjDTOs:[],
22
26
  // current_prefix: '',
23
27
  filePrefix: '',
24
- fileName: ''
28
+ fileName: '',
29
+ vxeOption2:{}
25
30
  };
26
31
  },
27
32
  watch: {
@@ -47,6 +52,7 @@ modules = {
47
52
  mounted() {
48
53
  this.getData();
49
54
  this.initTableM1();
55
+ this.initTableM2();
50
56
  },
51
57
  methods: {
52
58
  initFilePrefix() {
@@ -91,9 +97,10 @@ modules = {
91
97
  },
92
98
  reloadContent() {
93
99
  this.getAttributes();
100
+ this.getObjs();
94
101
  },
95
102
  getData() {
96
- this.$http({
103
+ this.$commonHttp({
97
104
  url: this.current_prefix + '/file_obj/get',
98
105
  method: 'post',
99
106
  data: {
@@ -104,6 +111,7 @@ modules = {
104
111
  success: res => {
105
112
  this.attachmentDTO = res.objx || {};
106
113
  this.getAttributes();
114
+ this.getObjs();
107
115
  }
108
116
  });
109
117
  },
@@ -121,6 +129,21 @@ modules = {
121
129
  }
122
130
  });
123
131
  },
132
+ getObjs() {
133
+ this.$http({
134
+ url: this.current_prefix + '/file_attach/obj/list',
135
+ method: 'post',
136
+ data: {
137
+ stringOne: this.attachmentDTO.fileSn
138
+ },
139
+ isLoading: true,
140
+ // modalStrictly: true,
141
+ success: res => {
142
+ // this.$set(this.attachmentDTO, 'fileAttachObjDTOs', res.objx || []);
143
+ this.fileAttachObjDTOs = res.objx || []
144
+ }
145
+ });
146
+ },
124
147
  initTableM1() {
125
148
  //明细
126
149
  var that = this;
@@ -187,6 +210,43 @@ modules = {
187
210
  temp = temp.toFixed(2);
188
211
  return temp + 'GB';
189
212
  }
213
+ },
214
+ initTableM2() {
215
+ //明细
216
+ var that = this;
217
+ const tableRef = 'table-m2';
218
+ const tableOption = {
219
+ vue: this,
220
+ tableRef: tableRef,
221
+ tableName: 'user_fileLibrary_propertiesDialog_list-m2',
222
+ columns: [
223
+ {
224
+ type: 'checkbox',
225
+ fixed: 'left',
226
+ width: 48,
227
+ resizable: false
228
+ },
229
+ {
230
+ title: this.$t1('关联对象编码'),
231
+ field: 'objSn',
232
+ width: 200
233
+ },
234
+ {
235
+ title: this.$t1('关联对象名称'),
236
+ field: 'objName',
237
+ width: 200
238
+ },
239
+ {
240
+ width: 50,
241
+ fixed: 'right',
242
+ title: '',
243
+ sortable: false
244
+ }
245
+ ]
246
+ };
247
+ this.$vxeTableUtil.initVxeTable(tableOption).then(opts => {
248
+ this.vxeOption2 = opts;
249
+ });
190
250
  }
191
251
  }
192
252
  };
@@ -1,4 +1,4 @@
1
- import ElImageViewer from '../../../components/VabUpload/image-viewer';
1
+ import ElImageViewer from '@base/components/VabUpload/image-viewer';
2
2
  import recycleBinPropertiesDialog from "../recycleBinPropertiesDialog";
3
3
  import categoryMoveDialog from '../categoryMoveDialog'
4
4
 
@@ -253,7 +253,7 @@ modules = {
253
253
  current: 1,
254
254
  size: this.pageSize
255
255
  };
256
- this.$http({
256
+ this.$commonHttp({
257
257
  method: 'post',
258
258
  url: this.current_prefix + '/file_recovery/listPage',
259
259
  data: {
@@ -367,7 +367,7 @@ modules = {
367
367
  field: "fileSn",
368
368
  width: 150
369
369
  },
370
- {title: this.$t2('删除人', 'components.fileLibrary.deleteBy'), field: 'createBy', width: 150},
370
+ {title: this.$t2('删除人', 'components.fileLibrary.deleteBy'), field: '_createBy', width: 150},
371
371
  {
372
372
  field: 'createDate',
373
373
  title: this.$t2('删除时间', 'components.fileLibrary.deleteDate'),
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <el-dialog
3
- :title="$t2('文件详情','components.fileLibrary.fileDetail')"
3
+ :title="$t2('文件详情', 'components.fileLibrary.fileDetail')"
4
4
  :append-to-body="true"
5
5
  :modal-append-to-body="falseValue"
6
6
  :close-on-click-modal="falseValue"
@@ -18,81 +18,97 @@
18
18
  <el-form ref="editForm" :model="attachmentDTO">
19
19
  <div class="d-header clearfix">
20
20
  <div class="fl">
21
- <i class="el-icon-info"/>
22
- {{ $t2('文件详情', 'components.fileLibrary.fileDetail') }}
21
+ <i class="el-icon-info" />
22
+ {{ $t2("文件详情", "components.fileLibrary.fileDetail") }}
23
23
  </div>
24
24
  <div class="fr">
25
- <el-button type="primary" class="button-sty" icon="el-icon-check" @click="saveData"
26
- v-if="isEdit && attachmentDTO.status!=1">{{ $t2('保存', 'system.button.save') }}
25
+ <el-button
26
+ type="primary"
27
+ class="button-sty"
28
+ icon="el-icon-check"
29
+ @click="saveData"
30
+ v-if="isEdit && attachmentDTO.status != 1"
31
+ >{{ $t2("保存", "system.button.save") }}
27
32
  </el-button>
28
33
  </div>
29
34
  </div>
30
35
  <baseTabs>
31
- <baseTabPane :label="$t2('基本信息','system.label.baseInfo')">
36
+ <baseTabPane :label="$t2('基本信息', 'system.label.baseInfo')">
32
37
  <template #default>
33
38
  <table class="table-detail">
34
39
  <tbody>
35
- <tr>
36
- <th>{{ $t2('文件路径', 'components.fileLibrary.filePath') }}</th>
37
- <td colspan="3">
38
- <el-breadcrumb separator-class="el-icon-arrow-right">
39
- <el-breadcrumb-item v-for="(pathName,index) in pathNameArr" :key="index">{{
40
- pathName
41
- }}
42
- </el-breadcrumb-item>
43
- </el-breadcrumb>
44
- </td>
45
- </tr>
46
- <tr>
47
- <th>
48
- {{ $t2('文件名称', 'components.fileLibrary.fileName') }}
49
- </th>
50
- <td colspan="3">
51
- <el-input v-model="fileName" clearable v-if="isEdit">
52
- <template slot="append">{{ filePrefix }}</template>
53
- </el-input>
54
- <template v-else>{{ attachmentDTO.fileName }}</template>
55
- </td>
56
- </tr>
57
- <tr>
58
- <th>{{ $t2('所属对象描述', 'components.fileLibrary.note') }}</th>
59
- <td colspan="3">{{ attachmentDTO.note }}</td>
60
- </tr>
61
- <tr>
62
- <th>{{ $t2('文件大小', 'components.fileLibrary.fileSize') }}</th>
63
- <td>{{ formatFileSize(attachmentDTO.fileSize) }}</td>
64
- <th>{{ $t2('版本号', 'components.fileLibrary.fileRev') }}</th>
65
- <td>{{ attachmentDTO.rev }}</td>
66
- </tr>
67
- <tr>
68
- <th>{{ $t2('分辨率', 'components.fileLibrary.widthHeight') }}</th>
69
- <td>{{ attachmentDTO.widthHeight }}</td>
70
- <th>{{ $t2('是否归档', 'components.fileLibrary.status') }}</th>
71
- <td>{{ attachmentDTO.status == 1 ? "已归档" : "未归档" }}</td>
72
- </tr>
73
- <!-- <tr>
40
+ <tr>
41
+ <th>{{ $t2("文件路径", "components.fileLibrary.filePath") }}</th>
42
+ <td colspan="3">
43
+ <el-breadcrumb separator-class="el-icon-arrow-right">
44
+ <el-breadcrumb-item
45
+ v-for="(pathName, index) in pathNameArr"
46
+ :key="index"
47
+ >{{ pathName }}
48
+ </el-breadcrumb-item>
49
+ </el-breadcrumb>
50
+ </td>
51
+ </tr>
52
+ <tr>
53
+ <th>
54
+ {{ $t2("文件名称", "components.fileLibrary.fileName") }}
55
+ </th>
56
+ <td colspan="3">
57
+ <el-input v-model="fileName" clearable v-if="isEdit">
58
+ <template slot="append">{{ filePrefix }}</template>
59
+ </el-input>
60
+ <template v-else>{{ attachmentDTO.fileName }}</template>
61
+ </td>
62
+ </tr>
63
+ <tr>
64
+ <th>{{ $t2("所属对象描述", "components.fileLibrary.note") }}</th>
65
+ <td colspan="3">{{ attachmentDTO.note }}</td>
66
+ </tr>
67
+ <tr>
68
+ <th>{{ $t1("文件类型名") }}</th>
69
+ <td colspan="3">
70
+ <b>{{ attachmentDTO.fileTypeName }}</b>
71
+ </td>
72
+ </tr>
73
+ <tr>
74
+ <th>{{ $t2("文件大小", "components.fileLibrary.fileSize") }}</th>
75
+ <td>{{ formatFileSize(attachmentDTO.fileSize) }}</td>
76
+ <th>{{ $t2("版本号", "components.fileLibrary.fileRev") }}</th>
77
+ <td>{{ attachmentDTO.rev }}</td>
78
+ </tr>
79
+ <tr>
80
+ <th>{{ $t2("分辨率", "components.fileLibrary.widthHeight") }}</th>
81
+ <td>{{ attachmentDTO.widthHeight }}</td>
82
+ <th>{{ $t2("是否归档", "components.fileLibrary.status") }}</th>
83
+ <td>{{ attachmentDTO.status == 1 ? "已归档" : "未归档" }}</td>
84
+ </tr>
85
+ <!-- <tr>
74
86
  <th>状态</th>
75
87
  <td>{{ attachmentDTO.status == 1 ? '归档' : '未归档' }}</td>
76
88
  </tr>-->
77
- <tr>
78
- <th>{{ $t2('文件编码', 'components.fileLibrary.fileSn') }}</th>
79
- <td colspan="3">{{ attachmentDTO.fileSn }}</td>
80
- </tr>
81
- <tr>
82
- <th>{{ $t2('创建人', 'system.label.createBy') }}</th>
83
- <td>{{ attachmentDTO.createBy }}</td>
84
- <th>{{ $t2('创建时间', 'system.label.createDate') }}</th>
85
- <td>{{ attachmentDTO.createDate }}</td>
86
- </tr>
89
+ <tr>
90
+ <th>{{ $t2("文件编码", "components.fileLibrary.fileSn") }}</th>
91
+ <td colspan="3">{{ attachmentDTO.fileSn }}</td>
92
+ </tr>
93
+ <tr>
94
+ <th>{{ $t2("创建人", "system.label.createBy") }}</th>
95
+ <td>{{ attachmentDTO._createBy }}</td>
96
+ <th>{{ $t2("创建时间", "system.label.createDate") }}</th>
97
+ <td>{{ attachmentDTO.createDate }}</td>
98
+ </tr>
87
99
  </tbody>
88
100
  </table>
89
101
  </template>
90
102
  </baseTabPane>
91
- <baseTabPane :label="$t2('文件属性','components.fileLibrary.fileAttribute')">
103
+ <baseTabPane :label="$t2('文件属性', 'components.fileLibrary.fileAttribute')">
92
104
  <template #button>
93
- <el-button class="button-sty" @click="addItem" icon="el-icon-plus"
94
- v-if="isEdit && attachmentDTO.status!=1">
95
- {{ $t2('新增文件属性', 'components.fileLibrary.addFileAttribute') }}
105
+ <el-button
106
+ class="button-sty"
107
+ @click="addItem"
108
+ icon="el-icon-plus"
109
+ v-if="isEdit && attachmentDTO.status != 1"
110
+ >
111
+ {{ $t2("新增文件属性", "components.fileLibrary.addFileAttribute") }}
96
112
  </el-button>
97
113
  </template>
98
114
  <template #default>
@@ -105,30 +121,53 @@
105
121
  @resizable-change="$vxeTableUtil.onColumnWitchChange"
106
122
  @custom="$vxeTableUtil.customHandle"
107
123
  >
108
- <template #attributeName="{row,rowIndex}">
109
- <el-form-item :prop="'fileAttachAttributeDTOs.' + rowIndex + '.attributeName'"
110
- :rules="[{ required: true, trigger: 'blur' }]">
111
- <el-input v-model="row.attributeName" clearable v-if="isEdit"/>
124
+ <template #attributeName="{ row, rowIndex }">
125
+ <el-form-item
126
+ :prop="'fileAttachAttributeDTOs.' + rowIndex + '.attributeName'"
127
+ :rules="[{ required: true, trigger: 'blur' }]"
128
+ >
129
+ <el-input v-model="row.attributeName" clearable v-if="isEdit" />
112
130
  <template v-else>{{ row.attributeName }}</template>
113
131
  </el-form-item>
114
132
  </template>
115
- <template #attributeValue="{row}">
116
- <el-input v-model="row.attributeValue" clearable v-if="isEdit"/>
133
+ <template #attributeValue="{ row }">
134
+ <el-input v-model="row.attributeValue" clearable v-if="isEdit" />
117
135
  <template v-else>{{ row.attributeValue }}</template>
118
136
  </template>
119
- <template #operate="{row,rowIndex}">
120
- <a class="a-link" @click="attachmentDTO.fileAttachAttributeDTOs.splice(rowIndex, 1)"
121
- v-if="isEdit">
122
- <el-tooltip :enterable="false" effect="dark"
123
- :content="$t2('删除','components.fileLibrary.delete')" placement="top"
124
- popper-class="tooltip-skin">
125
- <i class="el-icon-delete"/>
137
+ <template #operate="{ row, rowIndex }">
138
+ <a
139
+ class="a-link"
140
+ @click="attachmentDTO.fileAttachAttributeDTOs.splice(rowIndex, 1)"
141
+ v-if="isEdit"
142
+ >
143
+ <el-tooltip
144
+ :enterable="false"
145
+ effect="dark"
146
+ :content="$t2('删除', 'components.fileLibrary.delete')"
147
+ placement="top"
148
+ popper-class="tooltip-skin"
149
+ >
150
+ <i class="el-icon-delete" />
126
151
  </el-tooltip>
127
152
  </a>
128
153
  </template>
129
154
  </vxe-grid>
130
155
  </template>
131
156
  </baseTabPane>
157
+ <baseTabPane :label="$t1('文件关联对象')">
158
+ <template #button></template>
159
+ <template #default>
160
+ <vxe-grid
161
+ ref="table-m2"
162
+ class="vxe-tableNo"
163
+ height="224px"
164
+ :data="fileAttachObjDTOs"
165
+ v-bind="vxeOption2"
166
+ @resizable-change="$vxeTableUtil.onColumnWitchChange"
167
+ @custom="$vxeTableUtil.customHandle"
168
+ ></vxe-grid>
169
+ </template>
170
+ </baseTabPane>
132
171
  </baseTabs>
133
172
  </el-form>
134
173
  </div>
@@ -137,9 +176,9 @@
137
176
  </template>
138
177
 
139
178
  <script>
140
- import mixins from './mixins/propertiesDialogMixins';
179
+ import mixins from "./mixins/propertiesDialogMixins";
141
180
 
142
181
  export default {
143
- mixins: [mixins]
182
+ mixins: [mixins],
144
183
  };
145
184
  </script>
@@ -46,7 +46,7 @@
46
46
  </template>
47
47
 
48
48
  <script>
49
- import mixins from "../../components/fileLibrary/mixins/shareDialogMixins";
49
+ import mixins from "./mixins/shareDialogMixins";
50
50
 
51
51
  export default {
52
52
  mixins:[mixins]
@@ -1,4 +1,80 @@
1
1
  /**version-1.0*/
2
2
  let tmixins = {};
3
- function _0x389d(_0x5dd74b,_0x3285f4){const _0x3e917a=_0x3285();_0x389d=function(_0x91972,_0x4688a7){_0x91972=_0x91972-0x0;let _0x4fb995=_0x3e917a[_0x91972];if(_0x389d["\u0048\u0079\u0077\u004e\u0042\u0055"]===undefined){var _0x4baea9=function(_0x38424d){const _0x8dc113="\u0061\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006a\u006b\u006c\u006d\u006e\u006f\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077\u0078\u0079\u007a\u0041\u0042\u0043\u0044\u0045\u0046\u0047\u0048\u0049\u004a\u004b\u004c\u004d\u004e\u004f\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057\u0058\u0059\u005a\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037\u0038\u0039\u002b\u002f\u003d";let _0x1e3955='';let _0x6614b0='';for(let _0x4c82d3=0x0,_0x1c7451,_0x41a54c,_0x11aa4a=0x0;_0x41a54c=_0x38424d['charAt'](_0x11aa4a++);~_0x41a54c&&(_0x1c7451=_0x4c82d3%0x4?_0x1c7451*0x40+_0x41a54c:_0x41a54c,_0x4c82d3++%0x4)?_0x1e3955+=String["\u0066\u0072\u006f\u006d\u0043\u0068\u0061\u0072\u0043\u006f\u0064\u0065"](0xff&_0x1c7451>>(-0x2*_0x4c82d3&0x6)):0x0){_0x41a54c=_0x8dc113["\u0069\u006e\u0064\u0065\u0078\u004f\u0066"](_0x41a54c);}for(let _0x89e630=0x0,_0x5c9a2b=_0x1e3955["\u006c\u0065\u006e\u0067\u0074\u0068"];_0x89e630<_0x5c9a2b;_0x89e630++){_0x6614b0+="\u0025"+("\u0030\u0030"+_0x1e3955['charCodeAt'](_0x89e630)["\u0074\u006f\u0053\u0074\u0072\u0069\u006e\u0067"](0x10))["\u0073\u006c\u0069\u0063\u0065"](-0x2);}return decodeURIComponent(_0x6614b0);};const _0x584da6=function(_0x28ef15,_0x23b379){let _0x46495f=[],_0x29e3d6=0x0,_0x2f9949,_0x53cf68='';_0x28ef15=_0x4baea9(_0x28ef15);let _0x33f4c4;for(_0x33f4c4=0x0;_0x33f4c4<0x100;_0x33f4c4++){_0x46495f[_0x33f4c4]=_0x33f4c4;}for(_0x33f4c4=0x0;_0x33f4c4<0x100;_0x33f4c4++){_0x29e3d6=(_0x29e3d6+_0x46495f[_0x33f4c4]+_0x23b379['charCodeAt'](_0x33f4c4%_0x23b379["\u006c\u0065\u006e\u0067\u0074\u0068"]))%0x100;_0x2f9949=_0x46495f[_0x33f4c4];_0x46495f[_0x33f4c4]=_0x46495f[_0x29e3d6];_0x46495f[_0x29e3d6]=_0x2f9949;}_0x33f4c4=0x0;_0x29e3d6=0x0;for(let _0x2f635c=0x0;_0x2f635c<_0x28ef15["\u006c\u0065\u006e\u0067\u0074\u0068"];_0x2f635c++){_0x33f4c4=(_0x33f4c4+0x1)%0x100;_0x29e3d6=(_0x29e3d6+_0x46495f[_0x33f4c4])%0x100;_0x2f9949=_0x46495f[_0x33f4c4];_0x46495f[_0x33f4c4]=_0x46495f[_0x29e3d6];_0x46495f[_0x29e3d6]=_0x2f9949;_0x53cf68+=String["\u0066\u0072\u006f\u006d\u0043\u0068\u0061\u0072\u0043\u006f\u0064\u0065"](_0x28ef15["\u0063\u0068\u0061\u0072\u0043\u006f\u0064\u0065\u0041\u0074"](_0x2f635c)^_0x46495f[(_0x46495f[_0x33f4c4]+_0x46495f[_0x29e3d6])%0x100]);}return _0x53cf68;};_0x389d["\u004a\u0049\u0051\u0062\u006f\u0069"]=_0x584da6;_0x5dd74b=arguments;_0x389d["\u0048\u0079\u0077\u004e\u0042\u0055"]=!![];}const _0x465686=_0x3e917a[0x0];const _0x5cc499=_0x91972+_0x465686;const _0x389d85=_0x5dd74b[_0x5cc499];if(!_0x389d85){if(_0x389d["\u006d\u004c\u0051\u006b\u0053\u0056"]===undefined){_0x389d["\u006d\u004c\u0051\u006b\u0053\u0056"]=!![];}_0x4fb995=_0x389d["\u004a\u0049\u0051\u0062\u006f\u0069"](_0x4fb995,_0x4688a7);_0x5dd74b[_0x5cc499]=_0x4fb995;}else{_0x4fb995=_0x389d85;}return _0x4fb995;};return _0x389d(_0x5dd74b,_0x3285f4);}function WEeqdP(_0x343e8a,_0x3ace68){if(!![]!=![])return;WEeqdP=function(_0x9e2730,_0x4f30ad){_0x9e2730=_0x9e2730-(0x973c9^0x973c9);var _0x2c355c=_0x5e50e6[_0x9e2730];return _0x2c355c;};return WEeqdP(_0x343e8a,_0x3ace68);}WEeqdP();function _0x3285(){const _0x57c72d=["WCTk8nQkSMdlWE9omJcJ6W1qas".split("").reverse().join(""),"\u006a\u0067\u006e\u0056\u0042\u0077\u0031\u0056\u0042\u004b\u0048\u0030\u0044\u0068\u0061","iwv4HKEAbJm2KtmYiJm".split("").reverse().join(""),"\u0075\u0033\u0066\u0076\u0077\u0053\u006b\u0043\u0057\u004f\u005a\u0064\u0048\u0053\u006f\u0039\u0057\u0034\u0070\u0063\u0055\u0064\u006d","\u0074\u0053\u006f\u0052\u0062\u004b\u0038\u0044\u0057\u0036\u004f\u0036\u0042\u0032\u006c\u0063\u0051\u0061","\u0043\u0067\u0066\u0059\u007a\u0077\u0035\u0030\u0076\u0067\u0066\u0059\u007a\u0032\u0076\u0030","Xqhj".split("").reverse().join(""),"ZrNOd/4W".split("").reverse().join(""),"\u0057\u0034\u004b\u006d\u0042\u0061","\u0057\u0035\u005a\u0064\u0049\u0068\u0074\u0064\u0056\u0053\u006f\u0064","\u0057\u0035\u002f\u0063\u0052\u0071\u004b\u0059\u0057\u0051\u005a\u0063\u004c\u0074\u004a\u0063\u0050\u0057\u0030\u002f","\u006e\u005a\u004b\u0059\u006f\u0064\u0047\u0032\u006f\u0065\u0072\u0051\u0073\u004d\u0066\u0056\u007a\u0071","WAl9KsVPxn2udoZadn".split("").reverse().join(""),"LoSIcNGKd3vo".split("").reverse().join(""),"\u006c\u0032\u007a\u0056\u0043\u004d\u0031\u0046\u0042\u0033\u0062\u0053\u0042\u0032\u0043\u0056\u0042\u0067\u004c\u005a\u0044\u0066\u0062\u0048\u007a\u0032\u0075","G7WXkCScROWPk8Sctdksk8w".split("").reverse().join(""),"1+B5EwP5r6l5ogP5".split("").reverse().join(""),"NkSLdxRWZvuf".split("").reverse().join(""),"aHcRPWSkSbFkmQdROWwbvFRkmOdd5W".split("").reverse().join(""),"etBTugBIfgD".split("").reverse().join(""),"\u006d\u0074\u0075\u0059\u006e\u0074\u006d\u0030\u006e\u0033\u0048\u0030\u0042\u0066\u0048\u0078\u0072\u0071","\u0057\u0050\u0065\u0049\u0069\u0074\u0056\u0064\u0049\u0043\u006f\u004d\u0066\u0038\u006b\u0064\u0065\u0071","\u0057\u0035\u004e\u0063\u0048\u0047\u0068\u0064\u0047\u0038\u006b\u0054\u0043\u0057\u0074\u0063\u0055\u0057","\u0044\u0038\u006b\u006b\u0057\u0051\u006d\u0030","\u006d\u0074\u0061\u005a\u006d\u004c\u007a\u0069\u0079\u0078\u0062\u0034\u0076\u0047","Gk8UcxOWKk8Lc/fkukCu".split("").reverse().join(""),"\u0057\u0051\u006a\u0066\u0057\u0051\u006c\u0064\u004a\u0058\u0064\u0064\u004e\u0038\u006b\u0045\u0057\u0050\u004f\u0068\u0045\u0038\u006f\u0061\u0057\u004f\u0031\u007a","\u0067\u0076\u0050\u0051\u0057\u0051\u005a\u0064\u004c\u0053\u006b\u004e\u006b\u0063\u0042\u0064\u0048\u0053\u006f\u0045\u006e\u0053\u006b\u005a\u0041\u0053\u006f\u0064\u0067\u006d\u006f\u0079\u0042\u0058\u0066\u0052\u0057\u0051\u0034\u006b\u0057\u0036\u0042\u0064\u0050\u0064\u0068\u0064\u0048\u0043\u006b\u006d\u0057\u0052\u0043","\u0044\u0067\u0048\u004c\u0042\u0047","LXMyHrvz4zfDP5wA".split("").reverse().join(""),"\u0079\u0032\u0048\u004c\u0079\u0032\u0054\u0049\u0042\u0033\u0047","aEQj2B".split("").reverse().join(""),"\u007a\u0048\u0053\u0066\u0062\u006d\u006f\u0032","\u0057\u0034\u0034\u0063\u0045\u0049\u002f\u0063\u0047\u0061","0HxvMD1u4ydo".split("").reverse().join(""),"\u0057\u0050\u0042\u0064\u0048\u006d\u006f\u0063\u0057\u0051\u0034","\u006e\u0068\u0072\u005a\u0073\u004c\u007a\u0075\u0073\u0057","TkmSd3RWZrLh".split("").reverse().join(""),"\u006a\u0038\u006f\u006d\u0057\u0036\u002f\u0064\u004d\u0038\u006f\u0050\u0057\u0052\u0072\u0062\u0057\u004f\u0035\u0062","\u0057\u0052\u0052\u0064\u004b\u0038\u006b\u0042\u0077\u004b\u0047","\u0035\u0050\u006f\u006e\u0035\u006c\u0032\u0043\u0035\u0050\u0045\u0032\u0036\u007a\u0045\u0030","\u0057\u0052\u0068\u0064\u0056\u0038\u006b\u006a\u0065\u0058\u0074\u0063\u0048\u0043\u006b\u0057\u0057\u0037\u004a\u0063\u0053\u006d\u006f\u0042\u0057\u0052\u0065\u0034\u0078\u0072\u0053","G97W3ompgabzA04Wko8E".split("").reverse().join(""),"\u0063\u006d\u006f\u006f\u0057\u0036\u002f\u0064\u004e\u0038\u006f\u004c","\u0043\u004d\u0076\u004a\u0042\u0033\u006a\u004b\u0043\u0057","\u0041\u0067\u006a\u0053\u007a\u0032\u0076\u004b","OTubHkSeOkmFkm4WxW4W7omE".split("").reverse().join(""),"\u0057\u0052\u0069\u005a\u0057\u004f\u002f\u0064\u0051\u0047\u0043","qzLjNwRnho4aJm".split("").reverse().join(""),"\u0042\u004e\u007a\u0032\u0042\u0065\u0038","pbOWvkmAooCQdN2mo1OW".split("").reverse().join(""),"S5W5b6WffOWDomf".split("").reverse().join(""),"\u006d\u004a\u0065\u0059\u006e\u0064\u0075\u0030\u006e\u004b\u0050\u004f\u0077\u0077\u0044\u0058\u0041\u0057","7gz5XMl5tYl5zoP5".split("").reverse().join(""),"\u0057\u0036\u0033\u0063\u0055\u0038\u006f\u006e\u0074\u004d\u0069","\u0057\u004f\u0064\u0064\u0052\u0038\u006b\u004a\u0046\u0071"];_0x3285=function(){return _0x57c72d;};return _0x3285();}function _0x3e91(_0x5dd74b,_0x3285f4){const _0x3e917a=_0x3285();_0x3e91=function(_0x91972,_0x4688a7){_0x91972=_0x91972-0x0;let _0x4fb995=_0x3e917a[_0x91972];if(_0x3e91['sIqSHJ']===undefined){var _0x4baea9=function(_0x584da6){const _0x38424d="\u0061\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006a\u006b\u006c\u006d\u006e\u006f\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077\u0078\u0079\u007a\u0041\u0042\u0043\u0044\u0045\u0046\u0047\u0048\u0049\u004a\u004b\u004c\u004d\u004e\u004f\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057\u0058\u0059\u005a\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037\u0038\u0039\u002b\u002f\u003d";let _0x8dc113='';let _0x1e3955='';for(let _0x6614b0=0x0,_0x4c82d3,_0x1c7451,_0x41a54c=0x0;_0x1c7451=_0x584da6['charAt'](_0x41a54c++);~_0x1c7451&&(_0x4c82d3=_0x6614b0%0x4?_0x4c82d3*0x40+_0x1c7451:_0x1c7451,_0x6614b0++%0x4)?_0x8dc113+=String["\u0066\u0072\u006f\u006d\u0043\u0068\u0061\u0072\u0043\u006f\u0064\u0065"](0xff&_0x4c82d3>>(-0x2*_0x6614b0&0x6)):0x0){_0x1c7451=_0x38424d['indexOf'](_0x1c7451);}for(let _0x11aa4a=0x0,_0x89e630=_0x8dc113["\u006c\u0065\u006e\u0067\u0074\u0068"];_0x11aa4a<_0x89e630;_0x11aa4a++){_0x1e3955+="\u0025"+("00".split("").reverse().join("")+_0x8dc113['charCodeAt'](_0x11aa4a)['toString'](0x10))["\u0073\u006c\u0069\u0063\u0065"](-0x2);}return decodeURIComponent(_0x1e3955);};_0x3e91['JOqnaX']=_0x4baea9;_0x5dd74b=arguments;_0x3e91['sIqSHJ']=!![];}const _0x465686=_0x3e917a[0x0];const _0x5cc499=_0x91972+_0x465686;const _0x389d85=_0x5dd74b[_0x5cc499];if(!_0x389d85){_0x4fb995=_0x3e91["\u004a\u004f\u0071\u006e\u0061\u0058"](_0x4fb995);_0x5dd74b[_0x5cc499]=_0x4fb995;}else{_0x4fb995=_0x389d85;}return _0x4fb995;};return _0x3e91(_0x5dd74b,_0x3285f4);}function aMRPMY(_0x5c9a2b,_0x28ef15){if(!![]!=![])return;aMRPMY=function(_0x23b379,_0x46495f){_0x23b379=_0x23b379-(0x973c9^0x973c9);var _0x29e3d6=_0x5e50e6[_0x23b379];return _0x29e3d6;};return aMRPMY(_0x5c9a2b,_0x28ef15);}aMRPMY();function _0x288b4b(_0x283427,_0x13a5b2,_0x51c8df,_0x3cf497,_0x3b0150){return _0x389d(_0x283427-0x20a,_0x3b0150);}function _0x41c00f(_0x46130d,_0x4cb9c1,_0x409414,_0x2c2e54,_0xc1ebe0){return _0x389d(_0x46130d-0xac,_0x409414);}function _0x556db0(_0x4f4d19,_0x16072d,_0x4cb919,_0x13259e,_0x2c4c56){return _0x389d(_0x16072d-0x119,_0x2c4c56);}(function(_0x5b4577,_0x4733c4){function _0x370928(_0x4e7833,_0x1e53b4,_0xfaf736,_0xb8448f,_0x51b767){return _0x3e91(_0xfaf736- -0x1bd,_0x51b767);}function _0x6ba6f3(_0x56b881,_0x5b9a84,_0x3bfb09,_0x211dbd,_0x5c9679){return _0x389d(_0x3bfb09- -0x279,_0x5b9a84);}function _0x3913eb(_0x261017,_0x1e81e4,_0x3b57e1,_0x22ff6a,_0x181f51){return _0x389d(_0x3b57e1-0x16c,_0x261017);}function _0x2ad44e(_0x152185,_0x1145bd,_0x2a33a0,_0xe24121,_0x1fea10){return _0x3e91(_0x1145bd- -0x2cb,_0xe24121);}function _0x53d5fc(_0x59d0ab,_0x29645a,_0x43e6aa,_0x24b455,_0x23dd17){return _0x389d(_0x23dd17- -0x178,_0x59d0ab);}function _0x2d7eec(_0xe9a6ef,_0x3011a5,_0x2d3048,_0xc49841,_0x25e28f){return _0x389d(_0xc49841- -0x25a,_0xe9a6ef);}function _0x1d8882(_0x2acf85,_0x269b59,_0x44eb77,_0x1b06e8,_0x592d31){return _0x3e91(_0x1b06e8-0x223,_0x2acf85);}function _0x26e5b6(_0x3fc4cf,_0x3c0f50,_0x4288a8,_0x3610a5,_0x51069c){return _0x3e91(_0x3610a5- -0x171,_0x51069c);}const _0x180b10=_0x5b4577();function _0x57cf4d(_0x5f3f77,_0x1beec2,_0x469a51,_0x538ece,_0xfc12ba){return _0x3e91(_0x5f3f77-0x140,_0x469a51);}do{try{const _0x365d8c=-parseInt(_0x53d5fc("\u0066\u0045\u0049\u0059",-0x16e,-0x159,-0x162,-0x15b))/0x1*(-parseInt(_0x53d5fc("\u0066\u0045\u0049\u0059",-0x155,-0x174,-0x14c,-0x165))/0x2)+parseInt(_0x1d8882(0x230,0x23d,0x22f,0x223,0x213))/0x3+-parseInt(_0x53d5fc("*lU&".split("").reverse().join(""),-0x156,-0x158,-0x13b,-0x141))/0x4*(-parseInt(_0x57cf4d(0x150,0x144,0x168,0x138,0x13a))/0x5)+parseInt(_0x1d8882(0x217,0x220,0x218,0x232,0x227))/0x6+-parseInt(_0x2d7eec("\u0069\u0058\u0051\u0036",-0x242,-0x228,-0x22c,-0x235))/0x7*(parseInt(_0x57cf4d(0x15c,0x14b,0x150,0x172,0x168))/0x8)+parseInt(_0x1d8882(0x24a,0x256,0x233,0x23b,0x231))/0x9+-parseInt(_0x370928(-0x1a0,-0x1a5,-0x1b7,-0x1ca,-0x1bc))/0xa;if(_0x365d8c===_0x4733c4){break;}else{_0x180b10['push'](_0x180b10["\u0073\u0068\u0069\u0066\u0074"]());}}catch(_0x28d5d5){_0x180b10['push'](_0x180b10['shift']());}}while(!![]);})(_0x3285,0xa1d2b);function _0x36574e(_0xa044a,_0x31f45f,_0x3f6920,_0x13d5ed,_0x17891c){return _0x3e91(_0x13d5ed-0x336,_0x17891c);}tmixins={'props':[_0x41c00f(0xd5,0xeb,"\u0035\u0071\u0048\u0045",0xef,0xf0),_0x41c00f(0xaf,0xb4,"rb3j".split("").reverse().join(""),0xb8,0x9f),_0x36574e(0x35a,0x341,0x339,0x33f,0x346),_0x556db0(0x115,0x12e,0x147,0x124,"\u0035\u0071\u0048\u0045")],"\u0064\u0061\u0074\u0061"(){return{"\u006f\u0070\u006c\u006f\u0067\u0044\u0054\u004f\u0073":[],"\u006d\u0031\u004f\u0070\u0074\u0069\u006f\u006e":{}};},"\u0063\u006f\u006d\u0070\u0075\u0074\u0065\u0064":{'target':function(){return this["\u0070\u0061\u0072\u0065\u006e\u0074\u0054\u0061\u0072\u0067\u0065\u0074"]||this;}},"\u006d\u006f\u0075\u006e\u0074\u0065\u0064"(){this['initOplogDTOs']();},"\u006d\u0065\u0074\u0068\u006f\u0064\u0073":{'initOplogDTOs'(){function _0x376558(_0x16104b,_0x3ccdba,_0x52418c,_0x3609da,_0x4b1553){return _0x3e91(_0x4b1553-0x7b,_0x3609da);}const _0x4a686d={"\u0052\u0079\u0079\u006a\u0066":_0x32f3b6(-0x14c,-0x153,-0x13a,-0x123,-0x13c),"\u004e\u0045\u0048\u0042\u004c":_0x5f42de(0x17e,0x17e,"Hs5l".split("").reverse().join(""),0x16c,0x177)};function _0x4cf662(_0x35d15e,_0x18c2ad,_0x20f511,_0x3fd4c0,_0x427b0e){return _0x389d(_0x20f511- -0x306,_0x35d15e);}function _0x32f3b6(_0x2cd48c,_0x6a3e69,_0x35daa1,_0x59b568,_0x2939f3){return _0x3e91(_0x2939f3- -0x171,_0x35daa1);}let _0x2036d4;function _0x18548e(_0x1c8758,_0x3b8e26,_0x1a8e9c,_0x521583,_0x522cf5){return _0x3e91(_0x521583-0x1f4,_0x3b8e26);}const _0x1be423={'vue':this,"\u0074\u0061\u0062\u006c\u0065\u0052\u0065\u0066":_0x32f3b6(-0x15f,-0x16c,-0x141,-0x147,-0x15a),"\u0074\u0061\u0062\u006c\u0065\u004e\u0061\u006d\u0065":_0x5f42de(0x18a,0x178,"EHq5".split("").reverse().join(""),0x18c,0x189),"\u0063\u006f\u006c\u0075\u006d\u006e\u0073":[{"\u0074\u0079\u0070\u0065":_0x165fd4(-0x241,-0x23c,-0x230,-0x229,-0x219),"\u0066\u0069\u0078\u0065\u0064":_0x5f42de(0x198,0x1ad,"@7L3".split("").reverse().join(""),0x198,0x191),"\u0077\u0069\u0064\u0074\u0068":0x30,"\u0072\u0065\u0073\u0069\u007a\u0061\u0062\u006c\u0065":![]},{"\u0074\u0069\u0074\u006c\u0065":this['$t1'](_0x32f3b6(-0x132,-0x14e,-0x141,-0x142,-0x145)),"\u0066\u0069\u0065\u006c\u0064":_0x5ec843("\u0070\u0062\u0030\u0064",-0x3a5,-0x3ab,-0x3a2,-0x394),"\u0077\u0069\u0064\u0074\u0068":0x96},{"\u0074\u0069\u0074\u006c\u0065":this['$t1'](_0x5ec843("cwm0".split("").reverse().join(""),-0x3a3,-0x3b2,-0x3cc,-0x3a7)),"\u0066\u0069\u0065\u006c\u0064":_0x3fb928("1JP6".split("").reverse().join(""),0x254,0x253,0x237,0x23c),"\u0077\u0069\u0064\u0074\u0068":0x96},{"\u0074\u0069\u0074\u006c\u0065":this['$t1'](_0x3fb928("SfKw".split("").reverse().join(""),0x23d,0x216,0x23e,0x226)),"\u0066\u0069\u0065\u006c\u0064":_0x5ec843("\u0032\u0030\u005e\u0058",-0x3b2,-0x3a5,-0x3bc,-0x3a4),"\u0077\u0069\u0064\u0074\u0068":0x96},{'width':0x2f,"\u0066\u0069\u0078\u0065\u0064":_0x4a686d['NEHBL'],'title':'',"\u0073\u006f\u0072\u0074\u0061\u0062\u006c\u0065":![]}]};_0x2036d4=0x7+0x9;function _0x165fd4(_0x339a25,_0x1a40bb,_0x68646b,_0x72cfe,_0x47b01d){return _0x3e91(_0x72cfe- -0x24b,_0x339a25);}function _0x5ec843(_0x376cf2,_0x10011a,_0x3133f4,_0x31564c,_0x5dd0aa){return _0x389d(_0x3133f4- -0x3b3,_0x376cf2);}function _0x543247(_0x6e0f21,_0x5d1276,_0x4d8498,_0x503e3d,_0x31ff0d){return _0x389d(_0x6e0f21-0x30d,_0x31ff0d);}function _0x5f42de(_0x1d93b4,_0x542e23,_0x627891,_0x4155a5,_0x4ad895){return _0x389d(_0x4ad895-0x16a,_0x627891);}function _0x3fb928(_0x5dfbc5,_0x566b3f,_0xf39a93,_0x4ca14f,_0x2651e0){return _0x389d(_0x2651e0-0x212,_0x5dfbc5);}this['$vxeTableUtil']["\u0069\u006e\u0069\u0074\u0056\u0078\u0065\u0054\u0061\u0062\u006c\u0065"](_0x1be423)["\u0074\u0068\u0065\u006e"](_0x590037=>{function _0x1aca48(_0x2af683,_0x6151ba,_0x406a45,_0x5c7a4b,_0x5a0f79){return _0x389d(_0x406a45- -0x340,_0x6151ba);}if(_0x4a686d['Ryyjf']===_0x1aca48(-0x356,"\u0077\u004b\u0066\u0053",-0x33e,-0x331,-0x348)){this["\u006d\u0031\u004f\u0070\u0074\u0069\u006f\u006e"]=_0x590037;}else{return this["\u0070\u0061\u0072\u0065\u006e\u0074\u0054\u0061\u0072\u0067\u0065\u0074"]||this;}});},"\u0069\u006e\u0069\u0074\u0044\u0061\u0074\u0061"(_0x1f57a1){const _0x1bc46a={'viOCV':_0x29ed4c(-0x226,-0x23e,-0x23a,-0x239,-0x23f)};var _0x545d63=0x5+0x8;let _0x1d30d5=_0x1f57a1['param']?_0x1f57a1['param']():{};function _0x29ed4c(_0x370aaf,_0x51c7cc,_0x3d9fbf,_0x3fc1a9,_0x3f44ac){return _0x3e91(_0x3d9fbf- -0x24c,_0x51c7cc);}_0x545d63=0x8+0x2;let _0x13ac4b;let _0x472471=_0x1f57a1['url']||USER_PREFIX+_0x1bc46a["\u0076\u0069\u004f\u0043\u0056"];function _0x3fff32(_0x1792b9,_0x40553b,_0x1c3bcc,_0x3d7186,_0x55f3c5){return _0x3e91(_0x3d7186- -0x23c,_0x1c3bcc);}_0x13ac4b=_0x29ed4c(-0x202,-0x20d,-0x21b,-0x231,-0x228);function _0x1fffbb(_0x1e6606,_0x2fd228,_0x2dcbca,_0x44e96d,_0x305aa0){return _0x389d(_0x44e96d- -0x10a,_0x305aa0);}this['target']['$commonHttp']({"\u0061\u0065\u0073":!![],'url':_0x472471,"\u006d\u0065\u0074\u0068\u006f\u0064":_0x1fffbb(-0xfe,-0xed,-0xda,-0xef,"\u0065\u004e\u0025\u004e"),"\u0064\u0061\u0074\u0061":{..._0x1d30d5,"\u0073\u0065\u0061\u0072\u0063\u0068\u0043\u006f\u0075\u006e\u0074":![]},"\u0069\u0073\u004c\u006f\u0061\u0064\u0069\u006e\u0067":!![],'modalStrictly':!![],"\u0073\u0075\u0063\u0063\u0065\u0073\u0073":_0x3668a4=>{var _0x5e4313=0x6+0x0;let _0x3447bc=_0x3668a4["\u006f\u0062\u006a\u0078"]?_0x3668a4["\u006f\u0062\u006a\u0078"]['records']||_0x3668a4['objx']||[]:[];_0x5e4313=0x7;this['oplogDTOs']=_0x3447bc;}});}}};
3
+ tmixins = {
4
+ props: ["dataId", "type", "parentTarget", 'option'],
5
+ data() {
6
+ return {
7
+ oplogDTOs: [],
8
+ m1Option: {}
9
+ };
10
+ },
11
+ computed: {
12
+ target: function () {
13
+ return this.parentTarget || this;
14
+ }
15
+ },
16
+ mounted() {
17
+ this.initOplogDTOs();
18
+ },
19
+ methods: {
20
+ initOplogDTOs() {
21
+ const tableOption = {
22
+ vue: this,
23
+ tableRef: 'table-m1',
24
+ tableName: 'component-form_oplog-m1Grid',
25
+ columns: [{
26
+ type: 'checkbox',
27
+ fixed: 'left',
28
+ width: 48,
29
+ resizable: false
30
+ },
31
+ {
32
+ title: this.$t1('操作时间'),
33
+ field: 'createDate',
34
+ width: 150
35
+ },
36
+ {
37
+ title: this.$t1('操作人员'),
38
+ field: 'createBy',
39
+ width: 150
40
+ },
41
+ {
42
+ title: this.$t1('操作日志'),
43
+ field: 'logContent',
44
+ width: 150
45
+ },
46
+ {
47
+ width: 47,
48
+ fixed: 'right',
49
+ title: '',
50
+ sortable: false
51
+ }
52
+ ]
53
+ };
54
+ this.$vxeTableUtil.initVxeTable(tableOption).then(opts => {
55
+ this.m1Option = opts;
56
+ });
57
+
58
+ },
59
+ initData(option) {
60
+ let data = option.param ? option.param() : {};
61
+ let url = option.url || (USER_PREFIX + '/form_oplog/listPage');
62
+ this.target.$commonHttp({
63
+ aes: true,
64
+ url: url,
65
+ method: `post`,
66
+ data: {
67
+ ...data,
68
+ searchCount: false
69
+ },
70
+ isLoading: true,
71
+ modalStrictly: true,
72
+ success: res => {
73
+ let rows = res.objx ? (res.objx.records || res.objx || []) : [];
74
+ this.oplogDTOs = rows;
75
+ }
76
+ });
77
+ },
78
+ }
79
+ };
4
80
  export const mixins = tmixins