agilebuilder-ui 1.1.42 → 1.1.43
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-89fd25ba.js → 401-f2a9b546.js} +1 -1
- package/lib/{404-4264aeb1.js → 404-746481cf.js} +1 -1
- package/lib/{iframe-page-4a8dcdbb.js → iframe-page-d2b594c4.js} +1 -1
- package/lib/{index-50fdf8ae.js → index-9787409e.js} +1108 -1105
- package/lib/super-ui.css +1 -1
- package/lib/super-ui.js +1 -1
- package/lib/super-ui.umd.cjs +50 -50
- package/lib/{tab-content-iframe-index-16207fb9.js → tab-content-iframe-index-ecc72989.js} +1 -1
- package/lib/{tab-content-index-8ae8c396.js → tab-content-index-6a314fc4.js} +1 -1
- package/lib/{tache-subprocess-history-110e29f2.js → tache-subprocess-history-4a760e68.js} +1 -1
- package/package.json +1 -1
- package/packages/super-grid/src/custom-formatter.js +1 -1
- package/packages/super-grid/src/dynamic-input.vue +1 -1
- package/packages/super-nine-grid/src/search-form.vue +7 -3
- package/packages/super-nine-grid/src/super-nine-grid.vue +1 -1
|
@@ -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-9787409e.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-9787409e.js";
|
|
2
2
|
import { resolveComponent as u, openBlock as l, createBlock as b, withCtx as g, createVNode as v, TransitionGroup as L, createElementBlock as p, Fragment as C, renderList as T, 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-9787409e.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
|
@@ -281,7 +281,7 @@ const customFormatter = {
|
|
|
281
281
|
if (gridParams.options.extraParam && gridParams.options.extraParam.entityMap) {
|
|
282
282
|
parentFormData = gridParams.options.extraParam.entityMap
|
|
283
283
|
}
|
|
284
|
-
if (gridParams.
|
|
284
|
+
if (gridParams.options.isFormSubTable && jumpPageSetting.jumpPageAdditional?.length > 0) {
|
|
285
285
|
// 如果是子表,则需要把配置的 ${data.字段} 改成 ${parent.字段}
|
|
286
286
|
jumpPageSetting.jumpPageAdditional.forEach((item, index) => {
|
|
287
287
|
if (item && item.paramValue) {
|
|
@@ -487,7 +487,7 @@
|
|
|
487
487
|
:multiple="isMultiTree"
|
|
488
488
|
:table-name="tableName"
|
|
489
489
|
:tree-type="
|
|
490
|
-
deptManTree ? 'DeptUserTree' : deptTree ? 'DeptTree' : wgManTree ? '
|
|
490
|
+
deptManTree ? 'DeptUserTree' : deptTree ? 'DeptTree' : wgManTree ? 'WgUserTree' : wgTree ? 'WgTree' : null
|
|
491
491
|
"
|
|
492
492
|
:value="innerValue"
|
|
493
493
|
@append="appendOrganizationInputEvent"
|
|
@@ -14,12 +14,16 @@
|
|
|
14
14
|
v-for="n of getColumnNumPerRow(r, searchableColumns.length)"
|
|
15
15
|
:key="n"
|
|
16
16
|
:span="6"
|
|
17
|
-
style="margin-bottom:
|
|
17
|
+
style="margin-bottom: 10px"
|
|
18
18
|
>
|
|
19
19
|
<el-form-item
|
|
20
20
|
:prop="searchableColumns[fieldNum * (r - 1) + (n - 1)].prop"
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
:label-width="
|
|
22
|
+
searchableColumns[fieldNum * (r - 1) + (n - 1)].label.replace(/\\n/g, '</br>')?.length > 4
|
|
23
|
+
? '100px'
|
|
24
|
+
: '80px'
|
|
25
|
+
"
|
|
26
|
+
style="width: 90%"
|
|
23
27
|
>
|
|
24
28
|
<template v-slot:label>
|
|
25
29
|
<span
|