imatrix-ui 2.9.20-dw → 2.9.21-dw
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.
- package/lib/super-ui.css +1 -1
- package/lib/super-ui.umd.min.js +5 -5
- package/package.json +1 -1
- package/packages/super-grid/src/apis.js +7 -2
- package/packages/super-grid/src/super-grid.vue +19 -17
- package/packages/workgroup-tree/src/workgroup-tree.vue +3 -2
- package/packages/workgroup-tree-inline/src/search-result.vue +168 -0
- package/packages/workgroup-tree-inline/src/workgroup-tree-inline.vue +187 -46
- package/packages/workgroup-tree-inline/src/workgroup-tree-service.js +28 -0
- package/packages/workgroup-user-tree/src/workgroup-user-tree.vue +1 -1
- package/packages/workgroup-user-tree-inline/src/search-result.vue +197 -0
- package/packages/workgroup-user-tree-inline/src/workgroup-tree-inline-service.js +30 -1
- package/packages/workgroup-user-tree-inline/src/workgroup-user-tree-inline.vue +220 -72
- package/src/i18n/langs/cn.js +6 -2
- package/src/i18n/langs/en.js +6 -2
package/src/i18n/langs/cn.js
CHANGED
|
@@ -74,7 +74,8 @@ const cn = {
|
|
|
74
74
|
search: '查询',
|
|
75
75
|
forbiddenException: '您没有权限访问该资源',
|
|
76
76
|
theButtonIsNotBoundToAResource: '该按钮未绑定资源,请先绑定资源',
|
|
77
|
-
asyncExport: '正在异步导出,请等待消息通知!'
|
|
77
|
+
asyncExport: '正在异步导出,请等待消息通知!',
|
|
78
|
+
selectedWorkingGroup: '已选工作组'
|
|
78
79
|
},
|
|
79
80
|
// 列表组件
|
|
80
81
|
superGrid: {
|
|
@@ -155,7 +156,10 @@ const cn = {
|
|
|
155
156
|
allTeamMembers: '所有工作组人员',
|
|
156
157
|
name: '工作组名称',
|
|
157
158
|
code: '工作组编码',
|
|
158
|
-
removeWorkgroup: '移除工作组'
|
|
159
|
+
removeWorkgroup: '移除工作组',
|
|
160
|
+
workingGroupName: '工作组名称',
|
|
161
|
+
workingGroupNumber: '工作组编号',
|
|
162
|
+
workgroupDescription: '工作组描述'
|
|
159
163
|
},
|
|
160
164
|
// 流程按钮组件。save、submit等属性名不能随便改,和后台的ButtonType枚举名保持一致
|
|
161
165
|
workflowButton: {
|
package/src/i18n/langs/en.js
CHANGED
|
@@ -74,7 +74,8 @@ const en = {
|
|
|
74
74
|
search: 'Search',
|
|
75
75
|
forbiddenException: 'You do not have permission to access this resource',
|
|
76
76
|
theButtonIsNotBoundToAResource: 'The button is not bound to a resource, Bind the resource first',
|
|
77
|
-
asyncExport: 'Asynchronous export, please wait for message notification!'
|
|
77
|
+
asyncExport: 'Asynchronous export, please wait for message notification!',
|
|
78
|
+
selectedWorkingGroup: 'Selected working group'
|
|
78
79
|
},
|
|
79
80
|
superGrid: {
|
|
80
81
|
columnConfig: 'Column Config',
|
|
@@ -152,7 +153,10 @@ const en = {
|
|
|
152
153
|
allTeamMembers: 'All Team Members',
|
|
153
154
|
name: 'Workgroup Name',
|
|
154
155
|
code: 'Workgroup Code',
|
|
155
|
-
removeWorkgroup: 'Remove Workgroup'
|
|
156
|
+
removeWorkgroup: 'Remove Workgroup',
|
|
157
|
+
workingGroupName: 'Working Group Name',
|
|
158
|
+
workingGroupNumber: 'Working Group Number',
|
|
159
|
+
workgroupDescription: 'Workgroup Description'
|
|
156
160
|
},
|
|
157
161
|
// 流程按钮组件。save、submit等属性名不能随便改,和后台的ButtonType枚举名保持一致
|
|
158
162
|
workflowButton: {
|