agilebuilder-ui 1.1.33-sit5 → 1.1.34
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-a19c26f9.js → 401-7193e896.js} +1 -1
- package/lib/{404-97a9542c.js → 404-2852bd20.js} +1 -1
- package/lib/{iframe-page-cb203067.js → iframe-page-bcc25b1c.js} +1 -1
- package/lib/index-d502d8fe.js +72779 -0
- package/lib/super-ui.css +1 -1
- package/lib/super-ui.js +1 -1
- package/lib/super-ui.umd.cjs +89 -89
- package/lib/{tab-content-iframe-index-aac9a8b4.js → tab-content-iframe-index-48b3b846.js} +1 -1
- package/lib/{tab-content-index-0a8ddc6b.js → tab-content-index-d25e4873.js} +1 -1
- package/lib/{tache-subprocess-history-be4af7b1.js → tache-subprocess-history-a72dd967.js} +1 -1
- package/package.json +1 -1
- package/packages/department-user-tree-inline/src/department-user-multiple-tree-inline.vue +1 -5
- package/packages/department-user-tree-inline/src/department-user-single-tree-inline.vue +368 -343
- package/packages/fs-upload-new/src/file-upload-mobile/file-upload-browser.vue +42 -113
- package/packages/organization-input/src/organization-input.vue +0 -11
- package/packages/super-grid/src/apis.js +13 -13
- package/packages/super-grid/src/dynamic-input.vue +1 -11
- package/packages/super-grid/src/formatter.js +56 -55
- package/packages/super-grid/src/normal-column-content.vue +56 -126
- package/packages/super-grid/src/row-operation.vue +18 -35
- package/packages/super-grid/src/super-grid.vue +97 -135
- package/packages/super-icon/src/index.vue +18 -29
- package/src/styles/display-layout.scss +1 -1
- package/src/styles/index.scss +1 -7
- package/src/utils/auth-api.js +0 -4
- package/src/utils/common-util.js +0 -3
- package/src/utils/dingtalk-util.ts +17 -23
- package/src/views/dsc-component/Sidebar/Item.vue +62 -73
- package/src/views/layout/components/Menubar/Item.vue +74 -94
- package/lib/index-dd28e479.js +0 -73213
|
@@ -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-d502d8fe.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-d502d8fe.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-d502d8fe.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
|
@@ -603,8 +603,7 @@ export default {
|
|
|
603
603
|
loginNames: [],
|
|
604
604
|
emails: [],
|
|
605
605
|
telephones: [],
|
|
606
|
-
users: []
|
|
607
|
-
divisionManager: []
|
|
606
|
+
users: []
|
|
608
607
|
}
|
|
609
608
|
// 是否需要显示提示框,默认不显示
|
|
610
609
|
var showTip = false
|
|
@@ -617,9 +616,6 @@ export default {
|
|
|
617
616
|
// 不存在该用户则放到结果集合中,去掉重复使用
|
|
618
617
|
selectNodeInfo.userIds.push(userData.id)
|
|
619
618
|
selectNodeInfo.loginNames.push(userData.loginName)
|
|
620
|
-
if (userData.divisionManager && userData.divisionManager !== '') {
|
|
621
|
-
selectNodeInfo.divisionManager.push(userData.divisionManager)
|
|
622
|
-
}
|
|
623
619
|
if (userData.email && userData.email !== '') {
|
|
624
620
|
selectNodeInfo.emails.push(userData.email)
|
|
625
621
|
}
|