super-page-runtime 2.1.45 → 2.1.50-temp1
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/dist/es/components/runtime/utils/api/api-util.d.ts +1 -18
- package/dist/es/components/runtime/utils/api/api-util.js +2 -306
- package/dist/es/components/runtime/utils/api/page-expose-util.js +8 -1
- package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +5 -1
- package/dist/es/components/runtime/utils/events/standard-event.d.ts +11 -1
- package/dist/es/components/runtime/utils/events/standard-event.js +333 -36
- package/dist/es/components/runtime/utils/events/validator-util.js +5 -25
- package/dist/es/components/runtime/utils/page-helper-util.d.ts +3 -1
- package/dist/es/components/runtime/utils/page-helper-util.js +23 -5
- package/dist/es/components/runtime/utils/page-init-util.js +1 -2
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +4 -1
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +3 -2
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +491 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +44 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +64 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +247 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +318 -34
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +1 -0
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +46 -14
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +28 -4
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +9 -2
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +3 -1
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +1 -1
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +4 -1
- package/dist/es/components/runtime/views/super-page-dialog.vue.d.ts +4 -0
- package/dist/es/components/runtime/views/super-page-dialog.vue.js +5 -1
- package/dist/es/components/runtime/views/super-page.vue.js +4 -4
- package/package.json +2 -2
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue3.js +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, computed, ref, watch, resolveComponent, openBlock, createBlock, normalizeClass, unref, normalizeStyle, withCtx, createElementBlock, Fragment, createTextVNode, toDisplayString, createCommentVNode, createVNode, renderList, createElementVNode } from "vue";
|
|
1
|
+
import { defineComponent, computed, ref, watch, onMounted, resolveComponent, openBlock, createBlock, normalizeClass, unref, normalizeStyle, withCtx, createElementBlock, Fragment, createTextVNode, toDisplayString, createCommentVNode, createVNode, renderList, createElementVNode } from "vue";
|
|
2
2
|
import { getVariableValue, setVariableValue, getOptionDatasFromPage, queryOptionDatasources, autoSetAfterSelect } from "../../../../utils/page-helper-util.js";
|
|
3
3
|
import { getFormModelFields } from "../../../../utils/page-init-util.js";
|
|
4
4
|
import { handleFormEvent } from "../../../../utils/events/event-util.js";
|
|
@@ -155,6 +155,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
155
155
|
listOptions.value = newOptions ? newOptions : [];
|
|
156
156
|
console.log("updateOptions", newOptions);
|
|
157
157
|
}
|
|
158
|
+
onMounted(() => {
|
|
159
|
+
console.log("select-runtime onMounted");
|
|
160
|
+
});
|
|
158
161
|
__expose({
|
|
159
162
|
updateOptions
|
|
160
163
|
});
|
|
@@ -12,6 +12,10 @@ interface MyProps {
|
|
|
12
12
|
default: null;
|
|
13
13
|
};
|
|
14
14
|
isTest?: boolean;
|
|
15
|
+
customParams: {
|
|
16
|
+
type: Object;
|
|
17
|
+
default: null;
|
|
18
|
+
};
|
|
15
19
|
}
|
|
16
20
|
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<MyProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
21
|
close: (...args: any[]) => void;
|
|
@@ -8,7 +8,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
8
8
|
parentPageContext: {},
|
|
9
9
|
parentPageEventParams: {},
|
|
10
10
|
jumpPageSetting: {},
|
|
11
|
-
isTest: { type: Boolean }
|
|
11
|
+
isTest: { type: Boolean },
|
|
12
|
+
customParams: {}
|
|
12
13
|
},
|
|
13
14
|
emits: ["open", "opened", "close", "closed"],
|
|
14
15
|
setup(__props, { emit: __emit }) {
|
|
@@ -65,6 +66,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
65
66
|
pageRequest.value["jumpMode"] = myJumpPageSetting ? myJumpPageSetting["jumpMode"] : null;
|
|
66
67
|
pageRequest.value["id"] = dataId.value;
|
|
67
68
|
pageRequest.value["taskId"] = taskId.value;
|
|
69
|
+
if (props.customParams) {
|
|
70
|
+
Object.assign(pageRequest.value, props.customParams);
|
|
71
|
+
}
|
|
68
72
|
}
|
|
69
73
|
return (_ctx, _cache) => {
|
|
70
74
|
const _component_el_drawer = resolveComponent("el-drawer");
|
|
@@ -8,8 +8,8 @@ import _sfc_main$2 from "./assemblys/common/export-form-report-dialog.vue.js";
|
|
|
8
8
|
import _sfc_main$3 from "./assemblys/common/task-informition-dialog.vue.js";
|
|
9
9
|
import _sfc_main$4 from "./assemblys/common/remove-signer-dialog.vue.js";
|
|
10
10
|
import eventBus from "../utils/eventBus.js";
|
|
11
|
-
import { getFormData } from "../utils/
|
|
12
|
-
import
|
|
11
|
+
import { getTaskInformitions, getRemoveSigner, getFormData, exportFormReport, doImportFinally, doAddSigner, doCreateCopyTask, doAssign, doReturnTaskTo, doRemoveSigners, updateValuesWhenCloseDialog, refreshFormOrListPage, getAdditionalParamMap } from "../utils/events/standard-event.js";
|
|
12
|
+
import "../utils/api/api-util.js";
|
|
13
13
|
import { ElMessage } from "element-plus";
|
|
14
14
|
import { useI18n } from "vue-i18n";
|
|
15
15
|
import { DepartmentUserTree } from "agilebuilder-ui";
|
|
@@ -359,8 +359,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
359
359
|
if (!_selectFile_.value) {
|
|
360
360
|
return;
|
|
361
361
|
}
|
|
362
|
-
if (_selectFile_.value.value === "" || _selectFile_.value.value === null)
|
|
363
|
-
return;
|
|
362
|
+
if (_selectFile_.value.value === "" || _selectFile_.value.value === null) return;
|
|
364
363
|
const fileObj = _selectFile_.value.files[0];
|
|
365
364
|
if (fileObj) {
|
|
366
365
|
_selectFile_.value.value = null;
|
|
@@ -484,6 +483,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
484
483
|
popPageSetting.dialogType = "drawer";
|
|
485
484
|
popPageSetting.jumpPageWidth = "100%";
|
|
486
485
|
}
|
|
486
|
+
debugger;
|
|
487
487
|
jumpPageSetting.value = popPageSetting;
|
|
488
488
|
isShowDialog.value = true;
|
|
489
489
|
} else if (jumpMode === "refresh") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-page-runtime",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.50-temp1",
|
|
4
4
|
"description": "AgileBuilder super page runtime",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/es/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
|
49
49
|
"@vue/eslint-config-prettier": "^8.0.0",
|
|
50
50
|
"@vue/test-utils": "^2.4.4",
|
|
51
|
-
"agilebuilder-ui": "1.0.
|
|
51
|
+
"agilebuilder-ui": "1.0.86",
|
|
52
52
|
"axios": "^1.6.8",
|
|
53
53
|
"cypress": "^13.6.6",
|
|
54
54
|
"element-plus": "^2.6.1",
|
package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue3.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|