agilebuilder-ui 1.1.36-sit1 → 1.1.36-sit3
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/{401-e367a09a.js → 401-0fa43826.js} +1 -1
- package/lib/{404-45104bc5.js → 404-f66635fb.js} +1 -1
- package/lib/{iframe-page-8a758d4d.js → iframe-page-cbf17c8b.js} +1 -1
- package/lib/{index-8c6ab0ba.js → index-e982c337.js} +9 -8
- package/lib/super-ui.css +1 -1
- package/lib/super-ui.js +1 -1
- package/lib/super-ui.umd.cjs +7 -7
- package/lib/{tab-content-iframe-index-16f7cb65.js → tab-content-iframe-index-3eed6086.js} +1 -1
- package/lib/{tab-content-index-f136be89.js → tab-content-index-deae4aab.js} +1 -1
- package/lib/{tache-subprocess-history-4f9a7773.js → tache-subprocess-history-cd6d062b.js} +1 -1
- package/package.json +1 -1
- package/packages/department-user-tree/src/department-user-multiple-tree.vue +1 -0
- package/packages/department-user-tree-inline/src/department-user-tree-multi-service.js +1 -0
- package/packages/department-user-tree-inline/src/department-user-tree-single-service.js +25 -45
- package/src/styles/theme/dark-blue/sidebar.scss +9 -8
- package/src/styles/theme/gray/sidebar.scss +9 -8
- package/src/styles/theme/green/sidebar.scss +9 -8
- package/src/styles/theme/ocean-blue/sidebar.scss +9 -8
- package/src/styles/theme/tiffany-blue-mobile/sidebar.scss +9 -8
- package/src/views/dsc-component/Sidebar/SidebarItem.vue +2 -2
- package/src/views/layout/components/Menubar/SidebarItem.vue +2 -2
- package/src/views/layout/components/Sidebar/SidebarItem.vue +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { openBlock as r, createElementBlock as t, createCommentVNode as o } from "vue";
|
|
2
|
-
import { _ as s } from "./index-
|
|
2
|
+
import { _ as s } from "./index-e982c337.js";
|
|
3
3
|
const u = ["src"], f = s({ data: () => ({ src: null }), watch: { $route(n, c) {
|
|
4
4
|
this.src = this.$route.query.src;
|
|
5
5
|
} }, mounted() {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as f, c as _, g as x, b as P, s as h, m as M, M as O, i as I } from "./index-
|
|
1
|
+
import { _ as f, c as _, g as x, b as P, s as h, m as M, M as O, i as I } from "./index-e982c337.js";
|
|
2
2
|
import { resolveComponent as u, openBlock as d, createBlock as b, withCtx as g, createVNode as v, TransitionGroup as L, createElementBlock as p, Fragment as T, renderList as C, createElementVNode as m, toDisplayString as w, normalizeClass as S, createCommentVNode as y } from "vue";
|
|
3
3
|
const k = { class: "no-redirect" }, A = f({ name: "Breadcrumb", data: () => ({ levelList: null }), computed: { levelListWithTitle() {
|
|
4
4
|
return this.levelList.filter((e) => e.meta.title !== void 0 && e.meta.title !== null);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { resolveComponent as t, openBlock as a, createElementBlock as s, createElementVNode as y, createVNode as l, withCtx as r, createTextVNode as n, toDisplayString as p, createCommentVNode as c, createBlock as h } from "vue";
|
|
2
|
-
import { _ as I } from "./index-
|
|
2
|
+
import { _ as I } from "./index-e982c337.js";
|
|
3
3
|
const g = { style: { "padding-bottom": "10px" } }, k = { key: 0, class: "graphDiv" }, N = I({ name: "TacheSubprocessHistory", data: () => ({ type: "graph", workflowId: null }), created() {
|
|
4
4
|
const o = this.$route.query.workflowId;
|
|
5
5
|
o && (this.workflowId = parseInt(o));
|
package/package.json
CHANGED
|
@@ -183,6 +183,7 @@ const departmentUserTreeMultiService = {
|
|
|
183
183
|
},
|
|
184
184
|
// 加载指定部门节点
|
|
185
185
|
loadPointDepartments() {
|
|
186
|
+
debugger
|
|
186
187
|
let url = window.$vueApp.config.globalProperties.baseAPI + '/component/organization-trees/point-department-users'
|
|
187
188
|
if (this.limitFilterColumn) {
|
|
188
189
|
url += '/' + this.limitFilterColumn
|
|
@@ -7,8 +7,7 @@ const departmentUserTreeSingleService = {
|
|
|
7
7
|
filterAppendNodes(value) {
|
|
8
8
|
this.$http
|
|
9
9
|
.post(
|
|
10
|
-
window.$vueApp.config.globalProperties.baseAPI +
|
|
11
|
-
'/component/organization-trees/search-users',
|
|
10
|
+
window.$vueApp.config.globalProperties.baseAPI + '/component/organization-trees/search-users',
|
|
12
11
|
this.searchParam
|
|
13
12
|
)
|
|
14
13
|
.then((result) => {
|
|
@@ -19,7 +18,7 @@ const departmentUserTreeSingleService = {
|
|
|
19
18
|
this.$message({
|
|
20
19
|
showClose: true,
|
|
21
20
|
type: 'error',
|
|
22
|
-
message: getI18n().t('imatrixUIMessage.queryResultIsEmpty')
|
|
21
|
+
message: getI18n().t('imatrixUIMessage.queryResultIsEmpty')
|
|
23
22
|
})
|
|
24
23
|
return
|
|
25
24
|
}
|
|
@@ -29,7 +28,7 @@ const departmentUserTreeSingleService = {
|
|
|
29
28
|
this.$message({
|
|
30
29
|
showClose: true,
|
|
31
30
|
type: 'error',
|
|
32
|
-
message: getI18n().t('imatrixUIMessage.queryResultIsEmpty')
|
|
31
|
+
message: getI18n().t('imatrixUIMessage.queryResultIsEmpty')
|
|
33
32
|
})
|
|
34
33
|
return
|
|
35
34
|
}
|
|
@@ -48,11 +47,7 @@ const departmentUserTreeSingleService = {
|
|
|
48
47
|
// this.handleSelectUtil(item, localStorage)
|
|
49
48
|
// 查询最新用户信息替换,缓存为历史数据 数据库可能发生变化
|
|
50
49
|
this.$http
|
|
51
|
-
.get(
|
|
52
|
-
window.$vueApp.config.globalProperties.baseAPI +
|
|
53
|
-
'/api/users?loginName=' +
|
|
54
|
-
item.loginName
|
|
55
|
-
)
|
|
50
|
+
.get(window.$vueApp.config.globalProperties.baseAPI + '/api/users?loginName=' + item.loginName)
|
|
56
51
|
.then((userDTO) => {
|
|
57
52
|
if (userDTO !== null) {
|
|
58
53
|
for (const dtoKey in userDTO) {
|
|
@@ -100,17 +95,13 @@ const departmentUserTreeSingleService = {
|
|
|
100
95
|
// 表示没有加载过该父节点的子节点集合时
|
|
101
96
|
const param = {
|
|
102
97
|
parentId: parentId,
|
|
103
|
-
needVirtualUser: this.isNeedVirtualUser
|
|
98
|
+
needVirtualUser: this.isNeedVirtualUser
|
|
104
99
|
}
|
|
105
100
|
if (node.data) {
|
|
106
101
|
param.branchId = node.data.branchId
|
|
107
102
|
}
|
|
108
103
|
this.$http
|
|
109
|
-
.post(
|
|
110
|
-
window.$vueApp.config.globalProperties.baseAPI +
|
|
111
|
-
'/component/organization-trees/department-users',
|
|
112
|
-
param
|
|
113
|
-
)
|
|
104
|
+
.post(window.$vueApp.config.globalProperties.baseAPI + '/component/organization-trees/department-users', param)
|
|
114
105
|
.then((data) => {
|
|
115
106
|
resolve(data)
|
|
116
107
|
// 更新当前点击的节点的子节点,必须加该方法,否则会导致子节点无法选中
|
|
@@ -134,41 +125,30 @@ const departmentUserTreeSingleService = {
|
|
|
134
125
|
loadDepartment(parentId, parentNodeId, isSearch, searchValue) {
|
|
135
126
|
const param = {
|
|
136
127
|
parentId: parentId,
|
|
137
|
-
needVirtualUser: this.isNeedVirtualUser
|
|
128
|
+
needVirtualUser: this.isNeedVirtualUser
|
|
138
129
|
}
|
|
139
130
|
this.$http
|
|
140
|
-
.post(
|
|
141
|
-
window.$vueApp.config.globalProperties.baseAPI +
|
|
142
|
-
'/component/organization-trees/department-users',
|
|
143
|
-
param
|
|
144
|
-
)
|
|
145
|
-
.then((children) => {
|
|
146
|
-
if (this.$refs.deparmentUserTree) {
|
|
147
|
-
this.$refs.deparmentUserTree.updateKeyChildren(parentNodeId, children)
|
|
148
|
-
if (this.$refs.deparmentUserTree.store.nodesMap[parentNodeId]) {
|
|
149
|
-
this.$refs.deparmentUserTree.store.nodesMap[parentNodeId].expanded = true
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
})
|
|
153
|
-
},
|
|
154
|
-
loadPointDepartments() {
|
|
155
|
-
this.$http
|
|
156
|
-
.post(
|
|
157
|
-
window.$vueApp.config.globalProperties.baseAPI +
|
|
158
|
-
'/component/organization-trees/point-department-users',
|
|
159
|
-
this.departmentInfo
|
|
160
|
-
)
|
|
131
|
+
.post(window.$vueApp.config.globalProperties.baseAPI + '/component/organization-trees/department-users', param)
|
|
161
132
|
.then((children) => {
|
|
162
|
-
this.$refs.deparmentUserTree
|
|
163
|
-
this.
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
this.$refs.deparmentUserTree.store.nodesMap[
|
|
168
|
-
this.tenantNodeId
|
|
169
|
-
].expanded = true
|
|
133
|
+
if (this.$refs.deparmentUserTree) {
|
|
134
|
+
this.$refs.deparmentUserTree.updateKeyChildren(parentNodeId, children)
|
|
135
|
+
if (this.$refs.deparmentUserTree.store.nodesMap[parentNodeId]) {
|
|
136
|
+
this.$refs.deparmentUserTree.store.nodesMap[parentNodeId].expanded = true
|
|
137
|
+
}
|
|
170
138
|
}
|
|
171
139
|
})
|
|
172
140
|
},
|
|
141
|
+
loadPointDepartments() {
|
|
142
|
+
let url = window.$vueApp.config.globalProperties.baseAPI + '/component/organization-trees/point-department-users'
|
|
143
|
+
if (this.limitFilterColumn) {
|
|
144
|
+
url += '/' + this.limitFilterColumn
|
|
145
|
+
}
|
|
146
|
+
this.$http.post(url, this.departmentInfo).then((children) => {
|
|
147
|
+
this.$refs.deparmentUserTree.updateKeyChildren(this.tenantNodeId, children)
|
|
148
|
+
if (this.$refs.deparmentUserTree.store.nodesMap[this.tenantNodeId]) {
|
|
149
|
+
this.$refs.deparmentUserTree.store.nodesMap[this.tenantNodeId].expanded = true
|
|
150
|
+
}
|
|
151
|
+
})
|
|
152
|
+
}
|
|
173
153
|
}
|
|
174
154
|
export default departmentUserTreeSingleService
|
|
@@ -220,14 +220,15 @@
|
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
223
|
+
// 注释的原因:会导致孙子菜单显示的位置不正确
|
|
224
|
+
// .sidebar-container-popper .el-menu{
|
|
225
|
+
// // height: 100vh;
|
|
226
|
+
// height: auto;
|
|
227
|
+
// max-height: 100vh;
|
|
228
|
+
// overflow-y: auto;
|
|
229
|
+
// overflow-x: hidden;
|
|
230
|
+
// scroll-behavior: smooth;
|
|
231
|
+
// }
|
|
231
232
|
.sidebar-container-popper .el-submenu__title:not(.is-disabled):hover {
|
|
232
233
|
background: #F7F7F8;
|
|
233
234
|
color: rgba(0, 13, 31, 0.85);
|
|
@@ -189,14 +189,15 @@
|
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
192
|
+
// 注释的原因:会导致孙子菜单显示的位置不正确
|
|
193
|
+
// .sidebar-container-popper .el-menu{
|
|
194
|
+
// // height: 100vh;
|
|
195
|
+
// height: auto;
|
|
196
|
+
// max-height: 100vh;
|
|
197
|
+
// overflow-y: auto;
|
|
198
|
+
// overflow-x: hidden;
|
|
199
|
+
// scroll-behavior: smooth;
|
|
200
|
+
// }
|
|
200
201
|
|
|
201
202
|
.sidebar-container-popper .el-submenu__title:not(.is-disabled):hover {
|
|
202
203
|
background: #F7F7F8;
|
|
@@ -223,14 +223,15 @@
|
|
|
223
223
|
}
|
|
224
224
|
}
|
|
225
225
|
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
226
|
+
// 注释的原因:会导致孙子菜单显示的位置不正确
|
|
227
|
+
// .sidebar-container-popper .el-menu{
|
|
228
|
+
// // height: 100vh;
|
|
229
|
+
// height: auto;
|
|
230
|
+
// max-height: 100vh;
|
|
231
|
+
// overflow-y: auto;
|
|
232
|
+
// overflow-x: hidden;
|
|
233
|
+
// scroll-behavior: smooth;
|
|
234
|
+
// }
|
|
234
235
|
|
|
235
236
|
.sidebar-container-popper .el-submenu__title:not(.is-disabled):hover {
|
|
236
237
|
background: #F7F7F8;
|
|
@@ -217,14 +217,15 @@
|
|
|
217
217
|
}
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
220
|
+
// 注释的原因:会导致孙子菜单显示的位置不正确
|
|
221
|
+
// .sidebar-container-popper .el-menu{
|
|
222
|
+
// // height: 100vh;
|
|
223
|
+
// height: auto;
|
|
224
|
+
// max-height: 100vh;
|
|
225
|
+
// overflow-y: auto;
|
|
226
|
+
// overflow-x: hidden;
|
|
227
|
+
// scroll-behavior: smooth;
|
|
228
|
+
// }
|
|
228
229
|
.sidebar-container-popper .el-submenu__title:not(.is-disabled):hover {
|
|
229
230
|
background: #F7F7F8;
|
|
230
231
|
color: rgba(0, 13, 31, 0.85);
|
|
@@ -219,14 +219,15 @@
|
|
|
219
219
|
}
|
|
220
220
|
}
|
|
221
221
|
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
222
|
+
// 注释的原因:会导致孙子菜单显示的位置不正确
|
|
223
|
+
// .sidebar-container-popper .el-menu{
|
|
224
|
+
// // height: 100vh;
|
|
225
|
+
// height: auto;
|
|
226
|
+
// max-height: 100vh;
|
|
227
|
+
// overflow-y: auto;
|
|
228
|
+
// overflow-x: hidden;
|
|
229
|
+
// scroll-behavior: smooth;
|
|
230
|
+
// }
|
|
230
231
|
.sidebar-container-popper .el-submenu__title:not(.is-disabled):hover {
|
|
231
232
|
background: #F7F7F8;
|
|
232
233
|
color: rgba(0, 13, 31, 0.85);
|
|
@@ -192,8 +192,8 @@ export default {
|
|
|
192
192
|
<style lang="scss" scoped>
|
|
193
193
|
.smb-sidebar-menu-item {
|
|
194
194
|
position: relative;
|
|
195
|
-
--el-menu-item-height:
|
|
196
|
-
--el-menu-sub-item-height:
|
|
195
|
+
--el-menu-item-height: 45px;
|
|
196
|
+
--el-menu-sub-item-height: 45px;
|
|
197
197
|
&.el-menu-item, &.el-sub-menu {
|
|
198
198
|
padding: 0 !important;
|
|
199
199
|
&:not(:has(> .el-tooltip__trigger)) {
|
|
@@ -254,8 +254,8 @@ export default {
|
|
|
254
254
|
<style lang="scss" scoped>
|
|
255
255
|
.smb-sidebar-menu-item {
|
|
256
256
|
position: relative;
|
|
257
|
-
--el-menu-item-height:
|
|
258
|
-
--el-menu-sub-item-height:
|
|
257
|
+
--el-menu-item-height: 45px;
|
|
258
|
+
--el-menu-sub-item-height: 45px;
|
|
259
259
|
&.el-menu-item, &.el-sub-menu {
|
|
260
260
|
padding: 0 !important;
|
|
261
261
|
&:not(:has(> .el-tooltip__trigger)) {
|
|
@@ -140,8 +140,8 @@ export default {
|
|
|
140
140
|
<style lang="scss" scoped>
|
|
141
141
|
.smb-sidebar-menu-item {
|
|
142
142
|
position: relative;
|
|
143
|
-
--el-menu-item-height:
|
|
144
|
-
--el-menu-sub-item-height:
|
|
143
|
+
--el-menu-item-height: 45px;
|
|
144
|
+
--el-menu-sub-item-height: 45px;
|
|
145
145
|
&.el-menu-item, &.el-sub-menu {
|
|
146
146
|
padding: 0 !important;
|
|
147
147
|
&:not(:has(> .el-tooltip__trigger)) {
|