feat: 完善流程实例管理功能,实现取消流程功能,流程实例详情待完善

pull/94/head
子夜 2025-05-07 17:31:06 +08:00
parent 85a976cf40
commit f30199f9ae
8 changed files with 900 additions and 250 deletions

View File

@ -0,0 +1,163 @@
import type { PageParam, PageResult } from '@vben/request';
import type { BpmModelApi } from '#/api/bpm/model';
import type { CandidateStrategy, NodeType } from '#/utils';
import { requestClient } from '#/api/request';
export namespace BpmProcessInstanceApi {
export type Task = {
id: number;
name: string;
};
export type User = {
avatar: string;
id: number;
nickname: string;
};
// 审批任务信息
export type ApprovalTaskInfo = {
assigneeUser: User;
id: number;
ownerUser: User;
reason: string;
signPicUrl: string;
status: number;
};
// 审批节点信息
export type ApprovalNodeInfo = {
candidateStrategy?: CandidateStrategy;
candidateUsers?: User[];
endTime?: Date;
id: number;
name: string;
nodeType: NodeType;
startTime?: Date;
status: number;
tasks: ApprovalTaskInfo[];
};
export type ProcessInstanceVO = {
businessKey: string;
category: string;
createTime: string;
endTime: string;
fields: string[];
id: number;
name: string;
processDefinition?: BpmModelApi.ProcessDefinitionVO;
processDefinitionId: string;
remark: string;
result: number;
status: number;
tasks: BpmProcessInstanceApi.Task[];
};
}
/** 查询我的流程实例分页 */
export async function getProcessInstanceMyPage(params: PageParam) {
return requestClient.get<PageResult<BpmProcessInstanceApi.ProcessInstanceVO>>(
'/bpm/process-instance/my-page',
{ params },
);
}
/** 查询管理员流程实例分页 */
export async function getProcessInstanceManagerPage(params: PageParam) {
return requestClient.get<PageResult<BpmProcessInstanceApi.ProcessInstanceVO>>(
'/bpm/process-instance/manager-page',
{ params },
);
}
/** 新增流程实例 */
export async function createProcessInstance(
data: BpmProcessInstanceApi.ProcessInstanceVO,
) {
return requestClient.post<BpmProcessInstanceApi.ProcessInstanceVO>(
'/bpm/process-instance/create',
data,
);
}
/** 申请人主动取消流程实例 */
export async function cancelProcessInstanceByStartUser(
id: number,
reason: string,
) {
return requestClient.delete<boolean>(
'/bpm/process-instance/cancel-by-start-user',
{
data: { id, reason },
},
);
}
/** 管理员取消流程实例 */
export async function cancelProcessInstanceByAdmin(id: number, reason: string) {
return requestClient.delete<boolean>(
'/bpm/process-instance/cancel-by-admin',
{
data: { id, reason },
},
);
}
/** 查询流程实例详情 */
export async function getProcessInstance(id: number) {
return requestClient.get<BpmProcessInstanceApi.ProcessInstanceVO>(
`/bpm/process-instance/get?id=${id}`,
);
}
/** 查询复制流程实例分页 */
export async function getProcessInstanceCopyPage(params: PageParam) {
return requestClient.get<PageResult<BpmProcessInstanceApi.ProcessInstanceVO>>(
'/bpm/process-instance/copy/page',
{ params },
);
}
/** 更新流程实例 */
export async function updateProcessInstance(
data: BpmProcessInstanceApi.ProcessInstanceVO,
) {
return requestClient.put<BpmProcessInstanceApi.ProcessInstanceVO>(
'/bpm/process-instance/update',
data,
);
}
/** 获取审批详情 */
export async function getApprovalDetail(params: any) {
return requestClient.get<BpmProcessInstanceApi.ProcessInstanceVO>(
`/bpm/process-instance/get-approval-detail`,
{ params },
);
}
/** 获取下一个执行的流程节点 */
export async function getNextApprovalNodes(params: any) {
return requestClient.get<BpmProcessInstanceApi.ProcessInstanceVO>(
`/bpm/process-instance/get-next-approval-nodes`,
{ params },
);
}
/** 获取表单字段权限 */
export async function getFormFieldsPermission(params: any) {
return requestClient.get<BpmProcessInstanceApi.ProcessInstanceVO>(
`/bpm/process-instance/get-form-fields-permission`,
{ params },
);
}
/** 获取流程实例 BPMN 模型视图 */
export async function getProcessInstanceBpmnModelView(id: number) {
return requestClient.get<BpmProcessInstanceApi.ProcessInstanceVO>(
`/bpm/process-instance/get-bpmn-model-view?id=${id}`,
);
}

View File

@ -464,3 +464,132 @@ export const BpmAutoApproveType = {
APPROVE_ALL: 1, // 仅审批一次,后续重复的审批节点均自动通过 APPROVE_ALL: 1, // 仅审批一次,后续重复的审批节点均自动通过
APPROVE_SEQUENT: 2, // 仅针对连续审批的节点自动通过 APPROVE_SEQUENT: 2, // 仅针对连续审批的节点自动通过
}; };
// 候选人策略枚举 用于审批节点。抄送节点 )
export enum CandidateStrategy {
/**
*
*/
APPROVE_USER_SELECT = 34,
/**
*
*/
DEPT_LEADER = 21,
/**
*
*/
DEPT_MEMBER = 20,
/**
*
*/
EXPRESSION = 60,
/**
*
*/
FORM_DEPT_LEADER = 51,
/**
*
*/
FORM_USER = 50,
/**
*
*/
MULTI_LEVEL_DEPT_LEADER = 23,
/**
*
*/
POST = 22,
/**
*
*/
ROLE = 10,
/**
*
*/
START_USER = 36,
/**
*
*/
START_USER_DEPT_LEADER = 37,
/**
*
*/
START_USER_MULTI_LEVEL_DEPT_LEADER = 38,
/**
*
*/
START_USER_SELECT = 35,
/**
*
*/
USER = 30,
/**
*
*/
USER_GROUP = 40,
}
/**
*
*/
export enum NodeType {
/**
*
*/
CHILD_PROCESS_NODE = 20,
/**
* ()
*/
CONDITION_BRANCH_NODE = 51,
/**
*
*/
CONDITION_NODE = 50,
/**
*
*/
COPY_TASK_NODE = 12,
/**
*
*/
DELAY_TIMER_NODE = 14,
/**
*
*/
END_EVENT_NODE = 1,
/**
* ()
*/
INCLUSIVE_BRANCH_NODE = 53,
/**
* ()
*/
PARALLEL_BRANCH_NODE = 52,
/**
*
*/
ROUTER_BRANCH_NODE = 54,
/**
*
*/
START_USER_NODE = 10,
/**
*
*/
TRANSACTOR_NODE = 13,
/**
*
*/
TRIGGER_NODE = 15,
/**
*
*/
USER_TASK_NODE = 11,
}

View File

@ -0,0 +1,31 @@
/**
* xx
*
* @param ms
* @returns {string}
*/
export function formatPast2(ms: number): string {
// 定义时间单位常量,便于维护
const SECOND = 1000;
const MINUTE = 60 * SECOND;
const HOUR = 60 * MINUTE;
const DAY = 24 * HOUR;
// 计算各时间单位
const day = Math.floor(ms / DAY);
const hour = Math.floor((ms % DAY) / HOUR);
const minute = Math.floor((ms % HOUR) / MINUTE);
const second = Math.floor((ms % MINUTE) / SECOND);
// 根据时间长短返回不同格式
if (day > 0) {
return `${day}${hour} 小时 ${minute} 分钟`;
}
if (hour > 0) {
return `${hour} 小时 ${minute} 分钟`;
}
if (minute > 0) {
return `${minute} 分钟`;
}
return second > 0 ? `${second}` : `${0}`;
}

View File

@ -1,4 +1,5 @@
export * from './constants'; export * from './constants';
export * from './dict'; export * from './dict';
export * from './formatTime';
export * from './rangePickerProps'; export * from './rangePickerProps';
export * from './validator'; export * from './validator';

View File

@ -0,0 +1,227 @@
import type { VbenFormSchema } from '#/adapter/form';
import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table';
import type { BpmProcessInstanceApi } from '#/api/bpm/processInstance';
import { h } from 'vue';
import { useAccess } from '@vben/access';
import { Button } from 'ant-design-vue';
import { getCategorySimpleList } from '#/api/bpm/category';
import { getSimpleUserList } from '#/api/system/user';
import { $t } from '#/locales';
import {
DICT_TYPE,
formatPast2,
getDictOptions,
getRangePickerDefaultProps,
} from '#/utils';
import { BpmProcessInstanceStatus } from '../../../../utils/constants';
const { hasAccessByCodes } = useAccess();
/** 列表的搜索表单 */
export function useGridFormSchema(): VbenFormSchema[] {
return [
{
fieldName: 'startUserId',
label: '发起人',
component: 'ApiSelect',
componentProps: {
placeholder: '请选择发起人',
allowClear: true,
api: getSimpleUserList,
labelField: 'nickname',
valueField: 'id',
},
},
{
fieldName: 'name',
label: '流程名称',
component: 'Input',
componentProps: {
placeholder: '请输入流程名称',
allowClear: true,
},
},
{
fieldName: 'processDefinitionId',
label: '所属流程',
component: 'Input',
componentProps: {
placeholder: '请输入流程定义的编号',
allowClear: true,
},
},
// 流程分类
{
fieldName: 'category',
label: '流程分类',
component: 'ApiSelect',
componentProps: {
placeholder: '请输入流程分类',
allowClear: true,
api: getCategorySimpleList,
labelField: 'name',
valueField: 'code',
},
},
// 流程状态
{
fieldName: 'status',
label: '流程状态',
component: 'Select',
componentProps: {
options: getDictOptions(
DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS,
'number',
),
placeholder: '请选择流程状态',
allowClear: true,
},
},
// 发起时间
{
fieldName: 'createTime',
label: '发起时间',
component: 'RangePicker',
componentProps: {
...getRangePickerDefaultProps(),
},
},
];
}
/** 列表的字段 */
export function useGridColumns<T = BpmProcessInstanceApi.ProcessInstanceVO>(
onActionClick: OnActionClickFn<T>,
onTaskClick: (task: BpmProcessInstanceApi.Task) => void,
): VxeTableGridOptions['columns'] {
return [
{
field: 'name',
title: '流程名称',
minWidth: 200,
fixed: 'left',
},
{
field: 'categoryName',
title: '流程分类',
minWidth: 120,
fixed: 'left',
},
{
field: 'startUser.nickname',
title: '流程发起人',
minWidth: 120,
},
{
field: 'startUser.deptName',
title: '发起部门',
minWidth: 120,
},
// 流程状态
{
field: 'status',
title: '流程状态',
minWidth: 120,
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS },
},
},
{
field: 'startTime',
title: '发起时间',
minWidth: 180,
formatter: 'formatDateTime',
},
{
field: 'endTime',
title: '结束时间',
minWidth: 180,
formatter: 'formatDateTime',
},
{
field: 'durationInMillis',
title: '流程耗时',
minWidth: 180,
slots: {
default: ({ row }) => {
return row.durationInMillis > 0
? formatPast2(row.durationInMillis)
: '-';
},
},
},
// 当前审批任务 tasks
{
field: 'tasks',
title: '当前审批任务',
minWidth: 320,
slots: {
default: ({ row }) => {
if (!row?.tasks?.length) return '-';
return row.tasks.map((task: BpmProcessInstanceApi.Task) =>
h(
Button,
{
type: 'link',
size: 'small',
onClick: () => onTaskClick(task),
},
{ default: () => task.name },
),
);
},
},
},
{
field: 'id',
title: '流程编号',
minWidth: 320,
},
{
field: 'operation',
title: '操作',
minWidth: 180,
align: 'center',
fixed: 'right',
cellRender: {
attrs: {
nameField: 'name',
nameTitle: '流程分类',
onClick: onActionClick,
},
name: 'CellOperation',
options: [
{
code: 'detail',
text: $t('ui.actionTitle.detail'),
show: hasAccessByCodes(['bpm:process-instance:query']),
},
{
code: 'cancel',
text: $t('ui.actionTitle.cancel'),
show: (row: BpmProcessInstanceApi.ProcessInstanceVO) => {
return (
row.status === BpmProcessInstanceStatus.RUNNING &&
hasAccessByCodes(['bpm:process-instance:cancel'])
);
},
},
],
},
},
];
}

View File

@ -1,31 +1,128 @@
<script lang="ts" setup> <script lang="ts" setup>
import { Page } from '@vben/common-ui'; import type {
OnActionClickParams,
VxeTableGridOptions,
} from '#/adapter/vxe-table';
import type { BpmProcessInstanceApi } from '#/api/bpm/processInstance';
import { Button } from 'ant-design-vue'; import { h } from 'vue';
import { Page, prompt } from '@vben/common-ui';
import { message, Textarea } from 'ant-design-vue';
import { useVbenVxeGrid } from '#/adapter/vxe-table';
import {
cancelProcessInstanceByAdmin,
getProcessInstanceManagerPage,
} from '#/api/bpm/processInstance';
import { DocAlert } from '#/components/doc-alert'; import { DocAlert } from '#/components/doc-alert';
import { useGridColumns, useGridFormSchema } from './data';
defineOptions({ name: 'BpmProcessInstanceManager' });
const [Grid, gridApi] = useVbenVxeGrid({
formOptions: {
schema: useGridFormSchema(),
},
gridOptions: {
columns: useGridColumns(onActionClick, onTaskClick),
height: 'auto',
keepSource: true,
proxyConfig: {
ajax: {
query: async ({ page }, formValues) => {
return await getProcessInstanceManagerPage({
pageNo: page.currentPage,
pageSize: page.pageSize,
...formValues,
});
},
},
},
rowConfig: {
keyField: 'id',
},
toolbarConfig: {
refresh: { code: 'query' },
search: true,
},
} as VxeTableGridOptions<BpmProcessInstanceApi.ProcessInstanceVO>,
});
/** 表格操作按钮的回调函数 */
function onActionClick({
code,
row,
}: OnActionClickParams<BpmProcessInstanceApi.ProcessInstanceVO>) {
switch (code) {
case 'cancel': {
onCancel(row);
break;
}
case 'detail': {
onDetail(row);
break;
}
}
}
/** 点击任务 */
function onTaskClick(task: BpmProcessInstanceApi.Task) {
// TODO
console.warn(task);
}
/** 取消流程实例 */
function onCancel(row: BpmProcessInstanceApi.ProcessInstanceVO) {
prompt({
async beforeClose(scope) {
if (scope.isConfirm) {
if (scope.value) {
try {
await cancelProcessInstanceByAdmin(row.id, scope.value);
message.success('取消成功');
onRefresh();
} catch {
return false;
}
} else {
message.error('请输入取消原因');
return false;
}
}
},
component: () => {
return h(Textarea, {
placeholder: '请输入取消原因',
allowClear: true,
rows: 2,
rules: [{ required: true, message: '请输入取消原因' }],
});
},
content: '请输入取消原因',
title: '取消流程',
modelPropName: 'value',
});
}
/** 查看流程实例 */
function onDetail(row: BpmProcessInstanceApi.ProcessInstanceVO) {
console.warn(row);
}
/** 刷新表格 */
function onRefresh() {
gridApi.query();
}
</script> </script>
<template> <template>
<Page> <Page auto-content-height>
<DocAlert title="工作流手册" url="https://doc.iocoder.cn/bpm/" /> <DocAlert title="工作流手册" url="https://doc.iocoder.cn/bpm" />
<Button
danger <FormModal @success="onRefresh" />
type="link" <Grid table-title="" />
target="_blank"
href="https://github.com/yudaocode/yudao-ui-admin-vue3"
>
该功能支持 Vue3 + element-plus 版本
</Button>
<br />
<Button
type="link"
target="_blank"
href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processInstance/manager/index"
>
可参考
https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processInstance/manager/index
代码pull request 贡献给我们
</Button>
</Page> </Page>
</template> </template>

View File

@ -1,131 +1,40 @@
{ {
"formRules": { "actionMessage": {
"required": "Please enter {0}", "deleteConfirm": "Are you sure to delete {0}?",
"selectRequired": "Please select {0}", "deleteSuccess": "{0} deleted successfully",
"minLength": "{0} must be at least {1} characters", "deleting": "Deleting {0} ...",
"maxLength": "{0} can be at most {1} characters", "downloadTemplateFail": "Download template failed",
"length": "{0} must be {1} characters long", "importFail": "Import failed",
"alreadyExists": "{0} `{1}` already exists", "importSuccess": "Import succeeded",
"startWith": "{0} must start with `{1}`", "operationFailed": "Operation failed",
"invalidURL": "Please input a valid URL", "operationSuccess": "Operation succeeded",
"mobile": "Please input a valid {0}" "updating": "Updating {0}..."
}, },
"actionTitle": { "actionTitle": {
"edit": "Modify {0}", "cancel": "Cancel {0}",
"create": "Create {0}", "create": "Create {0}",
"delete": "Delete {0}", "delete": "Delete {0}",
"detail": "Detail {0}", "detail": "Detail {0}",
"view": "View {0}", "edit": "Modify {0}",
"export": "Export",
"import": "Import", "import": "Import",
"export": "Export" "view": "View {0}"
},
"actionMessage": {
"deleteConfirm": "Are you sure to delete {0}?",
"deleting": "Deleting {0} ...",
"deleteSuccess": "{0} deleted successfully",
"operationSuccess": "Operation succeeded",
"operationFailed": "Operation failed",
"importSuccess": "Import succeeded",
"importFail": "Import failed",
"downloadTemplateFail": "Download template failed",
"updating": "Updating {0}..."
},
"placeholder": {
"input": "Please enter",
"select": "Please select"
}, },
"captcha": { "captcha": {
"title": "Please complete the security verification",
"sliderSuccessText": "Passed",
"sliderDefaultText": "Slider and drag",
"alt": "Supports img tag src attribute value", "alt": "Supports img tag src attribute value",
"clickInOrder": "Please click in order",
"confirm": "Confirm",
"confirmAriaLabel": "Confirm selection",
"pointAriaLabel": "Click point",
"refreshAriaLabel": "Refresh captcha",
"sliderDefaultText": "Slider and drag",
"sliderRotateDefaultTip": "Click picture to refresh", "sliderRotateDefaultTip": "Click picture to refresh",
"sliderRotateFailTip": "Validation failed", "sliderRotateFailTip": "Validation failed",
"sliderRotateSuccessTip": "Validation successful, time {0} seconds", "sliderRotateSuccessTip": "Validation successful, time {0} seconds",
"refreshAriaLabel": "Refresh captcha", "sliderSuccessText": "Passed",
"confirmAriaLabel": "Confirm selection", "title": "Please complete the security verification"
"confirm": "Confirm",
"pointAriaLabel": "Click point",
"clickInOrder": "Please click in order"
},
"iconPicker": {
"placeholder": "Select an icon",
"search": "Search icon..."
},
"jsonViewer": {
"copy": "Copy",
"copied": "Copied"
},
"fallback": {
"pageNotFound": "Oops! Page Not Found",
"pageNotFoundDesc": "Sorry, we couldn't find the page you were looking for.",
"forbidden": "Oops! Access Denied",
"forbiddenDesc": "Sorry, but you don't have permission to access this page.",
"internalError": "Oops! Something Went Wrong",
"internalErrorDesc": "Sorry, but the server encountered an error.",
"offline": "Offline Page",
"offlineError": "Oops! Network Error",
"offlineErrorDesc": "Sorry, can't connect to the internet. Check your connection.",
"comingSoon": "Coming Soon",
"http": {
"requestTimeout": "The request timed out. Please try again later.",
"networkError": "A network error occurred. Please check your internet connection and try again.",
"badRequest": "Bad Request. Please check your input and try again.",
"unauthorized": "Unauthorized. Please log in to continue.",
"forbidden": "Forbidden. You do not have permission to access this resource.",
"notFound": "Not Found. The requested resource could not be found.",
"internalServerError": "Internal Server Error. Something went wrong on our end. Please try again later."
}
},
"widgets": {
"document": "Document",
"profile": "Profile",
"qa": "Q&A",
"setting": "Settings",
"logoutTip": "Do you want to logout?",
"viewAll": "View All Messages",
"notifications": "Notifications",
"markAllAsRead": "Make All as Read",
"clearNotifications": "Clear",
"checkUpdatesTitle": "New Version Available",
"checkUpdatesDescription": "Click to refresh and get the latest version",
"search": {
"title": "Search",
"searchNavigate": "Search Navigation",
"select": "Select",
"navigate": "Navigate",
"close": "Close",
"noResults": "No Search Results Found",
"noRecent": "No Search History",
"recent": "Search History"
},
"lockScreen": {
"title": "Lock Screen",
"screenButton": "Locking",
"password": "Password",
"placeholder": "Please enter password",
"unlock": "Click to unlock",
"errorPasswordTip": "Password error, please re-enter",
"backToLogin": "Back to login",
"entry": "Enter the system"
}
},
"upload": {
"upload": "Upload",
"imgUpload": "ImageUpload",
"accept": "Support {0} format",
"acceptUpload": "Only upload files in {0} format",
"maxSize": "A single file does not exceed {0}MB",
"maxSizeMultiple": "Only upload files up to {0}MB!",
"maxNumber": "Only upload up to {0} files",
"uploadSuccess": "Upload successfully"
}, },
"cropper": { "cropper": {
"selectImage": "Select Image",
"uploadSuccess": "Uploaded success!",
"imageTooBig": "Image too big",
"modalTitle": "Avatar upload",
"okText": "Confirm and upload",
"btn_reset": "Reset", "btn_reset": "Reset",
"btn_rotate_left": "Counterclockwise rotation", "btn_rotate_left": "Counterclockwise rotation",
"btn_rotate_right": "Clockwise rotation", "btn_rotate_right": "Clockwise rotation",
@ -133,6 +42,98 @@
"btn_scale_y": "Flip vertical", "btn_scale_y": "Flip vertical",
"btn_zoom_in": "Zoom in", "btn_zoom_in": "Zoom in",
"btn_zoom_out": "Zoom out", "btn_zoom_out": "Zoom out",
"preview": "Preview" "imageTooBig": "Image too big",
"modalTitle": "Avatar upload",
"okText": "Confirm and upload",
"preview": "Preview",
"selectImage": "Select Image",
"uploadSuccess": "Uploaded success!"
},
"fallback": {
"comingSoon": "Coming Soon",
"forbidden": "Oops! Access Denied",
"forbiddenDesc": "Sorry, but you don't have permission to access this page.",
"http": {
"badRequest": "Bad Request. Please check your input and try again.",
"forbidden": "Forbidden. You do not have permission to access this resource.",
"internalServerError": "Internal Server Error. Something went wrong on our end. Please try again later.",
"networkError": "A network error occurred. Please check your internet connection and try again.",
"notFound": "Not Found. The requested resource could not be found.",
"requestTimeout": "The request timed out. Please try again later.",
"unauthorized": "Unauthorized. Please log in to continue."
},
"internalError": "Oops! Something Went Wrong",
"internalErrorDesc": "Sorry, but the server encountered an error.",
"offline": "Offline Page",
"offlineError": "Oops! Network Error",
"offlineErrorDesc": "Sorry, can't connect to the internet. Check your connection.",
"pageNotFound": "Oops! Page Not Found",
"pageNotFoundDesc": "Sorry, we couldn't find the page you were looking for."
},
"formRules": {
"alreadyExists": "{0} `{1}` already exists",
"invalidURL": "Please input a valid URL",
"length": "{0} must be {1} characters long",
"maxLength": "{0} can be at most {1} characters",
"minLength": "{0} must be at least {1} characters",
"mobile": "Please input a valid {0}",
"required": "Please enter {0}",
"selectRequired": "Please select {0}",
"startWith": "{0} must start with `{1}`"
},
"iconPicker": {
"placeholder": "Select an icon",
"search": "Search icon..."
},
"jsonViewer": {
"copied": "Copied",
"copy": "Copy"
},
"placeholder": {
"input": "Please enter",
"select": "Please select"
},
"upload": {
"accept": "Support {0} format",
"acceptUpload": "Only upload files in {0} format",
"imgUpload": "ImageUpload",
"maxNumber": "Only upload up to {0} files",
"maxSize": "A single file does not exceed {0}MB",
"maxSizeMultiple": "Only upload files up to {0}MB!",
"upload": "Upload",
"uploadSuccess": "Upload successfully"
},
"widgets": {
"checkUpdatesDescription": "Click to refresh and get the latest version",
"checkUpdatesTitle": "New Version Available",
"clearNotifications": "Clear",
"document": "Document",
"lockScreen": {
"backToLogin": "Back to login",
"entry": "Enter the system",
"errorPasswordTip": "Password error, please re-enter",
"password": "Password",
"placeholder": "Please enter password",
"screenButton": "Locking",
"title": "Lock Screen",
"unlock": "Click to unlock"
},
"logoutTip": "Do you want to logout?",
"markAllAsRead": "Make All as Read",
"notifications": "Notifications",
"profile": "Profile",
"qa": "Q&A",
"search": {
"close": "Close",
"navigate": "Navigate",
"noRecent": "No Search History",
"noResults": "No Search Results Found",
"recent": "Search History",
"searchNavigate": "Search Navigation",
"select": "Select",
"title": "Search"
},
"setting": "Settings",
"viewAll": "View All Messages"
} }
} }

View File

@ -1,131 +1,40 @@
{ {
"formRules": { "actionMessage": {
"required": "请输入{0}", "deleteConfirm": "确定删除 {0} 吗?",
"selectRequired": "请选择{0}", "deleteSuccess": "{0} 删除成功",
"minLength": "{0}至少{1}个字符", "deleting": "正在删除 {0} ...",
"maxLength": "{0}最多{1}个字符", "downloadTemplateFail": "下载模板失败",
"length": "{0}长度必须为{1}个字符", "importFail": "导入失败",
"alreadyExists": "{0} `{1}` 已存在", "importSuccess": "导入成功",
"startWith": "{0}必须以 {1} 开头", "operationFailed": "操作失败",
"invalidURL": "请输入有效的链接", "operationSuccess": "操作成功",
"mobile": "请输入正确的{0}" "updating": "正在更新 {0}..."
}, },
"actionTitle": { "actionTitle": {
"edit": "修改{0}", "cancel": "取消{0}",
"create": "新增{0}", "create": "新增{0}",
"delete": "删除{0}", "delete": "删除{0}",
"detail": "详情{0}", "detail": "详情{0}",
"view": "查看{0}", "edit": "修改{0}",
"export": "导出",
"import": "导入", "import": "导入",
"export": "导出" "view": "查看{0}"
},
"actionMessage": {
"deleteConfirm": "确定删除 {0} 吗?",
"deleting": "正在删除 {0} ...",
"deleteSuccess": "{0} 删除成功",
"operationSuccess": "操作成功",
"operationFailed": "操作失败",
"importSuccess": "导入成功",
"importFail": "导入失败",
"downloadTemplateFail": "下载模板失败",
"updating": "正在更新 {0}..."
},
"placeholder": {
"input": "请输入",
"select": "请选择"
}, },
"captcha": { "captcha": {
"title": "请完成安全验证", "alt": "支持img标签src属性值",
"sliderSuccessText": "验证通过", "clickInOrder": "请依次点击",
"confirm": "确认",
"confirmAriaLabel": "确认选择",
"pointAriaLabel": "点击点",
"refreshAriaLabel": "刷新验证码",
"sliderDefaultText": "请按住滑块拖动", "sliderDefaultText": "请按住滑块拖动",
"sliderRotateDefaultTip": "点击图片可刷新", "sliderRotateDefaultTip": "点击图片可刷新",
"sliderRotateFailTip": "验证失败", "sliderRotateFailTip": "验证失败",
"sliderRotateSuccessTip": "验证成功,耗时{0}秒", "sliderRotateSuccessTip": "验证成功,耗时{0}秒",
"alt": "支持img标签src属性值", "sliderSuccessText": "验证通过",
"refreshAriaLabel": "刷新验证码", "title": "请完成安全验证"
"confirmAriaLabel": "确认选择",
"confirm": "确认",
"pointAriaLabel": "点击点",
"clickInOrder": "请依次点击"
},
"iconPicker": {
"placeholder": "选择一个图标",
"search": "搜索图标..."
},
"jsonViewer": {
"copy": "复制",
"copied": "已复制"
},
"fallback": {
"pageNotFound": "哎呀!未找到页面",
"pageNotFoundDesc": "抱歉,我们无法找到您要找的页面。",
"forbidden": "哎呀!访问被拒绝",
"forbiddenDesc": "抱歉,您没有权限访问此页面。",
"internalError": "哎呀!出错了",
"internalErrorDesc": "抱歉,服务器遇到错误。",
"offline": "离线页面",
"offlineError": "哎呀!网络错误",
"offlineErrorDesc": "抱歉,无法连接到互联网,请检查您的网络连接并重试。",
"comingSoon": "即将推出",
"http": {
"requestTimeout": "请求超时,请稍后再试。",
"networkError": "网络异常,请检查您的网络连接后重试。",
"badRequest": "请求错误。请检查您的输入并重试。",
"unauthorized": "登录认证过期,请重新登录后继续。",
"forbidden": "禁止访问, 您没有权限访问此资源。",
"notFound": "未找到, 请求的资源不存在。",
"internalServerError": "内部服务器错误,请稍后再试。"
}
},
"widgets": {
"document": "文档",
"profile": "个人中心",
"qa": "问题 & 帮助",
"setting": "设置",
"logoutTip": "是否退出登录?",
"viewAll": "查看所有消息",
"notifications": "通知",
"markAllAsRead": "全部标记为已读",
"clearNotifications": "清空",
"checkUpdatesTitle": "新版本可用",
"checkUpdatesDescription": "点击刷新以获取最新版本",
"search": {
"title": "搜索",
"searchNavigate": "搜索导航菜单",
"select": "选择",
"navigate": "导航",
"close": "关闭",
"noResults": "未找到搜索结果",
"noRecent": "没有搜索历史",
"recent": "搜索历史"
},
"lockScreen": {
"title": "锁定屏幕",
"screenButton": "锁定",
"password": "密码",
"placeholder": "请输入锁屏密码",
"unlock": "点击解锁",
"errorPasswordTip": "密码错误,请重新输入",
"backToLogin": "返回登录",
"entry": "进入系统"
}
},
"upload": {
"upload": "上传",
"imgUpload": "图片上传",
"accept": "支持{0}格式",
"acceptUpload": "只能上传{0}格式文件",
"maxSize": "单个文件不超过{0}MB",
"maxSizeMultiple": "只能上传不超过{0}MB的文件!",
"maxNumber": "最多只能上传{0}个文件",
"uploadSuccess": "上传成功"
}, },
"cropper": { "cropper": {
"selectImage": "选择图片",
"uploadSuccess": "上传成功",
"imageTooBig": "图片超限",
"modalTitle": "头像上传",
"okText": "确认并上传",
"btn_reset": "重置", "btn_reset": "重置",
"btn_rotate_left": "逆时针旋转", "btn_rotate_left": "逆时针旋转",
"btn_rotate_right": "顺时针旋转", "btn_rotate_right": "顺时针旋转",
@ -133,6 +42,98 @@
"btn_scale_y": "垂直翻转", "btn_scale_y": "垂直翻转",
"btn_zoom_in": "放大", "btn_zoom_in": "放大",
"btn_zoom_out": "缩小", "btn_zoom_out": "缩小",
"preview": "预览" "imageTooBig": "图片超限",
"modalTitle": "头像上传",
"okText": "确认并上传",
"preview": "预览",
"selectImage": "选择图片",
"uploadSuccess": "上传成功"
},
"fallback": {
"comingSoon": "即将推出",
"forbidden": "哎呀!访问被拒绝",
"forbiddenDesc": "抱歉,您没有权限访问此页面。",
"http": {
"badRequest": "请求错误。请检查您的输入并重试。",
"forbidden": "禁止访问, 您没有权限访问此资源。",
"internalServerError": "内部服务器错误,请稍后再试。",
"networkError": "网络异常,请检查您的网络连接后重试。",
"notFound": "未找到, 请求的资源不存在。",
"requestTimeout": "请求超时,请稍后再试。",
"unauthorized": "登录认证过期,请重新登录后继续。"
},
"internalError": "哎呀!出错了",
"internalErrorDesc": "抱歉,服务器遇到错误。",
"offline": "离线页面",
"offlineError": "哎呀!网络错误",
"offlineErrorDesc": "抱歉,无法连接到互联网,请检查您的网络连接并重试。",
"pageNotFound": "哎呀!未找到页面",
"pageNotFoundDesc": "抱歉,我们无法找到您要找的页面。"
},
"formRules": {
"alreadyExists": "{0} `{1}` 已存在",
"invalidURL": "请输入有效的链接",
"length": "{0}长度必须为{1}个字符",
"maxLength": "{0}最多{1}个字符",
"minLength": "{0}至少{1}个字符",
"mobile": "请输入正确的{0}",
"required": "请输入{0}",
"selectRequired": "请选择{0}",
"startWith": "{0}必须以 {1} 开头"
},
"iconPicker": {
"placeholder": "选择一个图标",
"search": "搜索图标..."
},
"jsonViewer": {
"copied": "已复制",
"copy": "复制"
},
"placeholder": {
"input": "请输入",
"select": "请选择"
},
"upload": {
"accept": "支持{0}格式",
"acceptUpload": "只能上传{0}格式文件",
"imgUpload": "图片上传",
"maxNumber": "最多只能上传{0}个文件",
"maxSize": "单个文件不超过{0}MB",
"maxSizeMultiple": "只能上传不超过{0}MB的文件!",
"upload": "上传",
"uploadSuccess": "上传成功"
},
"widgets": {
"checkUpdatesDescription": "点击刷新以获取最新版本",
"checkUpdatesTitle": "新版本可用",
"clearNotifications": "清空",
"document": "文档",
"lockScreen": {
"backToLogin": "返回登录",
"entry": "进入系统",
"errorPasswordTip": "密码错误,请重新输入",
"password": "密码",
"placeholder": "请输入锁屏密码",
"screenButton": "锁定",
"title": "锁定屏幕",
"unlock": "点击解锁"
},
"logoutTip": "是否退出登录?",
"markAllAsRead": "全部标记为已读",
"notifications": "通知",
"profile": "个人中心",
"qa": "问题 & 帮助",
"search": {
"close": "关闭",
"navigate": "导航",
"noRecent": "没有搜索历史",
"noResults": "未找到搜索结果",
"recent": "搜索历史",
"searchNavigate": "搜索导航菜单",
"select": "选择",
"title": "搜索"
},
"setting": "设置",
"viewAll": "查看所有消息"
} }
} }