agilebuilder-ui 1.1.65-tmp23 → 1.1.65-tmp24

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 (80) hide show
  1. package/dist/index.full.min.js +462 -281
  2. package/dist/style.css +181 -175
  3. package/es/chat-embed/src/chat-sender.vue.mjs +1 -1
  4. package/es/chat-embed/src/chat-sender.vue2.mjs +26 -28
  5. package/es/chat-embed/src/index.vue.mjs +1 -1
  6. package/es/chat-embed/src/index.vue2.mjs +29 -29
  7. package/es/department-tree-mobile/src/department-tree-inline-app.vue.mjs +68 -68
  8. package/es/department-tree-mobile/src/department-tree-service.mjs +20 -18
  9. package/es/department-tree-mobile/src/dept-result.vue.mjs +12 -11
  10. package/es/department-user-tree-inline/src/department-user-single-tree-inline.vue.mjs +3 -3
  11. package/es/department-user-tree-inline/src/department-user-tree-inline.vue.mjs +6 -6
  12. package/es/department-user-tree-inline/src/department-user-tree-single-service.mjs +1 -1
  13. package/es/fs-preview/src/fs-preview.vue.mjs +26 -18
  14. package/es/fs-upload-new/src/file-upload-mobile/file-upload-browser.vue.mjs +1 -1
  15. package/es/fs-upload-new/src/file-upload-mobile/file-upload-input.vue.mjs +1 -1
  16. package/es/index.mjs +2 -1
  17. package/es/src/components/Card/index.mjs +34 -31
  18. package/es/src/components/Scrollbar/index.vue.mjs +6 -6
  19. package/es/src/i18n/langs/cn.mjs +1 -1
  20. package/es/src/i18n/langs/en.mjs +1 -1
  21. package/es/src/utils/common-util.mjs +47 -39
  22. package/es/style.css +738 -732
  23. package/es/super-grid/src/apis.mjs +199 -173
  24. package/es/super-grid/src/components/mobile-table-card.mjs +53 -53
  25. package/es/super-grid/src/normal-column-content.vue.mjs +12 -12
  26. package/es/super-grid/src/normal-column.vue.mjs +4 -5
  27. package/es/super-grid/src/search-button.vue.mjs +4 -2
  28. package/es/super-grid/src/search-form-dialog.vue.mjs +22 -11
  29. package/es/super-grid/src/search-form-item.vue.mjs +5 -5
  30. package/es/super-grid/src/search-form-mobile.vue.mjs +19 -19
  31. package/es/super-grid/src/search-form-open.vue.mjs +5 -3
  32. package/es/super-grid/src/search-form-ordinarySearch.vue.mjs +3 -1
  33. package/es/super-grid/src/search-form.vue.mjs +19 -13
  34. package/es/super-grid/src/super-grid.vue.mjs +271 -209
  35. package/es/super-grid/src/utils.mjs +346 -300
  36. package/es/utils/organization.mjs +24 -11
  37. package/lib/chat-embed/src/chat-sender.vue.cjs +1 -1
  38. package/lib/chat-embed/src/chat-sender.vue2.cjs +44 -46
  39. package/lib/chat-embed/src/index.vue.cjs +1 -1
  40. package/lib/chat-embed/src/index.vue2.cjs +14 -14
  41. package/lib/department-tree-mobile/src/department-tree-inline-app.vue.cjs +58 -58
  42. package/lib/department-tree-mobile/src/department-tree-service.cjs +10 -8
  43. package/lib/department-tree-mobile/src/dept-result.vue.cjs +10 -10
  44. package/lib/department-user-tree-inline/src/department-user-single-tree-inline.vue.cjs +16 -16
  45. package/lib/department-user-tree-inline/src/department-user-tree-inline.vue.cjs +5 -5
  46. package/lib/department-user-tree-inline/src/department-user-tree-single-service.cjs +1 -1
  47. package/lib/fs-preview/src/fs-preview.vue.cjs +13 -5
  48. package/lib/fs-upload-new/src/file-upload-mobile/file-upload-browser.vue.cjs +1 -1
  49. package/lib/fs-upload-new/src/file-upload-mobile/file-upload-input.vue.cjs +13 -13
  50. package/lib/index.cjs +7 -7
  51. package/lib/src/components/Card/index.cjs +14 -11
  52. package/lib/src/components/Scrollbar/index.vue.cjs +2 -2
  53. package/lib/src/i18n/langs/cn.cjs +1 -1
  54. package/lib/src/i18n/langs/en.cjs +1 -1
  55. package/lib/src/utils/common-util.cjs +24 -17
  56. package/lib/style.css +665 -659
  57. package/lib/super-grid/src/apis.cjs +190 -164
  58. package/lib/super-grid/src/components/mobile-table-card.cjs +37 -37
  59. package/lib/super-grid/src/normal-column-content.vue.cjs +2 -2
  60. package/lib/super-grid/src/normal-column.vue.cjs +10 -11
  61. package/lib/super-grid/src/search-button.vue.cjs +3 -1
  62. package/lib/super-grid/src/search-form-dialog.vue.cjs +19 -8
  63. package/lib/super-grid/src/search-form-item.vue.cjs +2 -2
  64. package/lib/super-grid/src/search-form-mobile.vue.cjs +7 -7
  65. package/lib/super-grid/src/search-form-open.vue.cjs +7 -5
  66. package/lib/super-grid/src/search-form-ordinarySearch.vue.cjs +3 -1
  67. package/lib/super-grid/src/search-form.vue.cjs +15 -10
  68. package/lib/super-grid/src/super-grid.vue.cjs +220 -158
  69. package/lib/super-grid/src/utils.cjs +349 -274
  70. package/lib/utils/organization.cjs +35 -24
  71. package/package.json +1 -1
  72. package/src/components/Card/index.jsx +12 -2
  73. package/src/components/Scrollbar/index.vue +165 -154
  74. package/src/i18n/langs/cn.js +10 -2
  75. package/src/i18n/langs/en.js +10 -2
  76. package/src/styles/index.scss +9 -2
  77. package/src/styles/theme/default.scss +18 -13
  78. package/src/styles/theme/tiffany-blue-mobile/home.scss +44 -1
  79. package/src/utils/auth-api.js +1 -0
  80. package/src/utils/common-util.js +13 -0
@@ -1,4 +1,4 @@
1
- const e = { imatrixUIPublicModel: { sure: "Sure", cancel: "Cancel", allDepartments: "All Departments", allUsers: "All Users", reset: "Reset", to: "To", edit: "Edit", clear: "Clear", download: "Download", delete: "Delete", preview: "Preview", add: "Add", more: "More", graphView: "Graphic view", listView: "List View", fieldName: "Field Name", operator: "Operator", value: "Value", andOr: "And/Or", whenTheVariableIsEmpty: "When The Variable Is Empty", perhaps: "Perhaps", also: "Also", greaterThan: "Greater Than", lessThan: "Less Than", beEqualTo: "Be Equal To", notGreaterThan: "Not Greater Than", notLessThan: "Not Less Than", notEqualTo: "Not Equal To", contain: "Contain", notIncluded: "Not Included", laterThan: "Later Than", earlierThan: "Earlier Than", noLaterThan: "No Later Than", noEarlierThan: "No Earlier Than", ignore11: "Ignore (1 = 1)", nonConformity: "Non Conformity (1 < > 1)", switchToNormalQuery: "Switch To Normal Query", switchToAdvancedQuery: "Switch To Advanced Query", isNull: "Is Null", isNotNull: "Is Not Null", previewImage: "Preview image", fullScreen: "Full Screen", forbidden: "forbidden", startUsing: "Start Using", systemCode: "System Code", code: "Code", emptyValue: "Empty Value", expand: "Expand", collapse: "Collapse", confirmClosePage: "Are you sure you want to close this page? Unsaved data will be lost." }, imatrixUIMessage: { whetherToConfirmDeletion: "Whether To Confirm Deletion", tips: "Tips", pleaseEnterContent: "Please Enter Content", internalServerError: "Server error", pleaseSelectDepartment: "Please Select Department", pleaseSelectPersonnel: "Please Select Personnel", pleaseRemoveallpersonnelBeforeSelectingSpecificPersonnel: "Please Remove All Personnel Before Selecting Specific Personnel", queryResultIsEmpty: "Query Result Is Empty", pleaseSelectATeam: "Please Select A Team", pleaseEnterTeamName: "Please Enter Team Info Filter", validationFailed: "Validation Failed", selectionDate: "Selection Date", selectTime: "Select Time", pleaseEnterATimePoint: "Please Enter A Time Point", pleaseSelect: "Please Select", startDate: "Start Date", endDate: "End Date", noExportColumnsConfigured: "No Export Columns Configured", organizationTreeNoResultNotRemove: "No information selected, no need to remove", exceedFileSize: "File size limit {filesize} M exceeded", upload: "Upload", invalideDoubleValue: "{num} is not a legal decimal", noJumpPage: "Jump page not configured", saveSuccessfully: "Savee successfully", pleaseInputSearchCondition: "Please enter the query criteria", fileUpload: "File Upload", selectYear: "Select Year", search: "Search", forbiddenException: "You do not have permission to access", theButtonIsNotBoundToAResource: "The button is not bound to a resource, Bind the resource first", asyncExport: "Asynchronous export, please wait for message notification!", selectedWorkingGroup: "Selected working group", forbiddenExceptionLinkUrl: "please click to apply", forbiddenExceptionLinkUser: "if you have any questions,please contact", uploadFileTip: "The file size should lower {fileSize}M", asyncExportJumpMsg: "Or click me to jump to download page.", mustFill: "{label} must fill", filePathNotFound: "File UUID not found, please check the configuration", pleaseSelectDeleteData: "Please select the data to delete" }, superGrid: { editablePlaceholder: "Please click to input", rowEditMessageBox: { title: "Operation Confirmation", content: "There are unsaved modifications in the current row. Do you want to save the modifications and switch?", confirmButton: "Save edit", cancelButton: "Discard edit" }, columnConfig: "Column Config", pleaseSaveOrCancelEditingLine: "Please Save Or Cancel Editing Line {row} Data First", pleaseSaveLine: "Please Save Line {row} Data First", noNeedToSaveRow: "No Need To Save Row {row} Data", pleaseSetURLToSaveRowInformation: 'Please set "URL to save row information"', lineSavedSuccessfully: "Line {row} Saved Successfully", theReturnValueOfTheBeforesaveCallbackMethodIsFalse: "The Return Value Of The Beforesave Callback Method Is False", lineNoNeedToUndoEdit: "Line {row} No Need To Undo Edit", lineCancelledSuccessfully: "Line {row} cancelled successfully", label: "Label", isShow: "Is Show", isExportable: "Is Exportable", recordLine: "Record line {row}", pageRecordLine: "Record in row {row} of page {pageNum}", fileName: "File Name", deleteSuccessful: "Deleted successfully", index: "No.", searchConditionName: "Search Condition Name", pleaseInputSearchConditionName: "Please enter the name of the query criteria", saveCondition: "Save Condition", saveConditionTitle: "Save Condition", displayOrder: "Display Order", searchDisplayOrder: "Search Display Order", width: "Column Width", default: "Default", custom: "Custom", show: "Show", hidden: "Hidden", export: "Export", unExport: "Not Export", whetherToConfirmReset: "Are you sure you want to reset?", resetSuccessful: "Reset successfully", dragColumnOrderMessage: "Supports dragging to change column order", selectAll: "Select All", viewImage: "View Image", previewTitleWhenNotImg: "Non picture format, preview in other ways", refresh: "Refresh", open: "Open", fold: "Fold", prevRow: "Prev Row", nextRow: "Next Row", detail: "Detail", searchEmpty: "Search Empty", canntAddTip: "Does not meet the new operation conditions, cannot perform the new operation, please check!", rowCanntDeleteTip: "Does not meet the delete operation conditions, cannot perform the delete operation, please check!", rowCanntEditTip: "Does not meet the edit operation conditions, cannot perform the edit operation, please check!" }, departmentTree: {}, departmentTreeInline: { pleaseEnterDepartmentName: "Please Enter Department Info Filter", name: "Department Name", code: "Department Code", removeDepartment: "Remove Department", selectedDept: "Selected Departments", namePath: "Name Path", allCheck: "Check All", pleaseInputNameOrCode: "Please Input Name Or Code", selectResultInfoHasSelect: "Has select:", selectResultInfo: "{num} departments (including sub departments)", selectResultTitle: "Has Select Result" }, departmentUserTree: { pleaseEnterUserInformation: "Please Enter User Information Filter", selectedPeople: "Selected People", searchFieldUserName: "Name", searchFieldLoginName: "Login Name", searchFieldEmail: "Email", searchFieldTelephone: "Telephone", searchFieldJobNumber: "Job Number", searchFieldHonorificName: "Honorific", selectUserResultInfo: "{useNum} Users", selectDeptResultInfo: "{num} departments(including sub departments)" }, departmentUserTreeInline: { name: "Name", department: "Department", branch: "Branch", removeUser: "Remove User", email: "Email", loginName: "Login Name", superiorDeptNameFullPath: "Department full path", user: "User", groupName: "Name", groupForm: "Group Form", groupList: "Group List", group: "Group", orgTree: "Organization Tree", groupNameNotEmpty: "Group name is required" }, workgroupTree: { allTeamMembers: "All Team Members", name: "Workgroup Name", code: "Workgroup Code", removeWorkgroup: "Remove Workgroup", workingGroupName: "Working Group Name", workingGroupNumber: "Working Group Number", workgroupDescription: "Workgroup Description", selectResultInfo: "{num} workgroups" }, workflowButton: { save: "Save", submit: "Submit", approve: "Approve", refuse: "Refuse", agreement: "Agree", oppose: "Opposition", kiken: "Abstention", get_back_button: "Retrieve", copy: "Copy", draw: "Draw", abandon_draw: "Give Up Draw", add_sign: "Additional Signature", remove_sign: "Reduction Of Signature", signoff: "Sign For", assign: "Hand over", assign_task: "Transfer", readed: "Readed", export_report: "Export Report", draw_dept_task: "Draw Department", abandon_draw_dept_task: "Give Up Draw Department" }, workflowHistoryList: { specailText: "specail", index: "Index", taskName: "Task Name", operation: "Operation", opinion: "Opinion", processStart: "Process Start", processEnd: "Process End", process_start: "[{1}] process start", prcoess_end: "[{1}] process End", force_end_process: "{key_1}forced to end the process, and the task of [{key_2}] was canceled", history_jump: "Process {key_3} to [{key_1}], [{key_2}] task cancelled", history_back: "{key_1} returned to task,process returned to [{key_2}]", history_removesign: "{key_1} minus [{key_2}]", history_changetransactor_and_delegate: "{key_1} changed the handler [{key_2}] to [{key_3}], [{key_4}] delegated the task to [{key_5}]", history_changetransactor: "{key_1} changed handler [{key_2}] to [{key_3}]", history_addsign: "{key_1} sign [{key_2}]", history_addtransactor: "{key_1} add handler [{key_2}]", history_removetransactor: "{key_1} decrease handler [{key_2}]", history_delegate_and_assign: "{key_1} assigned tasks to [{key_2}], [{key_3}] delegated tasks to [{key_4}]", history_assign: "{key_1} assigned task to [{key_2}]", transfer: "{key_1} transferred to [{key_2}]", history_complete_transfer: "{key_1} execute [{key_2}] operation and canceled the task of other receivers [{key_3}]", history_delegate_receive: "{key_1} retracts the task entrusted to [{key_2}]", history_delegate: "{key_1} has delegated task [{key_2}] to [{key_3}]", history_quit_transfer: "{key_1} Resignation, has transferred task [{key_2}] to [{key_3}", history_change_job_transfer: "{key_1} Change job,has transferred task [{key_2}] to [{key_3}", commonButtonOperation: "{key_1} execute [{key_2}] operation", history_draw_task: "{key_1} received the task and cancelled the task of the candidate [{key_2}]", history_abandon_draw: "{key_1} gives up the task and restores the task of candidate [{key_2}]", create_copy_task: "{key_1} The task was copied to [{key_2}", toDoText: "Todo", operator: "Operator", operatorLg: "Operator Login Name", operatorDept: "Operator Dept", operationTime: "Operation Time", history_draw_dept_task: "{key_1} Received tasks from department [{key_2}]", history_abandon_draw_dept_task: "{key_1} Abandon the task of receiving department [{key_2}]", remark: "remark", taskState: "Task State", processingDuration: "Processing Duration(H)", stayDuration: "Stay Duration", isOverdue: "Is Overdue", taskStateDoing: "Doing", taskStateDone: "Done" }, gateway: { timeout: "Interface call timeout", callFailed: "Interface call failed" }, superNineGrid: { add: "Create" }, fsUpload: { upload: "Upload", download: "Download", delete: "Delete", deleteSuccessful: "Delete successful", preview: "Preview", name: "Name", picture: "Picture", operating: "Operating", uploadSucceeded: "Upload succeeded", theNumberOfUploadsExceedsTheLimitTheLimitIs: "The number of uploads exceeds the limit. The limit is", image: "Image", video: "Video", updateSuccess: "Update success", more: "More", uploadFailed: "Upload failed!" }, messageVideo: { attemptingToIdentify: "Attempting to identify", callingRearCamera: "Calling rear camera", identificationFailed: "Identification failed" }, IntervalSelection: { year: "year", quarter: "quarter", auxiliary: "auxiliary word for ordinal numbers", week: "week", month: "month", day: "day", tian: "day", hour: "hour", minute: "minute", second: "second" }, imatrixUIPromptMessage: { NoContent: "No content" }, chatEmbed: { name: "AI Assistant", history: "History", minimize: "Minimize", fullscreen: "Full Screen", close: "Close", regenerate: "Regenerate", copy: "Copy", newChat: "New Chat", copySuccess: "Copy successful", requestFailed: "Request failed!" } };
1
+ const e = { imatrixUIPublicModel: { sure: "Sure", cancel: "Cancel", allDepartments: "All Departments", allUsers: "All Users", reset: "Reset", to: "To", edit: "Edit", clear: "Clear", download: "Download", delete: "Delete", preview: "Preview", add: "Add", more: "More", graphView: "Graphic view", listView: "List View", fieldName: "Field Name", operator: "Operator", value: "Value", andOr: "And/Or", whenTheVariableIsEmpty: "When The Variable Is Empty", perhaps: "Perhaps", also: "Also", greaterThan: "Greater Than", lessThan: "Less Than", beEqualTo: "Be Equal To", notGreaterThan: "Not Greater Than", notLessThan: "Not Less Than", notEqualTo: "Not Equal To", contain: "Contain", notIncluded: "Not Included", laterThan: "Later Than", earlierThan: "Earlier Than", noLaterThan: "No Later Than", noEarlierThan: "No Earlier Than", ignore11: "Ignore (1 = 1)", nonConformity: "Non Conformity (1 < > 1)", switchToNormalQuery: "Switch To Normal Query", switchToAdvancedQuery: "Switch To Advanced Query", isNull: "Is Null", isNotNull: "Is Not Null", previewImage: "Preview image", fullScreen: "Full Screen", forbidden: "forbidden", startUsing: "Start Using", systemCode: "System Code", code: "Code", emptyValue: "Empty Value", expand: "Expand", collapse: "Collapse", noData: "No Data", confirmClosePage: "Are you sure you want to close this page? Unsaved data will be lost.", noMoreData: "No more data" }, imatrixUIMessage: { whetherToConfirmDeletion: "Whether To Confirm Deletion", tips: "Tips", pleaseEnterContent: "Please Enter Content", internalServerError: "Server error", pleaseSelectDepartment: "Please Select Department", pleaseSelectPersonnel: "Please Select Personnel", pleaseRemoveallpersonnelBeforeSelectingSpecificPersonnel: "Please Remove All Personnel Before Selecting Specific Personnel", queryResultIsEmpty: "Query Result Is Empty", pleaseSelectATeam: "Please Select A Team", pleaseEnterTeamName: "Please Enter Team Info Filter", validationFailed: "Validation Failed", selectionDate: "Selection Date", selectTime: "Select Time", pleaseEnterATimePoint: "Please Enter A Time Point", pleaseSelect: "Please Select", startDate: "Start Date", endDate: "End Date", noExportColumnsConfigured: "No Export Columns Configured", organizationTreeNoResultNotRemove: "No information selected, no need to remove", exceedFileSize: "File size limit {filesize} M exceeded", upload: "Upload", invalideDoubleValue: "{num} is not a legal decimal", noJumpPage: "Jump page not configured", saveSuccessfully: "Savee successfully", pleaseInputSearchCondition: "Please enter the query criteria", fileUpload: "File Upload", selectYear: "Select Year", search: "Search", forbiddenException: "You do not have permission to access", theButtonIsNotBoundToAResource: "The button is not bound to a resource, Bind the resource first", asyncExport: "Asynchronous export, please wait for message notification!", selectedWorkingGroup: "Selected working group", forbiddenExceptionLinkUrl: "please click to apply", forbiddenExceptionLinkUser: "if you have any questions,please contact", uploadFileTip: "The file size should lower {fileSize}M", asyncExportJumpMsg: "Or click me to jump to download page.", mustFill: "{label} must fill", filePathNotFound: "File UUID not found, please check the configuration", pleaseSelectDeleteData: "Please select the data to delete" }, superGrid: { editablePlaceholder: "Please click to input", rowEditMessageBox: { title: "Operation Confirmation", content: "There are unsaved modifications in the current row. Do you want to save the modifications and switch?", confirmButton: "Save edit", cancelButton: "Discard edit" }, columnConfig: "Column Config", pleaseSaveOrCancelEditingLine: "Please Save Or Cancel Editing Line {row} Data First", pleaseSaveLine: "Please Save Line {row} Data First", noNeedToSaveRow: "No Need To Save Row {row} Data", pleaseSetURLToSaveRowInformation: 'Please set "URL to save row information"', lineSavedSuccessfully: "Line {row} Saved Successfully", theReturnValueOfTheBeforesaveCallbackMethodIsFalse: "The Return Value Of The Beforesave Callback Method Is False", lineNoNeedToUndoEdit: "Line {row} No Need To Undo Edit", lineCancelledSuccessfully: "Line {row} cancelled successfully", label: "Label", isShow: "Is Show", isExportable: "Is Exportable", recordLine: "Record line {row}", pageRecordLine: "Record in row {row} of page {pageNum}", fileName: "File Name", deleteSuccessful: "Deleted successfully", index: "No.", searchConditionName: "Search Condition Name", pleaseInputSearchConditionName: "Please enter the name of the query criteria", saveCondition: "Save Condition", saveConditionTitle: "Save Condition", displayOrder: "Display Order", searchDisplayOrder: "Search Display Order", width: "Column Width", default: "Default", custom: "Custom", show: "Show", hidden: "Hidden", export: "Export", unExport: "Not Export", whetherToConfirmReset: "Are you sure you want to reset?", resetSuccessful: "Reset successfully", dragColumnOrderMessage: "Supports dragging to change column order", selectAll: "Select All", viewImage: "View Image", previewTitleWhenNotImg: "Non picture format, preview in other ways", refresh: "Refresh", open: "Open", fold: "Fold", prevRow: "Prev Row", nextRow: "Next Row", detail: "Detail", searchEmpty: "Search Empty", canntAddTip: "Does not meet the new operation conditions, cannot perform the new operation, please check!", rowCanntDeleteTip: "Does not meet the delete operation conditions, cannot perform the delete operation, please check!", rowCanntEditTip: "Does not meet the edit operation conditions, cannot perform the edit operation, please check!", searchCondition: "Search Conditon", orderField: "Order Field", orderType: "Order Type", orderTypeAsc: "Asc", orderTypeDesc: "Desc", close: "Close" }, departmentTree: {}, departmentTreeInline: { pleaseEnterDepartmentName: "Please Enter Department Info Filter", name: "Department Name", code: "Department Code", removeDepartment: "Remove Department", selectedDept: "Selected Departments", namePath: "Name Path", allCheck: "Check All", pleaseInputNameOrCode: "Please Input Name Or Code", selectResultInfoHasSelect: "Has select:", selectResultInfo: "{num} departments (including sub departments)", selectResultTitle: "Has Select Result" }, departmentUserTree: { pleaseEnterUserInformation: "Please Enter User Information Filter", selectedPeople: "Selected People", searchFieldUserName: "Name", searchFieldLoginName: "Login Name", searchFieldEmail: "Email", searchFieldTelephone: "Telephone", searchFieldJobNumber: "Job Number", searchFieldHonorificName: "Honorific", selectUserResultInfo: "{useNum} Users", selectDeptResultInfo: "{num} departments(including sub departments)" }, departmentUserTreeInline: { name: "Name", department: "Department", branch: "Branch", removeUser: "Remove User", email: "Email", loginName: "Login Name", superiorDeptNameFullPath: "Department full path", user: "User", groupName: "Name", groupForm: "Group Form", groupList: "Group List", group: "Group", orgTree: "Organization Tree", groupNameNotEmpty: "Group name is required" }, workgroupTree: { allTeamMembers: "All Team Members", name: "Workgroup Name", code: "Workgroup Code", removeWorkgroup: "Remove Workgroup", workingGroupName: "Working Group Name", workingGroupNumber: "Working Group Number", workgroupDescription: "Workgroup Description", selectResultInfo: "{num} workgroups" }, workflowButton: { save: "Save", submit: "Submit", approve: "Approve", refuse: "Refuse", agreement: "Agree", oppose: "Opposition", kiken: "Abstention", get_back_button: "Retrieve", copy: "Copy", draw: "Draw", abandon_draw: "Give Up Draw", add_sign: "Additional Signature", remove_sign: "Reduction Of Signature", signoff: "Sign For", assign: "Hand over", assign_task: "Transfer", readed: "Readed", export_report: "Export Report", draw_dept_task: "Draw Department", abandon_draw_dept_task: "Give Up Draw Department" }, workflowHistoryList: { specailText: "specail", index: "Index", taskName: "Task Name", operation: "Operation", opinion: "Opinion", processStart: "Process Start", processEnd: "Process End", process_start: "[{1}] process start", prcoess_end: "[{1}] process End", force_end_process: "{key_1}forced to end the process, and the task of [{key_2}] was canceled", history_jump: "Process {key_3} to [{key_1}], [{key_2}] task cancelled", history_back: "{key_1} returned to task,process returned to [{key_2}]", history_removesign: "{key_1} minus [{key_2}]", history_changetransactor_and_delegate: "{key_1} changed the handler [{key_2}] to [{key_3}], [{key_4}] delegated the task to [{key_5}]", history_changetransactor: "{key_1} changed handler [{key_2}] to [{key_3}]", history_addsign: "{key_1} sign [{key_2}]", history_addtransactor: "{key_1} add handler [{key_2}]", history_removetransactor: "{key_1} decrease handler [{key_2}]", history_delegate_and_assign: "{key_1} assigned tasks to [{key_2}], [{key_3}] delegated tasks to [{key_4}]", history_assign: "{key_1} assigned task to [{key_2}]", transfer: "{key_1} transferred to [{key_2}]", history_complete_transfer: "{key_1} execute [{key_2}] operation and canceled the task of other receivers [{key_3}]", history_delegate_receive: "{key_1} retracts the task entrusted to [{key_2}]", history_delegate: "{key_1} has delegated task [{key_2}] to [{key_3}]", history_quit_transfer: "{key_1} Resignation, has transferred task [{key_2}] to [{key_3}", history_change_job_transfer: "{key_1} Change job,has transferred task [{key_2}] to [{key_3}", commonButtonOperation: "{key_1} execute [{key_2}] operation", history_draw_task: "{key_1} received the task and cancelled the task of the candidate [{key_2}]", history_abandon_draw: "{key_1} gives up the task and restores the task of candidate [{key_2}]", create_copy_task: "{key_1} The task was copied to [{key_2}", toDoText: "Todo", operator: "Operator", operatorLg: "Operator Login Name", operatorDept: "Operator Dept", operationTime: "Operation Time", history_draw_dept_task: "{key_1} Received tasks from department [{key_2}]", history_abandon_draw_dept_task: "{key_1} Abandon the task of receiving department [{key_2}]", remark: "remark", taskState: "Task State", processingDuration: "Processing Duration(H)", stayDuration: "Stay Duration", isOverdue: "Is Overdue", taskStateDoing: "Doing", taskStateDone: "Done" }, gateway: { timeout: "Interface call timeout", callFailed: "Interface call failed" }, superNineGrid: { add: "Create" }, fsUpload: { upload: "Upload", download: "Download", delete: "Delete", deleteSuccessful: "Delete successful", preview: "Preview", name: "Name", picture: "Picture", operating: "Operating", uploadSucceeded: "Upload succeeded", theNumberOfUploadsExceedsTheLimitTheLimitIs: "The number of uploads exceeds the limit. The limit is", image: "Image", video: "Video", updateSuccess: "Update success", more: "More", uploadFailed: "Upload failed!" }, messageVideo: { attemptingToIdentify: "Attempting to identify", callingRearCamera: "Calling rear camera", identificationFailed: "Identification failed" }, IntervalSelection: { year: "year", quarter: "quarter", auxiliary: "auxiliary word for ordinal numbers", week: "week", month: "month", day: "day", tian: "day", hour: "hour", minute: "minute", second: "second" }, imatrixUIPromptMessage: { NoContent: "No content" }, chatEmbed: { name: "AI Assistant", history: "History", minimize: "Minimize", fullscreen: "Full Screen", close: "Close", regenerate: "Regenerate", copy: "Copy", newChat: "New Chat", copySuccess: "Copy successful", requestFailed: "Request failed!" } };
2
2
  export {
3
3
  e as default
4
4
  };
@@ -123,10 +123,10 @@ function S() {
123
123
  }
124
124
  return n2;
125
125
  }
126
- function M(e2) {
126
+ function y(e2) {
127
127
  return e2 && "[object Promise]" === Object.prototype.toString.call(e2);
128
128
  }
129
- function y() {
129
+ function M() {
130
130
  const e2 = /* @__PURE__ */ new Date() + "";
131
131
  let n2 = "";
132
132
  if (e2.indexOf("GMT") > 0) {
@@ -147,28 +147,28 @@ function T(e2, n2, t2) {
147
147
  let o2 = window.customValidatorRef.get(e2);
148
148
  o2 || (o2 = /* @__PURE__ */ new Map(), window.customValidatorRef.set(e2, o2)), o2.set(n2, t2);
149
149
  }
150
- function E(e2, n2) {
150
+ function C(e2, n2) {
151
151
  if (window.customValidatorRef) {
152
152
  const t2 = window.customValidatorRef.get(e2);
153
153
  t2 && t2.delete(n2);
154
154
  }
155
155
  }
156
- function j() {
156
+ function E() {
157
157
  return navigator.userAgent, navigator.maxTouchPoints, !!/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Opera Mobi|Windows CE|Symbian|Windows Phone|POLARIS|lgtelecom|nokia|SonyEricsson|LG|SAMSUNG|Samsung|Mobile/i.test(navigator.userAgent) || !!(/Macintosh/i.test(navigator.userAgent) && void 0 !== navigator.maxTouchPoints && navigator.maxTouchPoints >= 1);
158
158
  }
159
- function C(e2) {
159
+ function j(e2) {
160
160
  return s.getLocaleByLang(e2);
161
161
  }
162
- function R(n2) {
162
+ function F(n2) {
163
163
  let t2;
164
164
  return n2 && (t2 = JSON.stringify(n2)), e(t2);
165
165
  }
166
- function F() {
166
+ function R() {
167
167
  return n();
168
168
  }
169
169
  function L(e2) {
170
170
  let n2;
171
- const t2 = F();
171
+ const t2 = R();
172
172
  if (t2) {
173
173
  n2 = JSON.parse(t2)[e2];
174
174
  }
@@ -177,14 +177,14 @@ function L(e2) {
177
177
  function N(n2) {
178
178
  return new Promise((o2, i2) => {
179
179
  if (t()) {
180
- const t2 = F();
180
+ const t2 = R();
181
181
  t2 ? (e(t2), o2()) : n2.get(window.$vueApp.config.globalProperties.baseAPI + "/component/all-languages").then((e2) => {
182
182
  const n3 = {};
183
183
  e2 && e2.forEach((e3) => {
184
184
  const t3 = e3.value;
185
185
  let o3;
186
186
  t3.indexOf("_") > 0 && (o3 = t3.substring(0, t3.indexOf("_"))), o3 && "zh" === o3 && (o3 = "cn"), o3 && (n3[o3] = t3);
187
- }), R(n3), o2();
187
+ }), F(n3), o2();
188
188
  });
189
189
  } else
190
190
  o2();
@@ -319,14 +319,21 @@ function Q() {
319
319
  });
320
320
  });
321
321
  }
322
- function K() {
323
- return window.localStorage.getItem("auth_source");
322
+ function K(e2) {
323
+ return new Promise((n2, t2) => {
324
+ window.$authApi.getSystemCacheUrl() ? n2(window.$authApi.getSystemCacheFrontendUrlByCode(e2)) : Q().then(() => {
325
+ n2(window.$authApi.getSystemCacheFrontendUrlByCode(e2));
326
+ });
327
+ });
324
328
  }
325
329
  function X() {
326
- const e2 = K();
330
+ return window.localStorage.getItem("auth_source");
331
+ }
332
+ function Z() {
333
+ const e2 = X();
327
334
  return !!(e2 && "dingtalk" === e2 && window.top && window.top.$dd);
328
335
  }
329
- function Z(e2) {
336
+ function ee(e2) {
330
337
  try {
331
338
  const n2 = e2.includes("#") ? e2.split("#")[1] : e2, t2 = n2.includes("?") ? n2.split("?")[1] : n2, o2 = new URLSearchParams(t2);
332
339
  return Object.fromEntries(o2);
@@ -334,7 +341,7 @@ function Z(e2) {
334
341
  console.error("error===", e3);
335
342
  }
336
343
  }
337
- function ee(e2) {
344
+ function ne(e2) {
338
345
  e2 += "&isShowWatermark=false";
339
346
  let n2 = function() {
340
347
  let e3 = window.$vueApp.config.globalProperties.kkFileViewUrl, n3 = e3, t2 = window.$vueApp.config.globalProperties.baseURL;
@@ -352,37 +359,37 @@ function ee(e2) {
352
359
  });
353
360
  });
354
361
  }
355
- function ne() {
362
+ function te() {
356
363
  const e2 = localStorage.getItem(c.loadState);
357
364
  e2 && "true" === e2 || window.$http.get(window.$vueApp.config.globalProperties.baseAPI + "/component/common/prop-setting").then((e3) => {
358
365
  e3 && g(e3);
359
366
  });
360
367
  }
361
- function te(e2, n2) {
368
+ function oe(e2, n2) {
362
369
  /(y+)/.test(n2) && (n2 = n2.replace(RegExp.$1, (e2.getFullYear() + "").substr(4 - RegExp.$1.length)));
363
370
  const t2 = { "M+": e2.getMonth() + 1, "d+": e2.getDate(), "H+": e2.getHours(), "m+": e2.getMinutes(), "s+": e2.getSeconds() };
364
371
  for (const e3 in t2)
365
372
  if (new RegExp(`(${e3})`).test(n2)) {
366
373
  const o2 = t2[e3] + "";
367
- n2 = n2.replace(RegExp.$1, 1 === RegExp.$1.length ? o2 : oe(o2));
374
+ n2 = n2.replace(RegExp.$1, 1 === RegExp.$1.length ? o2 : ie(o2));
368
375
  }
369
376
  return n2;
370
377
  }
371
- function oe(e2) {
378
+ function ie(e2) {
372
379
  return ("00" + e2).substr(e2.length);
373
380
  }
374
- function ie(e2) {
381
+ function re(e2) {
375
382
  const n2 = new Date(e2);
376
383
  return !isNaN(n2.getTime());
377
384
  }
378
- function re() {
379
- const e2 = window.location.href, n2 = Z(e2);
385
+ function se() {
386
+ const e2 = window.location.href, n2 = ee(e2);
380
387
  let t2;
381
388
  n2 && n2.customSystem && (t2 = n2.customSystem);
382
389
  let o2 = { loginTimeout: e2 };
383
390
  return t2 && (o2.customSystem = t2), o2;
384
391
  }
385
- function se(e2, n2) {
392
+ function le(e2, n2) {
386
393
  return new Promise((t2, o2) => {
387
394
  u(), d.getCurrentUserPermissionsBySystem(e2, n2).then((e3) => {
388
395
  let n3 = ["index"];
@@ -393,22 +400,23 @@ function se(e2, n2) {
393
400
  });
394
401
  }
395
402
  export {
396
- ne as cacheAllEnableGlobalPropUtil,
403
+ te as cacheAllEnableGlobalPropUtil,
397
404
  N as cacheAllLanguagesUtil,
398
405
  B as cacheCurrentLanguageUtil,
399
- R as cacheLangs,
400
- se as cachePermissionsWhenLoginWithToken,
406
+ F as cacheLangs,
407
+ le as cachePermissionsWhenLoginWithToken,
401
408
  V as cacheProjectSetting,
402
409
  Q as cacheSystemUrl,
403
- te as formatDate,
410
+ oe as formatDate,
404
411
  q as formatFileName,
405
- K as getAuthSource,
412
+ X as getAuthSource,
413
+ K as getCacheSystemUrlWithSystemCode,
406
414
  Y as getCurrentSystemCode,
407
- ee as getKkFilePreviewUrl,
415
+ ne as getKkFilePreviewUrl,
408
416
  L as getLangByShort,
409
- F as getLangs,
410
- C as getLocaleByLang,
411
- re as getLoginTimeoutUrlInfo,
417
+ R as getLangs,
418
+ j as getLocaleByLang,
419
+ se as getLoginTimeoutUrlInfo,
412
420
  b as getLoginUrl,
413
421
  S as getOrignUrl,
414
422
  f as getRelativeBaseUrl,
@@ -417,22 +425,22 @@ export {
417
425
  _ as getSystemBackendUrl,
418
426
  A as getSystemFrontendUrl,
419
427
  v as getSystemFrontendUrlWith,
420
- y as getTimeZone,
421
- Z as getURLSearchParamObj,
428
+ M as getTimeZone,
429
+ ee as getURLSearchParamObj,
422
430
  G as getUuidv4,
423
431
  O as insertFontIconCss,
424
432
  x as insertThirdLoginJs,
425
- X as isDingTalkEnv,
433
+ Z as isDingTalkEnv,
426
434
  H as isLogoutTimeout,
427
- j as isMobileBrowser,
435
+ E as isMobileBrowser,
428
436
  $ as isPlateSys,
429
- M as isPromise,
437
+ y as isPromise,
430
438
  h as isShowMenuRoute,
431
439
  P as isShowSystemMenu,
432
- ie as isValidDate,
440
+ re as isValidDate,
433
441
  J as loadCSS,
434
442
  T as pushCustomControlValidatorRef,
435
- E as removeCustomControlValidatorRef,
443
+ C as removeCustomControlValidatorRef,
436
444
  z as replacePlaceholders,
437
445
  m as replacePrefix,
438
446
  U as setCustomSystemBackendUrl,