2024-11-20 22:43:53 +08:00
|
|
|
export default {
|
|
|
|
|
flow: {
|
|
|
|
|
// procdef
|
|
|
|
|
approvalNode: 'Approval Node',
|
|
|
|
|
procdef: 'Process Definition',
|
|
|
|
|
triggeringCondition: 'Condition',
|
|
|
|
|
triggeringConditionTips: 'go template syntax. If the output is 1, the approval process is triggered',
|
|
|
|
|
conditionPlaceholder: 'Trigger condition, return value =1, means to trigger the approval process',
|
|
|
|
|
conditionDefault: `{{/* DBMS- Run Sql rules The param parameter is described as follows */}}
|
|
|
|
|
{{/* stmtType: select / read / insert / update / delete / ddl ; */}}
|
|
|
|
|
{{ if eq .bizType "db_sql_exec_flow"}}
|
|
|
|
|
{{/* Enable process approval when select and read statements are not available */}}
|
|
|
|
|
{{ if and (ne .param.stmtType "select") (ne .param.stmtType "read") }}
|
|
|
|
|
1
|
|
|
|
|
{{ end }}
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
{{/* Redis-Run Cmd rules; param: parameter is described as follows */}}
|
|
|
|
|
{{/* cmdType: read(Read cmd) / write(Write cmd); */}}
|
|
|
|
|
{{/* cmd: get/set/hset... */}}
|
|
|
|
|
{{ if eq .bizType "redis_run_cmd_flow"}}
|
|
|
|
|
{{ if eq .param.cmdType "write" }}
|
|
|
|
|
1
|
|
|
|
|
{{ end }}
|
|
|
|
|
{{ end }}`,
|
|
|
|
|
nodeName: 'Node Name',
|
|
|
|
|
nodeNameTips: 'Click the specified node to drag and drop sort',
|
|
|
|
|
auditor: 'Auditor',
|
|
|
|
|
tasksNotEmpty: 'Please improve the task of the approval node',
|
|
|
|
|
tasksNoComplete: 'Please complete the task information of the {index} th approval node',
|
|
|
|
|
// procdef status enum
|
|
|
|
|
enable: 'Enable',
|
|
|
|
|
disable: 'Disable',
|
|
|
|
|
|
|
|
|
|
// procinst
|
|
|
|
|
startProcess: 'Start Process',
|
|
|
|
|
cancelProcessConfirm: 'Confirm canceling the process?',
|
|
|
|
|
bizType: 'Business Type',
|
|
|
|
|
bizKey: 'Business Key',
|
|
|
|
|
initiator: 'Initiator',
|
|
|
|
|
procdefName: 'Process Name',
|
|
|
|
|
bizStatus: 'Business Status',
|
|
|
|
|
startingTime: 'Starting Time',
|
|
|
|
|
endTime: 'End Time',
|
|
|
|
|
duration: 'Duration',
|
|
|
|
|
proc: 'Process',
|
|
|
|
|
bizInfo: 'Business Information',
|
|
|
|
|
approvalNodeNotExist: 'There is no approval node',
|
|
|
|
|
resourceNotExistFlow: 'This resource does not require an approval operation',
|
|
|
|
|
procinstFormError: 'Please fill in the information correctly',
|
|
|
|
|
procinstStartSuccess: 'Process initiated successfully',
|
|
|
|
|
// db run sql flow biz
|
|
|
|
|
runSql: 'Run SQL',
|
|
|
|
|
selectDbPlaceholder: 'Please select database',
|
|
|
|
|
// redis run cmd flow biz
|
|
|
|
|
runCmd: 'Rum Cmd',
|
|
|
|
|
selectRedisPlaceholder: 'Select the Redis instance and db',
|
|
|
|
|
cmdPlaceholder: `For example: SET 'key' 'value'; Multiple commands; segmentation`,
|
|
|
|
|
// ProcinstStatusEnum
|
|
|
|
|
active: 'Active',
|
|
|
|
|
completed: 'Completed',
|
|
|
|
|
suspended: 'Suspended',
|
|
|
|
|
terminated: 'Terminated',
|
|
|
|
|
cancelled: 'Cancelled',
|
|
|
|
|
handleResult: 'Result of handling',
|
|
|
|
|
runResult: 'Result of execution',
|
|
|
|
|
// ProcinstBizStatus
|
|
|
|
|
waitHandle: 'Pending',
|
|
|
|
|
handleSuccess: 'Success',
|
|
|
|
|
handleFail: 'Fail',
|
|
|
|
|
noHandle: 'No processing',
|
|
|
|
|
// ProcinstTaskStatus
|
|
|
|
|
waitProcess: 'Waiting',
|
|
|
|
|
pass: 'Pass',
|
|
|
|
|
reject: 'Reject',
|
|
|
|
|
back: 'Back',
|
|
|
|
|
canceled: 'Canceled',
|
|
|
|
|
// FlowBizType
|
|
|
|
|
dbSqlExec: 'DBMS-Run SQL',
|
|
|
|
|
redisRunCmd: 'Redis-Run Cmd',
|
|
|
|
|
|
|
|
|
|
// task
|
2024-12-29 18:21:50 +08:00
|
|
|
approveNode: 'Approve Node',
|
|
|
|
|
approveForm: 'Approve Form',
|
|
|
|
|
approveResult: 'Result',
|
2024-11-20 22:43:53 +08:00
|
|
|
audit: 'Audit',
|
|
|
|
|
procinstStatus: 'Process status',
|
|
|
|
|
taskStatus: 'Task status',
|
|
|
|
|
taskName: 'Task Name',
|
|
|
|
|
taskBeginTime: 'Begin Time',
|
|
|
|
|
flowAudit: 'Approval Process',
|
2025-04-15 21:42:31 +08:00
|
|
|
notify: 'Notification',
|
2024-11-20 22:43:53 +08:00
|
|
|
},
|
|
|
|
|
};
|