agilebuilder-ui 1.1.42-sit1 → 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-5c692db3.js → 401-f2a9b546.js} +1 -1
- package/lib/{404-bcdb3ce5.js → 404-746481cf.js} +1 -1
- package/lib/{iframe-page-c8073fc1.js → iframe-page-d2b594c4.js} +1 -1
- package/lib/{index-fa4b5a84.js → index-9787409e.js} +13 -17
- package/lib/super-ui.css +1 -1
- package/lib/super-ui.js +1 -1
- package/lib/super-ui.umd.cjs +1 -1
- package/lib/{tab-content-iframe-index-2be5c19e.js → tab-content-iframe-index-ecc72989.js} +1 -1
- package/lib/{tab-content-index-69988e2f.js → tab-content-index-6a314fc4.js} +1 -1
- package/lib/{tache-subprocess-history-9889b788.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/normal-column-content.vue +0 -1
- package/packages/super-grid/src/row-operation.vue +9 -13
|
@@ -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) {
|
|
@@ -107,7 +107,6 @@
|
|
|
107
107
|
:is-show="operation.isShow"
|
|
108
108
|
:label="operation.props.label ? operation.props.label : row[column.prop]"
|
|
109
109
|
:on-click="operation.onClick"
|
|
110
|
-
:operation="operation"
|
|
111
110
|
:operation-index="operationIndex"
|
|
112
111
|
:operation-setting="operation.props"
|
|
113
112
|
:event-name="operation.eventName"
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<!--将@click改为@mousedown.native是因为操作列保存按钮时事件和input等组件的@blur冲突,导致保存需要保存两次,因为
|
|
3
3
|
@blur先于@click执行的,所以只会执行@blur,@click就失效了,@mousedown是先于@blur执行的-->
|
|
4
|
-
<span
|
|
4
|
+
<span :style="myStyle">
|
|
5
5
|
<template v-if="isShowButton()">
|
|
6
6
|
<el-tooltip :disabled="tooltipDisabled" :content="label" placement="top">
|
|
7
|
-
<template v-if="operationSettingData
|
|
7
|
+
<template v-if="operationSettingData.permission">
|
|
8
8
|
<component
|
|
9
9
|
v-bind="operationSettingData"
|
|
10
10
|
:is="isElementType"
|
|
@@ -77,13 +77,9 @@ export default {
|
|
|
77
77
|
type: String,
|
|
78
78
|
default: null,
|
|
79
79
|
},
|
|
80
|
-
operation: {
|
|
81
|
-
type: Object,
|
|
82
|
-
default: () => ({}),
|
|
83
|
-
},
|
|
84
80
|
operationSetting: {
|
|
85
81
|
type: Object,
|
|
86
|
-
default:
|
|
82
|
+
default: null,
|
|
87
83
|
},
|
|
88
84
|
operationIndex: {
|
|
89
85
|
type: Number,
|
|
@@ -152,16 +148,16 @@ export default {
|
|
|
152
148
|
},
|
|
153
149
|
// 后置图标
|
|
154
150
|
suffixIcon() {
|
|
155
|
-
if(['right'].includes(this.
|
|
151
|
+
if(['right'].includes(this.operationSettingData.iconPosition)) return this.operationSetting.iconValue
|
|
156
152
|
return undefined
|
|
157
153
|
},
|
|
158
154
|
// 是否显示文字按钮 > 图标模式
|
|
159
155
|
isTextIcon() {
|
|
160
156
|
if (this.isTableBtnLinkShow) {
|
|
161
|
-
if (this.
|
|
157
|
+
if (this.operationSettingData.isTextIcon === undefined) {
|
|
162
158
|
return this.isSaveRow || this.isDeleteRow || this.isEditRow || this.isRestoreRow
|
|
163
159
|
}
|
|
164
|
-
return this.
|
|
160
|
+
return this.operationSettingData.isTextIcon
|
|
165
161
|
} else {
|
|
166
162
|
return false
|
|
167
163
|
}
|
|
@@ -176,14 +172,14 @@ export default {
|
|
|
176
172
|
},
|
|
177
173
|
// 是否自动开启表格 按钮 转 文字按钮
|
|
178
174
|
isTableBtnLinkShow() {
|
|
179
|
-
if (this.operationSetting
|
|
175
|
+
if (this.operationSetting.text) return true
|
|
180
176
|
if (this.isTableBtnLink && this.elementType === 'el-button') {
|
|
181
|
-
return [this.operationSetting
|
|
177
|
+
return [this.operationSetting.text, this.operationSetting.plain, this.operationSetting.round].every(v => v === undefined)
|
|
182
178
|
}
|
|
183
179
|
return false
|
|
184
180
|
},
|
|
185
181
|
operationSettingData() {
|
|
186
|
-
const dataList = { ...
|
|
182
|
+
const dataList = { ...this.operationSetting }
|
|
187
183
|
if (this.isTableBtnLinkShow) {
|
|
188
184
|
dataList.underline = false
|
|
189
185
|
delete dataList.text
|