base6-ui 2.0.27 → 2.0.29

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 (42) hide show
  1. package/dist/config/themes/token/dark.d.ts +1 -0
  2. package/dist/config/themes/token/light.d.ts +1 -0
  3. package/dist/hooks/useBodenHttpMessage.d.ts +7 -1
  4. package/dist/index.css +1 -1
  5. package/dist/index.umd.js +3 -3
  6. package/dist/locale/http/en-us.d.ts +98 -42
  7. package/dist/locale/lang/en-us.d.ts +2 -2
  8. package/es/components/platform-navigation/index.vue.mjs +2 -2
  9. package/es/components/platform-navigation/index.vue2.mjs +5 -5
  10. package/es/config/themes/components/card/dark.mjs +1 -1
  11. package/es/config/themes/components/dialog/dark.mjs +1 -1
  12. package/es/config/themes/token/dark.d.ts +1 -0
  13. package/es/config/themes/token/dark.mjs +1 -0
  14. package/es/config/themes/token/light.d.ts +1 -0
  15. package/es/config/themes/token/light.mjs +3 -2
  16. package/es/hooks/useBodenHttpMessage.d.ts +7 -1
  17. package/es/hooks/useBodenHttpMessage.mjs +17 -71
  18. package/es/index.css +1 -1
  19. package/es/locale/http/en-us.d.ts +98 -42
  20. package/es/locale/http/en-us.mjs +98 -85
  21. package/es/locale/http/zh-cn.mjs +97 -83
  22. package/es/locale/lang/en-us.d.ts +2 -2
  23. package/es/locale/lang/en-us.mjs +2 -2
  24. package/es/locale/lang/zh-cn.mjs +2 -2
  25. package/lib/components/platform-navigation/index.vue.js +1 -1
  26. package/lib/components/platform-navigation/index.vue2.js +1 -1
  27. package/lib/config/themes/components/card/dark.js +1 -1
  28. package/lib/config/themes/components/dialog/dark.js +1 -1
  29. package/lib/config/themes/token/dark.d.ts +1 -0
  30. package/lib/config/themes/token/dark.js +1 -1
  31. package/lib/config/themes/token/light.d.ts +1 -0
  32. package/lib/config/themes/token/light.js +1 -1
  33. package/lib/hooks/useBodenHttpMessage.d.ts +7 -1
  34. package/lib/hooks/useBodenHttpMessage.js +1 -1
  35. package/lib/index.css +1 -1
  36. package/lib/locale/http/en-us.d.ts +98 -42
  37. package/lib/locale/http/en-us.js +1 -1
  38. package/lib/locale/http/zh-cn.js +1 -1
  39. package/lib/locale/lang/en-us.d.ts +2 -2
  40. package/lib/locale/lang/en-us.js +1 -1
  41. package/lib/locale/lang/zh-cn.js +1 -1
  42. package/package.json +1 -1
@@ -1,47 +1,103 @@
1
1
  declare const enUS: {
2
2
  name: string;
3
- unauthorized: string;
4
- forbidden: string;
5
- success: {
6
- unknown: string;
7
- warning: string;
8
- success: string;
9
- parameterProblem: string;
10
- userExists: string;
11
- userIncorrectCode: string;
12
- userInvalidPassword: string;
13
- userPhoneNotRegistered: string;
14
- userBeenDisabled: string;
15
- userPhoneBeenRegistered: string;
16
- userBeenRegistered: string;
17
- userNotExists: string;
18
- TeamNameRepeat: string;
19
- TeamNotExists: string;
20
- TeamUsersNotBeenAdmin: string;
21
- resourceExists: string;
22
- resourceBeenBound: string;
23
- resourceCannotModified: string;
24
- resourceCannotDeleted: string;
25
- resourceBeenClaimed: string;
26
- resourceBeenSuspended: string;
27
- resourceNotExist: string;
28
- resourceBeingCreated: string;
29
- resourceBeingUpdated: string;
30
- resourceBeingDeleted: string;
31
- resourceBeingSubmitted: string;
32
- resourceBeingRejected: string;
33
- resourceBeingOccupied: string;
34
- resourceNotSupport: string;
35
- resourceUnauthorized: string;
36
- InternalInterfaceConnectionFailed: string;
37
- InternalInterfaceTimeout: string;
38
- InternalInterfaceCallError: string;
39
- InternalInterfaceReturnedNoValue: string;
40
- FileUploadFailed: string;
41
- FileDownloadFailed: string;
42
- FileNotExist: string;
43
- FileGenerationFailed: string;
44
- FileImportedErrorByParameter: string;
3
+ 401: string;
4
+ 403: string;
5
+ 200: {
6
+ 1: string;
7
+ 2: string;
8
+ 200: string;
9
+ /** 10000~19999 输入参数相关问题 */
10
+ 10000: string;
11
+ 10001: string;
12
+ 10002: string;
13
+ 10003: string;
14
+ 10004: string;
15
+ 10005: string;
16
+ 10006: string;
17
+ /** 20000~29999 账号管理相关问题 */
18
+ 20000: string;
19
+ 20001: string;
20
+ 20002: string;
21
+ 20003: string;
22
+ 20004: string;
23
+ 20005: string;
24
+ 20006: string;
25
+ 20007: string;
26
+ 20008: string;
27
+ 20009: string;
28
+ /** 21000~21099 团队管理相关问题 */
29
+ 21000: string;
30
+ 21001: string;
31
+ 21002: string;
32
+ 21003: string;
33
+ 21004: string;
34
+ 21005: string;
35
+ /** 30000~39999 访问资源(项目/数据集/任务等)使用相关问题 */
36
+ 30000: string;
37
+ 30001: string;
38
+ 30002: string;
39
+ 30003: string;
40
+ 30004: string;
41
+ 30005: string;
42
+ 30006: string;
43
+ 30007: string;
44
+ 30008: string;
45
+ 30009: string;
46
+ 30010: string;
47
+ 30011: string;
48
+ 30012: string;
49
+ 30013: string;
50
+ 30014: string;
51
+ 30015: string;
52
+ /** 30100~30199 argo工作流使用相关异常 */
53
+ 30100: string;
54
+ 30101: string;
55
+ 30102: string;
56
+ 30103: string;
57
+ 30104: string;
58
+ /** 30200~30299 项目下配置信息使用相关异常 */
59
+ 30200: string;
60
+ 30201: string;
61
+ 30202: string;
62
+ 30203: string;
63
+ /** 30300~30399 工作流使用相关异常 */
64
+ 30300: string;
65
+ 30301: string;
66
+ 30302: string;
67
+ 30303: string;
68
+ 30304: string;
69
+ 30305: string;
70
+ 30306: string;
71
+ /** 30400~30499 数据集使用相关异常 */
72
+ 30400: string;
73
+ 30401: string;
74
+ 30402: string;
75
+ 30403: string;
76
+ 30404: string;
77
+ 30405: string;
78
+ /** 30500~30599 任务使用相关异常 */
79
+ 30500: string;
80
+ 30501: string;
81
+ 30502: string;
82
+ 30503: string;
83
+ 30504: string;
84
+ 30505: string;
85
+ 30506: string;
86
+ 30507: string;
87
+ 30508: string;
88
+ 30509: string;
89
+ /** 40000~49999 内部接口调用相关问题 */
90
+ 40000: string;
91
+ 40001: string;
92
+ 40002: string;
93
+ 40003: string;
94
+ /** 50000~59999 文件处理相关问题 */
95
+ 50000: string;
96
+ 50001: string;
97
+ 50002: string;
98
+ 50003: string;
99
+ 50004: string;
100
+ 51000: string;
45
101
  };
46
102
  };
47
103
  export type BodenHttpLocale = typeof enUS;
@@ -1,90 +1,103 @@
1
1
  const e = {
2
2
  name: "en-us",
3
- unauthorized: "Authentication Failed, Please Re-login",
4
- forbidden: "No Permission to Access This Resource",
5
- success: {
6
- unknown: "Unknown System Error, Please Try Again Later",
7
- // 1
8
- warning: "Warning",
9
- // 2
10
- success: "Success",
11
- // 200
12
- parameterProblem: "Invalid Parameter Input",
13
- // 10000
14
- // 账号管理相关问题
15
- userExists: "Username Already Exists",
16
- // 20000
17
- userIncorrectCode: "Incorrect verification code",
18
- // 20001
19
- userInvalidPassword: "Invalid account or password",
20
- // 20002
21
- userPhoneNotRegistered: "This phone number is not registered. Please register first before logging in.",
22
- // 20003
23
- userBeenDisabled: "This account has been disabled. Please contact the administrator.",
24
- // 20004
25
- userPhoneBeenRegistered: "This phone number is already registered. Please log in directly or [retrieve password].",
26
- // 20005
27
- userBeenRegistered: "This account is already registered. Please log in directly or [retrieve password].",
28
- // 20006
29
- userNotExists: "User does not exist",
30
- // 20007
31
- TeamNameRepeat: "Duplicate team name",
32
- // 21000
33
- TeamNotExists: "Team does not exist",
34
- // 21001
35
- TeamUsersNotBeenAdmin: "Team users are not allowed to be changed to team administrators.",
36
- // 21002
37
- // 访问资源(项目/数据集/任务等)使用相关问题
38
- resourceExists: "Resource Name Already Exists",
39
- // 30000
40
- resourceBeenBound: "Resource Has Been Reused/Bound",
41
- // 30001
42
- resourceCannotModified: "Used Resource Cannot Be Modified",
43
- // 30002
44
- resourceCannotDeleted: "Used Resource Cannot Be Deleted",
45
- // 30003
46
- resourceBeenClaimed: "Resource Has Been Claimed",
47
- // 30004
48
- resourceBeenSuspended: "Resource Is Suspended, Operation Not Allowed",
49
- // 30005
50
- resourceNotExist: "Resource Does Not Exist",
51
- // 30006
52
- resourceBeingCreated: "Resource Is Being Created, Please Try Later",
53
- // 30007
54
- resourceBeingUpdated: "Resource Is Being Updated, Please Try Later",
55
- // 30008
56
- resourceBeingDeleted: "Resource Is Being Deleted, Please Try Later",
57
- // 30009
58
- resourceBeingSubmitted: "Resource Is Being Submitted, Please Try Later",
59
- // 30010
60
- resourceBeingRejected: "Resource Is Being Rejected, Please Try Later",
61
- // 30011
62
- resourceBeingOccupied: "Resource Is Occupied, Please Try Later",
63
- // 30012
64
- resourceNotSupport: "Resource Status Does Not Support This Operation",
65
- // 30013
66
- resourceUnauthorized: "No Permission to Use This Resource",
67
- // 30014
68
- // 内部接口调用相关问题
69
- InternalInterfaceConnectionFailed: "Internal interface call connection failed",
70
- // 40000
71
- InternalInterfaceTimeout: "Internal interface call timed out",
72
- // 40001
73
- InternalInterfaceCallError: "Internal interface call error",
74
- // 40002
75
- InternalInterfaceReturnedNoValue: "Internal interface call returned no value",
76
- // 40003
77
- // 文件处理相关问题
78
- FileUploadFailed: "File upload failed",
79
- // 50000
80
- FileDownloadFailed: "File download failed",
81
- // 50001
82
- FileNotExist: "File does not exist",
83
- // 50002
84
- FileGenerationFailed: "File generation failed",
85
- // 50003
86
- FileImportedErrorByParameter: "Parameter error in imported file"
87
- // 51000
3
+ 401: "Authentication Failed, Please Re-login",
4
+ 403: "No Permission to Access This Resource",
5
+ 200: {
6
+ 1: "Unknown System Error, Please Try Again Later",
7
+ 2: "Warning",
8
+ 200: "Success",
9
+ /** 10000~19999 输入参数相关问题 */
10
+ 1e4: "Invalid Parameter Input",
11
+ 10001: "Instance Saving Parameter Exception",
12
+ 10002: "Annotation Kit Does Not Exist",
13
+ 10003: "Platform Type Does Not Exist",
14
+ 10004: "Argo Cloud Vendor Configuration Does Not Exist",
15
+ 10005: "Cloud Storage Configuration Does Not Exist",
16
+ 10006: "File Original Path Does Not Exist",
17
+ /** 20000~29999 账号管理相关问题 */
18
+ 2e4: "Username Already Exists",
19
+ 20001: "Incorrect verification code",
20
+ 20002: "Invalid account or password",
21
+ 20003: "This phone number is not registered. Please register first before logging in.",
22
+ 20004: "This account has been disabled. Please contact the administrator.",
23
+ 20005: "This phone number is already registered. Please log in directly or [retrieve password].",
24
+ 20006: "This account is already registered. Please log in directly or [retrieve password].",
25
+ 20007: "User does not exist",
26
+ 20008: "User Has Been Added to Blacklist",
27
+ 20009: "Duplicate User Addition",
28
+ /** 21000~21099 团队管理相关问题 */
29
+ 21e3: "Duplicate team name",
30
+ 21001: "Team does not exist",
31
+ 21002: "Team users are not allowed to be changed to team administrators.",
32
+ 21003: "Selected Platform Cannot Be Cancelled",
33
+ 21004: "Team Has Been Added to Blacklist",
34
+ 21005: "Duplicate Team Addition",
35
+ /** 30000~39999 访问资源(项目/数据集/任务等)使用相关问题 */
36
+ 3e4: "Resource Name Already Exists",
37
+ 30001: "Resource Has Been Reused/Bound",
38
+ 30002: "Used Resource Cannot Be Modified",
39
+ 30003: "Used Resource Cannot Be Deleted",
40
+ 30004: "Resource Has Been Claimed",
41
+ 30005: "Resource Is Suspended, Operation Not Allowed",
42
+ 30006: "Resource Does Not Exist",
43
+ 30007: "Resource Is Being Created, Please Try Later",
44
+ 30008: "Resource Is Being Updated, Please Try Later",
45
+ 30009: "Resource Is Being Deleted, Please Try Later",
46
+ 30010: "Resource Is Being Submitted, Please Try Later",
47
+ 30011: "Resource Is Being Rejected, Please Try Later",
48
+ 30012: "Resource Is Occupied, Please Try Later",
49
+ 30013: "Resource Status Does Not Support This Operation",
50
+ 30014: "No Permission to Use This Resource",
51
+ 30015: "Duplicate Resource Export Name",
52
+ /** 30100~30199 argo工作流使用相关异常 */
53
+ 30100: "Cross-Cloud Data Copying Is Not Allowed",
54
+ 30101: "Argo Workflow Plugin Does Not Exist",
55
+ 30102: "Failed to Retrieve Argo Workflow Status",
56
+ 30103: "Failed to Terminate Argo Workflow",
57
+ 30104: "Failed to Create Argo Workflow",
58
+ /** 30200~30299 项目下配置信息使用相关异常 */
59
+ 30200: "Attribute Does Not Exist, Please Refresh and Try Again",
60
+ 30201: "Attribute Option Does Not Exist, Please Refresh and Try Again",
61
+ 30202: "Tag Does Not Exist, Please Refresh and Try Again",
62
+ 30203: "Missing required voxel parameter configuration for OCC data",
63
+ /** 30300~30399 工作流使用相关异常 */
64
+ 30300: "Modification of System Preset Workflow Is Not Allowed",
65
+ 30301: "Workflow Does Not Exist",
66
+ 30302: "Duplicate Workflow Node Name",
67
+ 30303: "Multiple Subcontract Nodes Are Not Allowed in Workflow",
68
+ 30304: "Workflow task node configuration lacks required information",
69
+ 30305: "Workflow Failed to Retrieve Annotation Information",
70
+ 30306: "The node is already bound to a workflow and cannot be deleted",
71
+ /** 30400~30499 数据集使用相关异常 */
72
+ 30400: "Unknown data source type",
73
+ 30401: "Someone is currently adding a dataset to the project. Please try again later",
74
+ 30402: "Dataset does not exist",
75
+ 30403: "The dataset lacks the required {modal} data modalities",
76
+ 30404: "The dataset lacks required information",
77
+ 30405: "Someone in the current project is using the dataset generation task. Please try again later",
78
+ /** 30500~30599 任务使用相关异常 */
79
+ 30500: "Task does not exist",
80
+ 30501: "Task cannot be transferred to a non-task node",
81
+ 30502: "The current task status does not allow release",
82
+ 30503: "The current task status does not allow assignment",
83
+ 30504: "The current task status does not allow reassignment",
84
+ 30505: "The current task status does not allow claiming",
85
+ 30506: "The current task status does not allow submission",
86
+ 30507: "No permission to claim the task",
87
+ 30508: "You are not the current operator of the task; operation is not allowed",
88
+ 30509: "Your task quota for this project is full. Please go to your Workbench/My Task List as soon as possible, complete and submit at least one ongoing task to claim a new one",
89
+ /** 40000~49999 内部接口调用相关问题 */
90
+ 4e4: "Internal interface call connection failed",
91
+ 40001: "Internal interface call timed out",
92
+ 40002: "Internal interface call error",
93
+ 40003: "Internal interface call returned no value",
94
+ /** 50000~59999 文件处理相关问题 */
95
+ 5e4: "File upload failed",
96
+ 50001: "File download failed",
97
+ 50002: "File does not exist",
98
+ 50003: "File generation failed",
99
+ 50004: "File already exists. Do not upload duplicates",
100
+ 51e3: "Parameter error in imported file"
88
101
  }
89
102
  };
90
103
  export {
@@ -1,88 +1,102 @@
1
1
  const e = {
2
2
  name: "zh-cn",
3
- unauthorized: "身份验证失败,请重新登录",
4
- forbidden: "暂无权限访问该资源",
5
- success: {
6
- unknown: "系统发生未知异常,请稍后重试",
7
- // 1
8
- warning: "警告",
9
- // 2
10
- success: "操作成功",
11
- // 200
12
- parameterProblem: "参数输入不合法",
13
- // 10000
14
- userExists: "用户名已存在",
15
- // 20000
16
- userIncorrectCode: "验证码错误",
17
- // 20001
18
- userInvalidPassword: "账号或密码错误",
19
- // 20002
20
- userPhoneNotRegistered: "该手机号未注册,请先注册后登录",
21
- // 20003
22
- userBeenDisabled: "该账号已被禁用,请联系管理员",
23
- // 20004
24
- userPhoneBeenRegistered: "该手机号已注册,请直接登录或【找回密码】",
25
- // 20005
26
- userBeenRegistered: "该账号已注册,请直接登录或【找回密码】",
27
- // 20006
28
- userNotExists: "用户不存在",
29
- // 20007
30
- TeamNameRepeat: "团队名称重复",
31
- // 21000
32
- TeamNotExists: "团队不存在",
33
- // 21001
34
- TeamUsersNotBeenAdmin: "Team users are not allowed to be changed to team administrators.",
35
- // 21002
36
- resourceExists: "资源名称已存在",
37
- // 30000
38
- resourceBeenBound: "资源已被重复使用 / 绑定",
39
- // 30001
40
- resourceCannotModified: "已使用的资源不可修改",
41
- // 30002
42
- resourceCannotDeleted: "已使用的资源不可删除",
43
- // 30003
44
- resourceBeenClaimed: "资源已被领取",
45
- // 30004
46
- resourceBeenSuspended: "资源已挂起,无法操作",
47
- // 30005
48
- resourceNotExist: "资源不存在",
49
- // 30006
50
- resourceBeingCreated: "资源创建中,请稍后操作",
51
- // 30007
52
- resourceBeingUpdated: "资源更新中,请稍后操作",
53
- // 30008
54
- resourceBeingDeleted: "资源删除中,请稍后操作",
55
- // 30009
56
- resourceBeingSubmitted: "资源提交中,请稍后操作",
57
- // 30010
58
- resourceBeingRejected: "资源驳回中,请稍后操作",
59
- // 30011
60
- resourceBeingOccupied: "资源被占用,请稍后重试",
61
- // 30012
62
- resourceNotSupport: "资源状态不支持该操作",
63
- // 30013
64
- resourceUnauthorized: "无权限使用该资源",
65
- // 30014
66
- // 内部接口调用相关问题
67
- InternalInterfaceConnectionFailed: "内部接口调用连接失败",
68
- // 40000
69
- InternalInterfaceTimeout: "内部接口调用超时",
70
- // 40001
71
- InternalInterfaceCallError: "内部接口调用报错",
72
- // 40002
73
- InternalInterfaceReturnedNoValue: "内部接口调用无返回值",
74
- // 40003
75
- // 文件处理相关问题
76
- FileUploadFailed: "文件上传失败",
77
- // 50000
78
- FileDownloadFailed: "文件下载失败",
79
- // 50001
80
- FileNotExist: "文件不存在",
81
- // 50002
82
- FileGenerationFailed: "文件生成失败",
83
- // 50003
84
- FileImportedErrorByParameter: "导入文件内存在参数错误"
85
- // 51000
3
+ 401: "身份验证失败,请重新登录",
4
+ 403: "暂无权限访问该资源",
5
+ 200: {
6
+ 1: "系统发生未知异常,请稍后重试",
7
+ 2: "警告",
8
+ 200: "操作成功",
9
+ /** 10000~19999 输入参数相关问题 */
10
+ 1e4: "参数输入不合法",
11
+ 10001: "实例保存参数异常",
12
+ 10002: "标注套件不存在",
13
+ 10003: "平台类型不存在",
14
+ 10004: "argo云厂商配置不存在",
15
+ 10005: "云存储配置不存在",
16
+ 10006: "文件原始路径不存在",
17
+ 2e4: "用户名已存在",
18
+ 20001: "验证码错误",
19
+ 20002: "账号或密码错误",
20
+ 20003: "该手机号未注册,请先注册后登录",
21
+ 20004: "该账号已被禁用,请联系管理员",
22
+ 20005: "该手机号已注册,请直接登录或【找回密码】",
23
+ 20006: "该账号已注册,请直接登录或【找回密码】",
24
+ 20007: "用户不存在",
25
+ 20008: "用户已加入黑名单",
26
+ 20009: "用户重复添加",
27
+ /** 21000~21099 团队管理相关问题 */
28
+ 21e3: "团队名称重复",
29
+ 21001: "团队不存在",
30
+ 21002: "团队用户不允许变更为团队管理员",
31
+ 21003: "已勾选的平台无法取消",
32
+ 21004: "团队已加入黑名单",
33
+ 21005: "团队重复添加",
34
+ /** 30000~39999 访问资源(项目/数据集/任务等)使用相关问题 */
35
+ 3e4: "资源名称已存在",
36
+ 30001: "资源已被重复使用 / 绑定",
37
+ 30002: "已使用的资源不可修改",
38
+ 30003: "已使用的资源不可删除",
39
+ 30004: "资源已被领取",
40
+ 30005: "资源已挂起,无法操作",
41
+ 30006: "资源不存在",
42
+ 30007: "资源创建中,请稍后操作",
43
+ 30008: "资源更新中,请稍后操作",
44
+ 30009: "资源删除中,请稍后操作",
45
+ 30010: "资源提交中,请稍后操作",
46
+ 30011: "资源驳回中,请稍后操作",
47
+ 30012: "资源被占用,请稍后重试",
48
+ 30013: "资源状态不支持该操作",
49
+ 30014: "无权限使用该资源",
50
+ 30015: "资源导出名称重复",
51
+ /** 30100~30199 argo工作流使用相关异常 */
52
+ 30100: "不允许跨云拷贝数据",
53
+ 30101: "argo工作流插件不存在",
54
+ 30102: "argo工作流状态获取失败",
55
+ 30103: "argo工作流终止失败",
56
+ 30104: "argo工作流创建失败",
57
+ /** 30200~30299 项目下配置信息使用相关异常 */
58
+ 30200: "属性不存在,请刷新后重试",
59
+ 30201: "属性选项不存在,请刷新后重试",
60
+ 30202: "标签不存在,请刷新后重试",
61
+ 30203: "缺少OCC数据必要体素参数配置",
62
+ /** 30300~30399 工作流使用相关异常 */
63
+ 30300: "不允许修改系统预设的工作流",
64
+ 30301: "工作流不存在",
65
+ 30302: "工作流节点名称重复",
66
+ 30303: "工作流不允许配置多个分包节点",
67
+ 30304: "工作流任务节点配置缺少必要信息",
68
+ 30305: "工作流未获取到标注信息",
69
+ 30306: "该节点已绑定工作流,无法删除",
70
+ /** 30400~30499 数据集使用相关异常 */
71
+ 30400: "未知的数据源类型",
72
+ 30401: "当前项目有成员正在添加数据集,请稍后重试",
73
+ 30402: "数据集不存在",
74
+ 30403: "数据集缺少{modal}必要数据模态",
75
+ 30404: "数据集缺少必要信息",
76
+ 30405: "当前项目有成员正在使用数据集生成任务,请稍后重试",
77
+ /** 30500~30599 任务使用相关异常 */
78
+ 30500: "任务不存在",
79
+ 30501: "任务无法流转至非任务节点",
80
+ 30502: "当前任务状态无法释放",
81
+ 30503: "当前任务状态无法指派",
82
+ 30504: "当前任务状态无法改派",
83
+ 30505: "当前任务状态无法领取",
84
+ 30506: "当前任务状态无法提交",
85
+ 30507: "无权限领取任务",
86
+ 30508: "不是任务当前操作人,无法操作",
87
+ 30509: "您在该项目中的任务配额已满。请尽快前往您的工作台/我的任务列表,完成并提交至少一个正在进行的任务,以便领取新的任务",
88
+ /** 40000~49999 内部接口调用相关问题 */
89
+ 4e4: "内部接口调用连接失败",
90
+ 40001: "内部接口调用超时",
91
+ 40002: "内部接口调用报错",
92
+ 40003: "内部接口调用无返回值",
93
+ /** 50000~59999 文件处理相关问题 */
94
+ 5e4: "文件上传失败",
95
+ 50001: "文件下载失败",
96
+ 50002: "文件不存在",
97
+ 50003: "文件生成失败",
98
+ 50004: "文件已存在,请勿重复上传",
99
+ 51e3: "导入文件内存在参数错误"
86
100
  }
87
101
  };
88
102
  export {
@@ -27,8 +27,8 @@ declare const enUS: {
27
27
  BricPlatformDescription: string;
28
28
  RoboPlatform: string;
29
29
  RoboPlatformDescription: string;
30
- PsPlatform: string;
31
- PsPlatformDescription: string;
30
+ ForgePlatform: string;
31
+ ForgePlatformDescription: string;
32
32
  };
33
33
  };
34
34
  };
@@ -29,8 +29,8 @@ const o = {
29
29
  BricPlatformDescription: "专业数据采集,汇聚海量基石,奠定智能根基",
30
30
  RoboPlatform: "具身智能采集 - BRIC Robo",
31
31
  RoboPlatformDescription: "专为具身智能研发打造,支持道场场景管理与多类型机器人组网(机器臂/人形)。提供从任务下发、现场采集到数据包审核的全链路工作流,内置遥操作与示教工具,高效沉淀高价值训练数据。",
32
- PsPlatform: "图片采集 - BRIC Image",
33
- PsPlatformDescription: "一站式数据采集与编辑平台,支持源图下发与任务化管理,采集人员可基于源图按规范完成图像编辑与蒙版制作。平台提供流程管控、结果回收与质量校验能力,保障数据一致性与交付质量。"
32
+ ForgePlatform: "图片采集 - BRIC Forge",
33
+ ForgePlatformDescription: "一站式数据采集与编辑平台,支持源图下发与任务化管理,采集人员可基于源图按规范完成图像编辑与蒙版制作。平台提供流程管控、结果回收与质量校验能力,保障数据一致性与交付质量。"
34
34
  }
35
35
  }
36
36
  };
@@ -29,8 +29,8 @@ const o = {
29
29
  BricPlatformDescription: "专业数据采集,汇聚海量基石,奠定智能根基",
30
30
  RoboPlatform: "具身智能采集 - BRIC Robo",
31
31
  RoboPlatformDescription: "专为具身智能研发打造,支持道场场景管理与多类型机器人组网(机器臂/人形)。提供从任务下发、现场采集到数据包审核的全链路工作流,内置遥操作与示教工具,高效沉淀高价值训练数据。",
32
- PsPlatform: "图片采集 - BRIC Image",
33
- PsPlatformDescription: "一站式数据采集与编辑平台,支持源图下发与任务化管理,采集人员可基于源图按规范完成图像编辑与蒙版制作。平台提供流程管控、结果回收与质量校验能力,保障数据一致性与交付质量。"
32
+ ForgePlatform: "图片采集 - BRIC Forge",
33
+ ForgePlatformDescription: "一站式数据采集与编辑平台,支持源图下发与任务化管理,采集人员可基于源图按规范完成图像编辑与蒙版制作。平台提供流程管控、结果回收与质量校验能力,保障数据一致性与交付质量。"
34
34
  }
35
35
  }
36
36
  };
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("./index.vue2.js");;/* empty css */;/* empty css */const t=require("../../_virtual/_plugin-vue_export-helper.js"),u=t.default(e.default,[["__scopeId","data-v-d7f37bb4"]]);exports.default=u;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("./index.vue2.js");;/* empty css */;/* empty css */const t=require("../../_virtual/_plugin-vue_export-helper.js"),u=t.default(e.default,[["__scopeId","data-v-645a51c0"]]);exports.default=u;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const c=require("naive-ui"),e=require("vue"),V=require("../nav-icon/index.vue.js"),x=require("../../hooks/useLocale.js"),R=require("../../hooks/useNaiveConfigProvideContext.js"),T=require("../../assets/cover/base-ads.png.js"),L=require("../../assets/cover/base-studio.png.js"),w=require("../../assets/cover/base-multimodal.png.js"),F=require("../../assets/cover/robo.png.js"),U=require("../../assets/cover/ps.png.js"),q=require("../../assets/cover/blink.png.js"),p=require("./cssVar.js"),i=require("./interface.js"),I={class:"header"},z={class:"content-wrapper"},G={class:"platform-type-item-header"},K={class:"title"},$={class:"description"},j=["src"],H={class:"platform-card_content"},J={class:"title"},Q={class:"description"},W={key:0,class:"navigation"},X={class:"boden-platform-navigation-panel-mask"},Y=e.defineComponent({__name:"index",props:{platformCode:{default:()=>[]},triggerDisabled:{type:Boolean,default:!1},x:{default:0},y:{default:0}},emits:["togglePlatform"],setup(s,{expose:f,emit:v}){const N=s,g=v,_=R.default(),{t}=x.useLocale(),d=e.ref(null),a=e.ref(!1),m=e.computed(()=>{const{name:r="light"}=_?.mergedThemeRef.value||{};return r!=="light"}),h=[{key:"bric",title:t("boden.platformNavigation.BricPlatform"),description:t("boden.platformNavigation.BricPlatformDescription"),svgIcon:"logo-base",children:[{id:i.BODEN_PLATFORM_ENUM.VLA,key:i.BODEN_PLATFORM_NAME_ENUM.ROBO,title:t("boden.platformNavigation.RoboPlatform"),description:t("boden.platformNavigation.RoboPlatformDescription"),imageSrc:F.default},{id:i.BODEN_PLATFORM_ENUM.PS,key:i.BODEN_PLATFORM_NAME_ENUM.PS,title:t("boden.platformNavigation.PsPlatform"),description:t("boden.platformNavigation.PsPlatformDescription"),imageSrc:U.default}]},{key:"base",title:t("boden.platformNavigation.BasePlatform"),description:t("boden.platformNavigation.BasePlatformDescription"),svgIcon:"logo-base",children:[{id:i.BODEN_PLATFORM_ENUM.BASE,key:i.BODEN_PLATFORM_NAME_ENUM.ADS,title:t("boden.platformNavigation.AdsPlatform"),description:t("boden.platformNavigation.AdsPlatformDescription"),imageSrc:T.default},{id:i.BODEN_PLATFORM_ENUM.BASE,key:i.BODEN_PLATFORM_NAME_ENUM.STUDIO,title:t("boden.platformNavigation.StudioPlatform"),description:t("boden.platformNavigation.StudioPlatformDescription"),imageSrc:L.default},{id:i.BODEN_PLATFORM_ENUM.BASE,key:i.BODEN_PLATFORM_NAME_ENUM.OMNI,title:t("boden.platformNavigation.OmniPlatform"),description:t("boden.platformNavigation.OmniPlatformDescription"),imageSrc:w.default}]},{key:"blink",title:t("boden.platformNavigation.BlinkPlatform"),description:t("boden.platformNavigation.BlinkPlatformDescription"),svgIcon:"logo-base",children:[{id:i.BODEN_PLATFORM_ENUM.BLINK,key:i.BODEN_PLATFORM_NAME_ENUM.BLINK,title:t("boden.platformNavigation.BlinkPlatformSpecific"),description:t("boden.platformNavigation.BlinkPlatformSpecificDescription"),imageSrc:q.default}]}],E=e.computed(()=>p.createCardThemeOverrides(m.value)),k=e.computed(()=>p.createHorizontalCardThemeOverrides(m.value)),b=e.computed(()=>p.createPopoverCssVar(m.value)),P=()=>{N.triggerDisabled||u(!a.value)},u=r=>{a.value=r},B=(r,n)=>{g("togglePlatform",r,n)},y=r=>{d.value&&d.value.instRef&&d.value.instRef.contains(r.target)||(a.value=!1)};return f({updateShow:u}),(r,n)=>{const M=e.resolveComponent("svg-icon"),O=c.NButton,D=c.NCard,S=c.NGi,C=c.NGrid,A=c.NPopover;return e.openBlock(),e.createElementBlock("div",null,[e.createVNode(V.default,{ref_key:"triggerInstRef",ref:d,active:a.value,disabled:s.triggerDisabled,onClick:e.withModifiers(P,["stop"])},null,8,["active","disabled"]),e.createVNode(A,{"content-class":"boden-platform-navigation-panel-popover",trigger:"manual",show:a.value,"onUpdate:show":n[2]||(n[2]=o=>a.value=o),style:e.normalizeStyle(b.value),"show-arrow":!1,width:1058,scrollable:"",x:s.x,y:s.y,"theme-overrides":{padding:"0",space:"0",borderRadius:"3px"},onClickoutside:y},{default:e.withCtx(()=>[e.createElementVNode("div",{class:"boden-platform-navigation-panel",onClick:n[1]||(n[1]=e.withModifiers(()=>{},["stop"]))},[e.createElementVNode("div",I,[e.createElementVNode("div",null,e.toDisplayString(e.unref(t)("boden.platformNavigation.allProducts")),1),e.createVNode(M,{icon:"operate-close",size:"16",onClick:n[0]||(n[0]=o=>a.value=!1)})]),e.createElementVNode("div",z,[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(h,o=>e.createElementVNode("div",{key:o.key,class:"platform-type-item"},[e.createElementVNode("div",G,[e.createElementVNode("div",K,e.toDisplayString(o.title),1),e.createElementVNode("div",$,e.toDisplayString(o.description),1)]),o.children&&o.children.length?(e.openBlock(),e.createBlock(C,{key:0,"x-gap":"12",cols:o.children.length===1?1:3,style:{"margin-top":"12px"}},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.children,l=>(e.openBlock(),e.createBlock(S,{key:l.key},{default:e.withCtx(()=>[e.createVNode(D,{class:e.normalizeClass(["platform-card",{"is-horizontal":o.children.length===1}]),"theme-overrides":o.children.length===1?k.value:E.value},{cover:e.withCtx(()=>[e.createElementVNode("img",{src:l.imageSrc,alt:""},null,8,j)]),default:e.withCtx(()=>[e.createElementVNode("div",H,[e.createElementVNode("div",J,e.toDisplayString(l.title),1),e.createElementVNode("div",Q,e.toDisplayString(l.description),1)]),s.platformCode?.includes(l.id)?(e.openBlock(),e.createElementBlock("div",W,[e.createVNode(O,{round:"",size:"tiny",type:"primary",onClick:ee=>B(l.id,l.key)},{default:e.withCtx(()=>[...n[3]||(n[3]=[e.createTextVNode("开始使用",-1)])]),_:1},8,["onClick"])])):e.createCommentVNode("",!0)]),_:2},1032,["class","theme-overrides"])]),_:2},1024))),128))]),_:2},1032,["cols"])):e.createCommentVNode("",!0)])),64))])])]),_:1},8,["show","style","x","y"]),(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.withDirectives(e.createElementVNode("div",X,null,512),[[e.vShow,a.value]])]))])}}});exports.default=Y;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const c=require("naive-ui"),e=require("vue"),V=require("../nav-icon/index.vue.js"),x=require("../../hooks/useLocale.js"),R=require("../../hooks/useNaiveConfigProvideContext.js"),T=require("../../assets/cover/base-ads.png.js"),L=require("../../assets/cover/base-studio.png.js"),w=require("../../assets/cover/base-multimodal.png.js"),F=require("../../assets/cover/robo.png.js"),U=require("../../assets/cover/ps.png.js"),q=require("../../assets/cover/blink.png.js"),p=require("./cssVar.js"),i=require("./interface.js"),I={class:"header"},z={class:"content-wrapper"},G={class:"platform-type-item-header"},K={class:"title"},$={class:"description"},j=["src"],H={class:"platform-card_content"},J={class:"title"},Q={class:"description"},W={key:0,class:"navigation"},X={class:"boden-platform-navigation-panel-mask"},Y=e.defineComponent({__name:"index",props:{platformCode:{default:()=>[]},triggerDisabled:{type:Boolean,default:!1},x:{default:0},y:{default:0}},emits:["togglePlatform"],setup(s,{expose:f,emit:v}){const g=s,N=v,_=R.default(),{t}=x.useLocale(),d=e.ref(null),r=e.ref(!1),m=e.computed(()=>{const{name:a="light"}=_?.mergedThemeRef.value||{};return a!=="light"}),h=[{key:"bric",title:t("boden.platformNavigation.BricPlatform"),description:t("boden.platformNavigation.BricPlatformDescription"),svgIcon:"logo-base",children:[{id:i.BODEN_PLATFORM_ENUM.VLA,key:i.BODEN_PLATFORM_NAME_ENUM.ROBO,title:t("boden.platformNavigation.RoboPlatform"),description:t("boden.platformNavigation.RoboPlatformDescription"),imageSrc:F.default},{id:i.BODEN_PLATFORM_ENUM.PS,key:i.BODEN_PLATFORM_NAME_ENUM.PS,title:t("boden.platformNavigation.ForgePlatform"),description:t("boden.platformNavigation.ForgePlatformDescription"),imageSrc:U.default}]},{key:"base",title:t("boden.platformNavigation.BasePlatform"),description:t("boden.platformNavigation.BasePlatformDescription"),svgIcon:"logo-base",children:[{id:i.BODEN_PLATFORM_ENUM.BASE,key:i.BODEN_PLATFORM_NAME_ENUM.ADS,title:t("boden.platformNavigation.AdsPlatform"),description:t("boden.platformNavigation.AdsPlatformDescription"),imageSrc:T.default},{id:i.BODEN_PLATFORM_ENUM.BASE,key:i.BODEN_PLATFORM_NAME_ENUM.STUDIO,title:t("boden.platformNavigation.StudioPlatform"),description:t("boden.platformNavigation.StudioPlatformDescription"),imageSrc:L.default},{id:i.BODEN_PLATFORM_ENUM.BASE,key:i.BODEN_PLATFORM_NAME_ENUM.OMNI,title:t("boden.platformNavigation.OmniPlatform"),description:t("boden.platformNavigation.OmniPlatformDescription"),imageSrc:w.default}]},{key:"blink",title:t("boden.platformNavigation.BlinkPlatform"),description:t("boden.platformNavigation.BlinkPlatformDescription"),svgIcon:"logo-base",children:[{id:i.BODEN_PLATFORM_ENUM.BLINK,key:i.BODEN_PLATFORM_NAME_ENUM.BLINK,title:t("boden.platformNavigation.BlinkPlatformSpecific"),description:t("boden.platformNavigation.BlinkPlatformSpecificDescription"),imageSrc:q.default}]}],E=e.computed(()=>p.createCardThemeOverrides(m.value)),k=e.computed(()=>p.createHorizontalCardThemeOverrides(m.value)),b=e.computed(()=>p.createPopoverCssVar(m.value)),B=()=>{g.triggerDisabled||u(!r.value)},u=a=>{r.value=a},P=(a,n)=>{N("togglePlatform",a,n)},y=a=>{d.value&&d.value.instRef&&d.value.instRef.contains(a.target)||(r.value=!1)};return f({updateShow:u}),(a,n)=>{const M=e.resolveComponent("svg-icon"),O=c.NButton,D=c.NCard,S=c.NGi,C=c.NGrid,A=c.NPopover;return e.openBlock(),e.createElementBlock("div",null,[e.createVNode(V.default,{ref_key:"triggerInstRef",ref:d,active:r.value,disabled:s.triggerDisabled,onClick:e.withModifiers(B,["stop"])},null,8,["active","disabled"]),e.createVNode(A,{"content-class":"boden-platform-navigation-panel-popover",trigger:"manual",show:r.value,"onUpdate:show":n[2]||(n[2]=o=>r.value=o),style:e.normalizeStyle(b.value),"show-arrow":!1,width:1058,scrollable:"",x:s.x,y:s.y,"theme-overrides":{padding:"0",space:"0",borderRadius:"3px"},onClickoutside:y},{default:e.withCtx(()=>[e.createElementVNode("div",{class:"boden-platform-navigation-panel",onClick:n[1]||(n[1]=e.withModifiers(()=>{},["stop"]))},[e.createElementVNode("div",I,[e.createElementVNode("div",null,e.toDisplayString(e.unref(t)("boden.platformNavigation.allProducts")),1),e.createVNode(M,{icon:"operate-close",size:"16",onClick:n[0]||(n[0]=o=>r.value=!1)})]),e.createElementVNode("div",z,[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(h,o=>e.createElementVNode("div",{key:o.key,class:"platform-type-item"},[e.createElementVNode("div",G,[e.createElementVNode("div",K,e.toDisplayString(o.title),1),e.createElementVNode("div",$,e.toDisplayString(o.description),1)]),o.children&&o.children.length?(e.openBlock(),e.createBlock(C,{key:0,"x-gap":"12",cols:o.children.length===1?1:3,style:{"margin-top":"12px"}},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.children,l=>(e.openBlock(),e.createBlock(S,{key:l.key},{default:e.withCtx(()=>[e.createVNode(D,{class:e.normalizeClass(["platform-card",{"is-horizontal":o.children.length===1}]),"theme-overrides":o.children.length===1?k.value:E.value},{cover:e.withCtx(()=>[e.createElementVNode("img",{src:l.imageSrc,alt:""},null,8,j)]),default:e.withCtx(()=>[e.createElementVNode("div",H,[e.createElementVNode("div",J,e.toDisplayString(l.title),1),e.createElementVNode("div",Q,e.toDisplayString(l.description),1)]),s.platformCode?.includes(l.id)?(e.openBlock(),e.createElementBlock("div",W,[e.createVNode(O,{round:"",size:"tiny",type:"primary",onClick:ee=>P(l.id,l.key)},{default:e.withCtx(()=>[...n[3]||(n[3]=[e.createTextVNode("开始使用",-1)])]),_:1},8,["onClick"])])):e.createCommentVNode("",!0)]),_:2},1032,["class","theme-overrides"])]),_:2},1024))),128))]),_:2},1032,["cols"])):e.createCommentVNode("",!0)])),64))])])]),_:1},8,["show","style","x","y"]),(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.withDirectives(e.createElementVNode("div",X,null,512),[[e.vShow,r.value]])]))])}}});exports.default=Y;
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../../color/dark.js"),o=require("../../token/dark.js");require("../../token/light.js");const r={color:o.default["bg-color-3"],paddingMedium:"16px 24px",borderColor:e.default["color-gray-4"],textColor:o.default["color-text-3"],titleTextColor:o.default["color-text-1"],closeIconColor:o.default["color-text-1"],titleFontSizeMedium:"20px",borderRadius:"10px",colorModal:o.default["bg-color-3"]};exports.CardThemeDark=r;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../../color/dark.js"),o=require("../../token/dark.js");require("../../token/light.js");const r={color:o.default["bg-color-3"],paddingMedium:"16px 24px",borderColor:e.default["color-gray-4"],textColor:o.default["color-text-3"],titleTextColor:o.default["color-text-1"],closeIconColor:o.default["color-text-1"],titleFontSizeMedium:"20px",borderRadius:"10px",colorModal:o.default["bg-color-5"]};exports.CardThemeDark=r;
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/dark.js"),r=require("../../token/dark.js");require("../../token/light.js");const e=require("./common.js"),l={...e.DialogThemeCommon,closeIconColor:r.default["color-text-1"],titleTextColor:r.default["color-text-1"],textColor:r.default["color-text-1"],iconColorError:o.default["color-red-6"],iconColorInfo:o.default["color-primary-6"],iconColorSuccess:o.default["color-green-6"],iconColorWarning:o.default["color-origin-6"],color:r.default["bg-color-3"]};exports.DialogThemeDark=l;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/dark.js"),r=require("../../token/dark.js");require("../../token/light.js");const e=require("./common.js"),l={...e.DialogThemeCommon,closeIconColor:r.default["color-text-1"],titleTextColor:r.default["color-text-1"],textColor:r.default["color-text-1"],iconColorError:o.default["color-red-6"],iconColorInfo:o.default["color-primary-6"],iconColorSuccess:o.default["color-green-6"],iconColorWarning:o.default["color-origin-6"],color:r.default["bg-color-5"]};exports.DialogThemeDark=l;