service-flow-designer 1.1.14 → 1.1.16
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/designer/service-panel/service-list.css +5 -5
- package/dist/es/designer/service-panel/service-list.vue.js +1 -1
- package/dist/es/designer/service-panel/service-list.vue2.js +2 -4
- package/dist/es/stores/page-store.js +1 -1
- package/dist/lib/designer/service-panel/service-list.css +5 -5
- package/dist/lib/designer/service-panel/service-list.vue.js +1 -1
- package/dist/lib/designer/service-panel/service-list.vue2.js +2 -4
- package/dist/lib/stores/page-store.js +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
|
-
[data-v-
|
|
2
|
+
[data-v-8fd513e6] .el-table__row {
|
|
3
3
|
cursor: pointer;
|
|
4
4
|
}
|
|
5
5
|
/** 右键菜单样式 */
|
|
6
|
-
.context-menu[data-v-
|
|
6
|
+
.context-menu[data-v-8fd513e6] {
|
|
7
7
|
position: absolute;
|
|
8
8
|
background: #fff;
|
|
9
9
|
z-index: 999;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
border-radius: 10px;
|
|
15
15
|
font-size: 14px;
|
|
16
16
|
}
|
|
17
|
-
.context-menu li[data-v-
|
|
17
|
+
.context-menu li[data-v-8fd513e6] {
|
|
18
18
|
list-style-type: none;
|
|
19
19
|
min-width: 75px;
|
|
20
20
|
line-height: 28px;
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
padding-left: 5px;
|
|
24
24
|
cursor: pointer;
|
|
25
25
|
}
|
|
26
|
-
.context-menu li[data-v-
|
|
26
|
+
.context-menu li[data-v-8fd513e6]:hover {
|
|
27
27
|
background: #0165e1;
|
|
28
28
|
color: #fff;
|
|
29
29
|
}
|
|
30
30
|
/** 右键菜单样式 */
|
|
31
|
-
.custom-tree-node[data-v-
|
|
31
|
+
.custom-tree-node[data-v-8fd513e6] {
|
|
32
32
|
font-size: 14px;
|
|
33
33
|
padding-right: 8px;
|
|
34
34
|
display: flex; /* 使用Flex布局 */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./service-list.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import _export_sfc from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const ServiceList = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const ServiceList = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-8fd513e6"]]);
|
|
5
5
|
export {
|
|
6
6
|
ServiceList as default
|
|
7
7
|
};
|
|
@@ -5,7 +5,7 @@ import http from "agilebuilder-ui/src/utils/request";
|
|
|
5
5
|
import { findServcieByCode } from "../common/util/node-util.js";
|
|
6
6
|
import { useServiceFlowStore } from "../../stores/page-store.js";
|
|
7
7
|
import { ElMessage } from "element-plus";
|
|
8
|
-
const _withScopeId = (n) => (pushScopeId("data-v-
|
|
8
|
+
const _withScopeId = (n) => (pushScopeId("data-v-8fd513e6"), n = n(), popScopeId(), n);
|
|
9
9
|
const _hoisted_1 = { class: "custom-tree-node" };
|
|
10
10
|
const _hoisted_2 = { style: { "margin-left": "5px", "line-height": "14px", "font-size": "14px" } };
|
|
11
11
|
const _hoisted_3 = { class: "dialog-footer" };
|
|
@@ -44,7 +44,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
44
44
|
const props = __props;
|
|
45
45
|
const search = ref("");
|
|
46
46
|
const contxtMenuRef = ref();
|
|
47
|
-
const serviceTreeRef = ref();
|
|
48
47
|
const showContextMenu = ref(false);
|
|
49
48
|
const contextMenuData = ref({});
|
|
50
49
|
const dialogVisible = ref(false);
|
|
@@ -222,8 +221,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
222
221
|
}),
|
|
223
222
|
createVNode(_component_el_tree, {
|
|
224
223
|
style: { "margin-top": "10px" },
|
|
225
|
-
|
|
226
|
-
ref: serviceTreeRef,
|
|
224
|
+
ref: "serviceTreeRef",
|
|
227
225
|
data: __props.serviceTreeData,
|
|
228
226
|
props: treeProps,
|
|
229
227
|
"default-expand-all": true,
|
|
@@ -20,7 +20,7 @@ const useServiceFlowStore = defineStore("serviceFlowStoreUtil", () => {
|
|
|
20
20
|
setPageContextVarOptions(newPageContext);
|
|
21
21
|
}
|
|
22
22
|
function setPageContextVarOptions(pageObject) {
|
|
23
|
-
if (pageObject) {
|
|
23
|
+
if (pageObject && pageObject.modelFields) {
|
|
24
24
|
pageObject.modelFields.forEach((element) => {
|
|
25
25
|
pageContextVarOptions.value.dataOptions.push({
|
|
26
26
|
value: element.name,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
|
-
[data-v-
|
|
2
|
+
[data-v-8fd513e6] .el-table__row {
|
|
3
3
|
cursor: pointer;
|
|
4
4
|
}
|
|
5
5
|
/** 右键菜单样式 */
|
|
6
|
-
.context-menu[data-v-
|
|
6
|
+
.context-menu[data-v-8fd513e6] {
|
|
7
7
|
position: absolute;
|
|
8
8
|
background: #fff;
|
|
9
9
|
z-index: 999;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
border-radius: 10px;
|
|
15
15
|
font-size: 14px;
|
|
16
16
|
}
|
|
17
|
-
.context-menu li[data-v-
|
|
17
|
+
.context-menu li[data-v-8fd513e6] {
|
|
18
18
|
list-style-type: none;
|
|
19
19
|
min-width: 75px;
|
|
20
20
|
line-height: 28px;
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
padding-left: 5px;
|
|
24
24
|
cursor: pointer;
|
|
25
25
|
}
|
|
26
|
-
.context-menu li[data-v-
|
|
26
|
+
.context-menu li[data-v-8fd513e6]:hover {
|
|
27
27
|
background: #0165e1;
|
|
28
28
|
color: #fff;
|
|
29
29
|
}
|
|
30
30
|
/** 右键菜单样式 */
|
|
31
|
-
.custom-tree-node[data-v-
|
|
31
|
+
.custom-tree-node[data-v-8fd513e6] {
|
|
32
32
|
font-size: 14px;
|
|
33
33
|
padding-right: 8px;
|
|
34
34
|
display: flex; /* 使用Flex布局 */
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
const serviceList_vue_vue_type_script_setup_true_lang = require("./service-list.vue2.js");
|
|
3
3
|
;/* empty css */
|
|
4
4
|
const _pluginVue_exportHelper = require("../../_virtual/_plugin-vue_export-helper.js");
|
|
5
|
-
const ServiceList = /* @__PURE__ */ _pluginVue_exportHelper(serviceList_vue_vue_type_script_setup_true_lang, [["__scopeId", "data-v-
|
|
5
|
+
const ServiceList = /* @__PURE__ */ _pluginVue_exportHelper(serviceList_vue_vue_type_script_setup_true_lang, [["__scopeId", "data-v-8fd513e6"]]);
|
|
6
6
|
module.exports = ServiceList;
|
|
@@ -6,7 +6,7 @@ const http = require("agilebuilder-ui/src/utils/request");
|
|
|
6
6
|
const nodeUtil = require("../common/util/node-util.js");
|
|
7
7
|
const pageStore = require("../../stores/page-store.js");
|
|
8
8
|
const elementPlus = require("element-plus");
|
|
9
|
-
const _withScopeId = (n) => (vue.pushScopeId("data-v-
|
|
9
|
+
const _withScopeId = (n) => (vue.pushScopeId("data-v-8fd513e6"), n = n(), vue.popScopeId(), n);
|
|
10
10
|
const _hoisted_1 = { class: "custom-tree-node" };
|
|
11
11
|
const _hoisted_2 = { style: { "margin-left": "5px", "line-height": "14px", "font-size": "14px" } };
|
|
12
12
|
const _hoisted_3 = { class: "dialog-footer" };
|
|
@@ -45,7 +45,6 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
45
45
|
const props = __props;
|
|
46
46
|
const search = vue.ref("");
|
|
47
47
|
const contxtMenuRef = vue.ref();
|
|
48
|
-
const serviceTreeRef = vue.ref();
|
|
49
48
|
const showContextMenu = vue.ref(false);
|
|
50
49
|
const contextMenuData = vue.ref({});
|
|
51
50
|
const dialogVisible = vue.ref(false);
|
|
@@ -223,8 +222,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
223
222
|
}),
|
|
224
223
|
vue.createVNode(_component_el_tree, {
|
|
225
224
|
style: { "margin-top": "10px" },
|
|
226
|
-
|
|
227
|
-
ref: serviceTreeRef,
|
|
225
|
+
ref: "serviceTreeRef",
|
|
228
226
|
data: __props.serviceTreeData,
|
|
229
227
|
props: treeProps,
|
|
230
228
|
"default-expand-all": true,
|
|
@@ -22,7 +22,7 @@ const useServiceFlowStore = pinia.defineStore("serviceFlowStoreUtil", () => {
|
|
|
22
22
|
setPageContextVarOptions(newPageContext);
|
|
23
23
|
}
|
|
24
24
|
function setPageContextVarOptions(pageObject) {
|
|
25
|
-
if (pageObject) {
|
|
25
|
+
if (pageObject && pageObject.modelFields) {
|
|
26
26
|
pageObject.modelFields.forEach((element) => {
|
|
27
27
|
pageContextVarOptions.value.dataOptions.push({
|
|
28
28
|
value: element.name,
|