@fecp/designer 5.6.10 → 5.6.11
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/es/designer/package.json.mjs +1 -1
- package/es/designer/src/components/DocumentParam.vue.mjs +1 -1
- package/es/designer/src/components/FieldSetMapping.vue2.mjs +11 -3
- package/es/designer/src/components/ParamsConfig.vue2.mjs +1 -1
- package/es/designer/src/layout/aside/HiddenFieldDialog.vue.mjs +1 -1
- package/es/designer/src/packages/advancedFilter/ValueInput.vue2.mjs +1 -1
- package/es/designer/src/packages/dataLinkage/index.vue.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/index.vue.mjs +2 -1
- package/es/designer/src/packages/eventFlow/dialog/action/RiskSch.vue.mjs +1 -1
- package/es/designer/src/packages/eventFlow/dialog/action/TableSelection.vue2.mjs +64 -0
- package/es/designer/src/packages/eventFlow/dialog/action/config.mjs +10 -0
- package/es/designer/src/packages/form/property/approvalHistory.vue.mjs +1 -1
- package/es/designer/src/packages/form/property/contract.vue.mjs +1 -1
- package/es/designer/src/packages/form/property/subForm.vue.mjs +1 -1
- package/es/designer/src/packages/importantDataChange/index.vue.mjs +1 -1
- package/es/designer/src/packages/prod/index.vue.mjs +1 -1
- package/es/designer/src/packages/table/headerBtn.vue.mjs +2 -1
- package/es/designer.css +84 -73
- package/es/packages/vue/src/components/dialog/DialogRenderer.vue2.mjs +13 -10
- package/es/packages/vue/src/components/table/Table.vue.mjs +5 -1
- package/es/packages/vue/src/utils/eventFlow/actionHandlers.mjs +43 -0
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/components/DocumentParam.vue.js +1 -1
- package/lib/designer/src/components/FieldSetMapping.vue2.js +11 -3
- package/lib/designer/src/components/ParamsConfig.vue2.js +1 -1
- package/lib/designer/src/layout/aside/HiddenFieldDialog.vue.js +1 -1
- package/lib/designer/src/packages/advancedFilter/ValueInput.vue2.js +1 -1
- package/lib/designer/src/packages/dataLinkage/index.vue.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/index.vue.js +2 -1
- package/lib/designer/src/packages/eventFlow/dialog/action/RiskSch.vue.js +1 -1
- package/lib/designer/src/packages/eventFlow/dialog/action/TableSelection.vue2.js +64 -0
- package/lib/designer/src/packages/eventFlow/dialog/action/config.js +10 -0
- package/lib/designer/src/packages/form/property/approvalHistory.vue.js +1 -1
- package/lib/designer/src/packages/form/property/contract.vue.js +1 -1
- package/lib/designer/src/packages/form/property/subForm.vue.js +1 -1
- package/lib/designer/src/packages/importantDataChange/index.vue.js +1 -1
- package/lib/designer/src/packages/prod/index.vue.js +1 -1
- package/lib/designer/src/packages/table/headerBtn.vue.js +2 -1
- package/lib/designer.css +84 -73
- package/lib/packages/vue/src/components/dialog/DialogRenderer.vue2.js +12 -9
- package/lib/packages/vue/src/components/table/Table.vue.js +5 -1
- package/lib/packages/vue/src/utils/eventFlow/actionHandlers.js +43 -0
- package/package.json +1 -1
|
@@ -76,6 +76,7 @@ const widgets = require("../table/property/widgets.vue.js");
|
|
|
76
76
|
;/* empty css */
|
|
77
77
|
;/* empty css */
|
|
78
78
|
;/* empty css */
|
|
79
|
+
;/* empty css */
|
|
79
80
|
;/* empty css */
|
|
80
81
|
;/* empty css */
|
|
81
82
|
;/* empty css */
|
|
@@ -86,7 +87,7 @@ const widgets = require("../table/property/widgets.vue.js");
|
|
|
86
87
|
require("../../../../node_modules/element-plus/theme-chalk/el-tab-pane.css.js");
|
|
87
88
|
;/* empty css */
|
|
88
89
|
;/* empty css */
|
|
89
|
-
;/* empty css
|
|
90
|
+
;/* empty css */
|
|
90
91
|
;/* empty css */
|
|
91
92
|
;/* empty css */
|
|
92
93
|
;/* empty css */
|
|
@@ -6,7 +6,7 @@ require("../../../../../../node_modules/element-plus/es/index.js");
|
|
|
6
6
|
;/* empty css */
|
|
7
7
|
const Vue = require("vue");
|
|
8
8
|
const RiskSchemeSelector = require("../../../../components/RiskSchemeSelector.vue2.js");
|
|
9
|
-
const ValueSelector = require("../../../../components/ValueSelector.
|
|
9
|
+
const ValueSelector = require("../../../../components/ValueSelector.vue.js");
|
|
10
10
|
const ParamsConfig = require("../../../../components/ParamsConfig.vue2.js");
|
|
11
11
|
const index = require("../../../../../../node_modules/element-plus/es/components/form/index.js");
|
|
12
12
|
const index$1 = require("../../../../../../node_modules/element-plus/es/components/switch/index.js");
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
require("../../../../../../node_modules/element-plus/es/index.js");
|
|
4
|
+
;/* empty css */
|
|
5
|
+
;/* empty css */
|
|
6
|
+
const Vue = require("vue");
|
|
7
|
+
const FieldSetMapping = require("../../../../components/FieldSetMapping.vue2.js");
|
|
8
|
+
const common = require("../../../utils/common.js");
|
|
9
|
+
const index = require("../../../../api/index.js");
|
|
10
|
+
;/* empty css */
|
|
11
|
+
const _pluginVue_exportHelper = require("../../../../../../_virtual/_plugin-vue_export-helper.js");
|
|
12
|
+
const index$1 = require("../../../../../../node_modules/element-plus/es/components/form/index.js");
|
|
13
|
+
const _sfc_main = {
|
|
14
|
+
__name: "TableSelection",
|
|
15
|
+
props: {
|
|
16
|
+
formData: Object
|
|
17
|
+
},
|
|
18
|
+
setup(__props) {
|
|
19
|
+
const currentInstance = Vue.getCurrentInstance();
|
|
20
|
+
const ctx = currentInstance.proxy;
|
|
21
|
+
const props = __props;
|
|
22
|
+
const fieldList = Vue.computed(() => {
|
|
23
|
+
const fieldList2 = common.getEditConfigDataFields();
|
|
24
|
+
const editConfigData = common.getEditConfigData();
|
|
25
|
+
const hiddenFields = (editConfigData == null ? void 0 : editConfigData.hiddenFields) || [];
|
|
26
|
+
return [...fieldList2, ...hiddenFields];
|
|
27
|
+
});
|
|
28
|
+
const subTableOptions = Vue.ref({});
|
|
29
|
+
Vue.watch(
|
|
30
|
+
() => props.formData.selectSubTableFieldId,
|
|
31
|
+
(id) => {
|
|
32
|
+
const fieldItem = common.getEditConfigDataFields().find((item) => item.id == id);
|
|
33
|
+
if (fieldItem) {
|
|
34
|
+
const subTableId = fieldItem.subTableId;
|
|
35
|
+
index.default.getById(ctx.$http, subTableId).then((data) => {
|
|
36
|
+
subTableOptions.value = JSON.parse(data.context);
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
immediate: true
|
|
42
|
+
}
|
|
43
|
+
);
|
|
44
|
+
return (_ctx, _cache) => {
|
|
45
|
+
const _component_el_form_item = index$1.ElFormItem;
|
|
46
|
+
return Vue.openBlock(), Vue.createBlock(_component_el_form_item, { label: "选取后隐藏域赋值映射" }, {
|
|
47
|
+
default: Vue.withCtx(() => [
|
|
48
|
+
Vue.createVNode(FieldSetMapping.default, {
|
|
49
|
+
modelValue: __props.formData.tableSelectionFieldMapping,
|
|
50
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => __props.formData.tableSelectionFieldMapping = $event),
|
|
51
|
+
fieldLabel: "赋值隐藏域字段",
|
|
52
|
+
valueLabel: "列表字段",
|
|
53
|
+
valueOptions: Vue.unref(fieldList),
|
|
54
|
+
hasField: false,
|
|
55
|
+
valueSelectMode: ""
|
|
56
|
+
}, null, 8, ["modelValue", "valueOptions"])
|
|
57
|
+
]),
|
|
58
|
+
_: 1
|
|
59
|
+
});
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
const TableSelection = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-de74c7a5"]]);
|
|
64
|
+
exports.default = TableSelection;
|
|
@@ -13,6 +13,7 @@ const TableRowDelete = require("./TableRowDelete.vue2.js");
|
|
|
13
13
|
const Dialog = require("./Dialog.vue.js");
|
|
14
14
|
const Upload = require("./Upload.vue2.js");
|
|
15
15
|
const TableChildSelection = require("./TableChildSelection.vue2.js");
|
|
16
|
+
const TableSelection = require("./TableSelection.vue2.js");
|
|
16
17
|
const RiskSch = require("./RiskSch.vue.js");
|
|
17
18
|
const menuData = [
|
|
18
19
|
{
|
|
@@ -166,6 +167,15 @@ const menuData = [
|
|
|
166
167
|
resetTableAfterDelete: true
|
|
167
168
|
}
|
|
168
169
|
},
|
|
170
|
+
{
|
|
171
|
+
index: "table-selection",
|
|
172
|
+
label: "列表勾选数据赋值",
|
|
173
|
+
desc: "将列表勾选的数据赋值到隐藏域字段",
|
|
174
|
+
component: TableSelection.default,
|
|
175
|
+
default: {
|
|
176
|
+
tableSelectionFieldMapping: []
|
|
177
|
+
}
|
|
178
|
+
},
|
|
169
179
|
{
|
|
170
180
|
index: "table-child-refresh",
|
|
171
181
|
label: "子列表数据刷新",
|
|
@@ -13,7 +13,7 @@ require("../../../../../node_modules/element-plus/es/index.js");
|
|
|
13
13
|
const Vue = require("vue");
|
|
14
14
|
const common = require("../../utils/common.js");
|
|
15
15
|
const eventBus = require("../../utils/eventBus.js");
|
|
16
|
-
const ValueSelector = require("../../../components/ValueSelector.
|
|
16
|
+
const ValueSelector = require("../../../components/ValueSelector.vue.js");
|
|
17
17
|
const index = require("../../../../../node_modules/element-plus/es/components/collapse/index.js");
|
|
18
18
|
const index$1 = require("../../../../../node_modules/element-plus/es/components/form/index.js");
|
|
19
19
|
const index$2 = require("../../../../../node_modules/element-plus/es/components/input/index.js");
|
|
@@ -20,7 +20,7 @@ const EventConfigButton = require("../../../components/EventConfigButton.vue.js"
|
|
|
20
20
|
const Vue = require("vue");
|
|
21
21
|
const common = require("../../utils/common.js");
|
|
22
22
|
require("../../utils/eventBus.js");
|
|
23
|
-
const ValueSelector = require("../../../components/ValueSelector.
|
|
23
|
+
const ValueSelector = require("../../../components/ValueSelector.vue.js");
|
|
24
24
|
const index = require("../../../api/index.js");
|
|
25
25
|
const ParamsConfig = require("../../../components/ParamsConfig.vue2.js");
|
|
26
26
|
;/* empty css */
|
|
@@ -14,7 +14,7 @@ const Vue = require("vue");
|
|
|
14
14
|
const common = require("../../utils/common.js");
|
|
15
15
|
const TemplateSelector = require("../../../components/TemplateSelector.vue2.js");
|
|
16
16
|
const eventBus = require("../../utils/eventBus.js");
|
|
17
|
-
const ValueSelector = require("../../../components/ValueSelector.
|
|
17
|
+
const ValueSelector = require("../../../components/ValueSelector.vue.js");
|
|
18
18
|
const ParamsConfig = require("../../../components/ParamsConfig.vue2.js");
|
|
19
19
|
const index = require("../../../../../node_modules/element-plus/es/components/collapse/index.js");
|
|
20
20
|
const index$1 = require("../../../../../node_modules/element-plus/es/components/form/index.js");
|
|
@@ -7,7 +7,7 @@ require("../../../../node_modules/element-plus/es/index.js");
|
|
|
7
7
|
;/* empty css */
|
|
8
8
|
;/* empty css */
|
|
9
9
|
const Vue = require("vue");
|
|
10
|
-
const ValueSelector = require("../../components/ValueSelector.
|
|
10
|
+
const ValueSelector = require("../../components/ValueSelector.vue.js");
|
|
11
11
|
const common = require("../utils/common.js");
|
|
12
12
|
;/* empty css */
|
|
13
13
|
const _pluginVue_exportHelper = require("../../../../_virtual/_plugin-vue_export-helper.js");
|
|
@@ -16,7 +16,7 @@ require("../../../../node_modules/element-plus/es/index.js");
|
|
|
16
16
|
const Vue = require("vue");
|
|
17
17
|
const index$6 = require("../../../../node_modules/@element-plus/icons-vue/dist/index.js");
|
|
18
18
|
const common = require("../utils/common.js");
|
|
19
|
-
const ValueSelector = require("../../components/ValueSelector.
|
|
19
|
+
const ValueSelector = require("../../components/ValueSelector.vue.js");
|
|
20
20
|
const index = require("../../api/index.js");
|
|
21
21
|
;/* empty css */
|
|
22
22
|
const _pluginVue_exportHelper = require("../../../../_virtual/_plugin-vue_export-helper.js");
|
|
@@ -47,7 +47,7 @@ const index$1 = require("../../../../node_modules/@element-plus/icons-vue/dist/i
|
|
|
47
47
|
;/* empty css */
|
|
48
48
|
require("../../store/index.js");
|
|
49
49
|
;/* empty css */
|
|
50
|
-
;/* empty css
|
|
50
|
+
;/* empty css */
|
|
51
51
|
;/* empty css */
|
|
52
52
|
;/* empty css */
|
|
53
53
|
;/* empty css */
|
|
@@ -78,6 +78,7 @@ const useDialogGlobalDialog = require("../dialogGlobal/useDialogGlobalDialog.js"
|
|
|
78
78
|
;/* empty css */
|
|
79
79
|
;/* empty css */
|
|
80
80
|
;/* empty css */
|
|
81
|
+
;/* empty css */
|
|
81
82
|
;/* empty css */
|
|
82
83
|
;/* empty css */
|
|
83
84
|
;/* empty css */
|
package/lib/designer.css
CHANGED
|
@@ -944,98 +944,98 @@
|
|
|
944
944
|
font-size: 12px;
|
|
945
945
|
color: #aaaaaa;
|
|
946
946
|
}
|
|
947
|
-
.field-mapping-container[data-v-
|
|
947
|
+
.field-mapping-container[data-v-f3c710c3] {
|
|
948
948
|
width: 100%;
|
|
949
949
|
}
|
|
950
|
-
.field-mapping-container.small .value-header[data-v-
|
|
951
|
-
.field-mapping-container.small .field-cell[data-v-
|
|
952
|
-
.field-mapping-container.small .value-cell[data-v-
|
|
953
|
-
.field-mapping-container.small .field-header[data-v-
|
|
950
|
+
.field-mapping-container.small .value-header[data-v-f3c710c3],
|
|
951
|
+
.field-mapping-container.small .field-cell[data-v-f3c710c3],
|
|
952
|
+
.field-mapping-container.small .value-cell[data-v-f3c710c3],
|
|
953
|
+
.field-mapping-container.small .field-header[data-v-f3c710c3] {
|
|
954
954
|
min-width: 100px !important;
|
|
955
955
|
}
|
|
956
|
-
.field-mapping-container .mapping-table[data-v-
|
|
956
|
+
.field-mapping-container .mapping-table[data-v-f3c710c3] {
|
|
957
957
|
width: 100%;
|
|
958
958
|
border: 1px solid #dcdfe6;
|
|
959
959
|
border-radius: 4px;
|
|
960
960
|
overflow: hidden;
|
|
961
961
|
}
|
|
962
|
-
.field-mapping-container .mapping-table .mapping-header[data-v-
|
|
962
|
+
.field-mapping-container .mapping-table .mapping-header[data-v-f3c710c3] {
|
|
963
963
|
display: flex;
|
|
964
964
|
background-color: #f5f7fa;
|
|
965
965
|
height: 26px;
|
|
966
966
|
line-height: 26px;
|
|
967
967
|
}
|
|
968
|
-
.field-mapping-container .mapping-table .mapping-header .mapping-cell[data-v-
|
|
968
|
+
.field-mapping-container .mapping-table .mapping-header .mapping-cell[data-v-f3c710c3] {
|
|
969
969
|
padding: 0px 12px;
|
|
970
970
|
font-weight: 500;
|
|
971
971
|
font-size: 13px;
|
|
972
972
|
color: #606266;
|
|
973
973
|
border-right: 1px solid #dcdfe6;
|
|
974
974
|
}
|
|
975
|
-
.field-mapping-container .mapping-table .mapping-header .mapping-cell[data-v-
|
|
975
|
+
.field-mapping-container .mapping-table .mapping-header .mapping-cell[data-v-f3c710c3]:last-child {
|
|
976
976
|
border-right: none;
|
|
977
977
|
}
|
|
978
|
-
.field-mapping-container .mapping-table .mapping-header .mapping-cell.field-header[data-v-
|
|
978
|
+
.field-mapping-container .mapping-table .mapping-header .mapping-cell.field-header[data-v-f3c710c3] {
|
|
979
979
|
flex: 1;
|
|
980
980
|
min-width: 120px;
|
|
981
981
|
font-size: 12px;
|
|
982
982
|
}
|
|
983
|
-
.field-mapping-container .mapping-table .mapping-header .mapping-cell.value-header[data-v-
|
|
983
|
+
.field-mapping-container .mapping-table .mapping-header .mapping-cell.value-header[data-v-f3c710c3] {
|
|
984
984
|
flex: 2;
|
|
985
985
|
min-width: 120px;
|
|
986
986
|
font-size: 12px;
|
|
987
987
|
}
|
|
988
|
-
.field-mapping-container .mapping-table .mapping-header .mapping-cell.action-header[data-v-
|
|
988
|
+
.field-mapping-container .mapping-table .mapping-header .mapping-cell.action-header[data-v-f3c710c3] {
|
|
989
989
|
width: 50px;
|
|
990
990
|
text-align: center;
|
|
991
991
|
}
|
|
992
|
-
.field-mapping-container .mapping-table .mapping-body[data-v-
|
|
992
|
+
.field-mapping-container .mapping-table .mapping-body[data-v-f3c710c3] {
|
|
993
993
|
border-bottom: 1px solid #ebeef5;
|
|
994
994
|
}
|
|
995
|
-
.field-mapping-container .mapping-table .mapping-body .mapping-row[data-v-
|
|
995
|
+
.field-mapping-container .mapping-table .mapping-body .mapping-row[data-v-f3c710c3] {
|
|
996
996
|
display: flex;
|
|
997
997
|
border-top: 1px solid #ebeef5;
|
|
998
998
|
}
|
|
999
|
-
.field-mapping-container .mapping-table .mapping-body .mapping-row[data-v-
|
|
999
|
+
.field-mapping-container .mapping-table .mapping-body .mapping-row[data-v-f3c710c3]:hover {
|
|
1000
1000
|
background-color: #f5f7fa;
|
|
1001
1001
|
}
|
|
1002
|
-
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell[data-v-
|
|
1002
|
+
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell[data-v-f3c710c3] {
|
|
1003
1003
|
padding: 5px;
|
|
1004
1004
|
display: flex;
|
|
1005
1005
|
align-items: center;
|
|
1006
1006
|
}
|
|
1007
|
-
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell.field-cell[data-v-
|
|
1007
|
+
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell.field-cell[data-v-f3c710c3], .field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell.value-cell[data-v-f3c710c3] {
|
|
1008
1008
|
flex: 1;
|
|
1009
1009
|
min-width: 120px;
|
|
1010
1010
|
}
|
|
1011
|
-
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell.value-cell[data-v-
|
|
1011
|
+
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell.value-cell[data-v-f3c710c3] {
|
|
1012
1012
|
flex: 2;
|
|
1013
1013
|
min-width: 120px;
|
|
1014
1014
|
}
|
|
1015
|
-
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell.action-cell[data-v-
|
|
1015
|
+
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell.action-cell[data-v-f3c710c3] {
|
|
1016
1016
|
width: 50px;
|
|
1017
1017
|
display: flex;
|
|
1018
1018
|
align-items: center;
|
|
1019
1019
|
justify-content: center;
|
|
1020
1020
|
}
|
|
1021
|
-
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell.action-cell[data-v-
|
|
1021
|
+
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell.action-cell[data-v-f3c710c3] .el-button {
|
|
1022
1022
|
padding: 4px;
|
|
1023
1023
|
}
|
|
1024
|
-
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell.action-cell[data-v-
|
|
1024
|
+
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell.action-cell[data-v-f3c710c3] .el-input {
|
|
1025
1025
|
width: 100%;
|
|
1026
1026
|
}
|
|
1027
|
-
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell[data-v-
|
|
1027
|
+
.field-mapping-container .mapping-table .mapping-body .mapping-row .mapping-cell[data-v-f3c710c3] .el-input {
|
|
1028
1028
|
width: 100%;
|
|
1029
1029
|
}
|
|
1030
|
-
.field-mapping-container .mapping-table .mapping-footer[data-v-
|
|
1030
|
+
.field-mapping-container .mapping-table .mapping-footer[data-v-f3c710c3] {
|
|
1031
1031
|
padding: 5px 12px;
|
|
1032
1032
|
text-align: left;
|
|
1033
1033
|
}
|
|
1034
|
-
.field-mapping-dropdown[data-v-
|
|
1034
|
+
.field-mapping-dropdown[data-v-f3c710c3] {
|
|
1035
1035
|
padding: 0;
|
|
1036
1036
|
width: 220px;
|
|
1037
1037
|
}
|
|
1038
|
-
.field-mapping-dropdown .dropdown-header[data-v-
|
|
1038
|
+
.field-mapping-dropdown .dropdown-header[data-v-f3c710c3] {
|
|
1039
1039
|
display: flex;
|
|
1040
1040
|
justify-content: space-between;
|
|
1041
1041
|
align-items: center;
|
|
@@ -1043,40 +1043,40 @@
|
|
|
1043
1043
|
border-bottom: 1px solid #e4e7ed;
|
|
1044
1044
|
background-color: #f5f7fa;
|
|
1045
1045
|
}
|
|
1046
|
-
.field-mapping-dropdown .dropdown-header .header-title[data-v-
|
|
1046
|
+
.field-mapping-dropdown .dropdown-header .header-title[data-v-f3c710c3] {
|
|
1047
1047
|
font-size: 14px;
|
|
1048
1048
|
font-weight: 500;
|
|
1049
1049
|
color: #303133;
|
|
1050
1050
|
}
|
|
1051
|
-
.field-mapping-dropdown .dropdown-content[data-v-
|
|
1051
|
+
.field-mapping-dropdown .dropdown-content[data-v-f3c710c3] {
|
|
1052
1052
|
padding: 5px 0;
|
|
1053
1053
|
}
|
|
1054
|
-
.field-mapping-dropdown .dropdown-content[data-v-
|
|
1054
|
+
.field-mapping-dropdown .dropdown-content[data-v-f3c710c3] .el-checkbox {
|
|
1055
1055
|
width: 100%;
|
|
1056
1056
|
}
|
|
1057
|
-
.field-mapping-dropdown .dropdown-content[data-v-
|
|
1057
|
+
.field-mapping-dropdown .dropdown-content[data-v-f3c710c3] .el-checkbox__label {
|
|
1058
1058
|
font-size: 13px;
|
|
1059
1059
|
font-weight: normal;
|
|
1060
1060
|
}
|
|
1061
|
-
.field-mapping-dropdown .dropdown-content .el-dropdown-item[data-v-
|
|
1061
|
+
.field-mapping-dropdown .dropdown-content .el-dropdown-item[data-v-f3c710c3] {
|
|
1062
1062
|
padding: 0;
|
|
1063
1063
|
line-height: normal;
|
|
1064
1064
|
}
|
|
1065
|
-
.field-mapping-dropdown .dropdown-content .el-dropdown-item .el-checkbox[data-v-
|
|
1065
|
+
.field-mapping-dropdown .dropdown-content .el-dropdown-item .el-checkbox[data-v-f3c710c3] {
|
|
1066
1066
|
width: 100%;
|
|
1067
1067
|
padding: 8px 12px;
|
|
1068
1068
|
margin: 0;
|
|
1069
1069
|
display: flex;
|
|
1070
1070
|
align-items: center;
|
|
1071
1071
|
}
|
|
1072
|
-
.field-mapping-dropdown .dropdown-content .el-dropdown-item .el-checkbox[data-v-
|
|
1072
|
+
.field-mapping-dropdown .dropdown-content .el-dropdown-item .el-checkbox[data-v-f3c710c3]:hover {
|
|
1073
1073
|
background-color: #f5f7fa;
|
|
1074
1074
|
}
|
|
1075
|
-
.field-mapping-dropdown .dropdown-content .el-dropdown-item .el-checkbox[data-v-
|
|
1075
|
+
.field-mapping-dropdown .dropdown-content .el-dropdown-item .el-checkbox[data-v-f3c710c3] .el-checkbox__label {
|
|
1076
1076
|
font-size: 13px;
|
|
1077
1077
|
color: #606266;
|
|
1078
1078
|
}
|
|
1079
|
-
.field-mapping-dropdown .dropdown-content .el-dropdown-item .empty-text[data-v-
|
|
1079
|
+
.field-mapping-dropdown .dropdown-content .el-dropdown-item .empty-text[data-v-f3c710c3] {
|
|
1080
1080
|
display: block;
|
|
1081
1081
|
padding: 12px;
|
|
1082
1082
|
text-align: center;
|
|
@@ -2202,6 +2202,12 @@ to {
|
|
|
2202
2202
|
font-size: 12px;
|
|
2203
2203
|
color: #aaaaaa;
|
|
2204
2204
|
}
|
|
2205
|
+
|
|
2206
|
+
.form-item-tip[data-v-de74c7a5] {
|
|
2207
|
+
margin-left: 10px;
|
|
2208
|
+
font-size: 12px;
|
|
2209
|
+
color: #aaaaaa;
|
|
2210
|
+
}
|
|
2205
2211
|
.search-bar[data-v-b943b417] {
|
|
2206
2212
|
display: flex;
|
|
2207
2213
|
align-items: center;
|
|
@@ -6031,18 +6037,18 @@ body,
|
|
|
6031
6037
|
:root,:host{--van-overlay-z-index: 1;--van-overlay-background: rgba(0, 0, 0, .7)}.van-overlay{position:fixed;top:0;left:0;z-index:var(--van-overlay-z-index);width:100%;height:100%;background:var(--van-overlay-background)}
|
|
6032
6038
|
:root,:host{--van-popup-background: var(--van-background-2);--van-popup-transition: transform var(--van-duration-base);--van-popup-round-radius: 16px;--van-popup-close-icon-size: 22px;--van-popup-close-icon-color: var(--van-gray-5);--van-popup-close-icon-margin: 16px;--van-popup-close-icon-z-index: 1}.van-overflow-hidden{overflow:hidden!important}.van-popup{position:fixed;max-height:100%;overflow-y:auto;box-sizing:border-box;background:var(--van-popup-background);transition:var(--van-popup-transition);-webkit-overflow-scrolling:touch}.van-popup--center{top:50%;left:0;right:0;width:-webkit-fit-content;width:fit-content;max-width:calc(100vw - var(--van-padding-md) * 2);margin:0 auto;transform:translateY(-50%)}.van-popup--center.van-popup--round{border-radius:var(--van-popup-round-radius)}.van-popup--top{top:0;left:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 var(--van-popup-round-radius) var(--van-popup-round-radius)}.van-popup--right{top:50%;right:0;transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:var(--van-popup-round-radius) 0 0 var(--van-popup-round-radius)}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:var(--van-popup-round-radius) var(--van-popup-round-radius) 0 0}.van-popup--left{top:50%;left:0;transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 var(--van-popup-round-radius) var(--van-popup-round-radius) 0}.van-popup-slide-top-enter-active,.van-popup-slide-left-enter-active,.van-popup-slide-right-enter-active,.van-popup-slide-bottom-enter-active{transition-timing-function:var(--van-ease-out)}.van-popup-slide-top-leave-active,.van-popup-slide-left-leave-active,.van-popup-slide-right-leave-active,.van-popup-slide-bottom-leave-active{transition-timing-function:var(--van-ease-in)}.van-popup-slide-top-enter-from,.van-popup-slide-top-leave-active{transform:translate3d(0,-100%,0)}.van-popup-slide-right-enter-from,.van-popup-slide-right-leave-active{transform:translate3d(100%,-50%,0)}.van-popup-slide-bottom-enter-from,.van-popup-slide-bottom-leave-active{transform:translate3d(0,100%,0)}.van-popup-slide-left-enter-from,.van-popup-slide-left-leave-active{transform:translate3d(-100%,-50%,0)}.van-popup__close-icon{position:absolute;z-index:var(--van-popup-close-icon-z-index);color:var(--van-popup-close-icon-color);font-size:var(--van-popup-close-icon-size)}.van-popup__close-icon--top-left{top:var(--van-popup-close-icon-margin);left:var(--van-popup-close-icon-margin)}.van-popup__close-icon--top-right{top:var(--van-popup-close-icon-margin);right:var(--van-popup-close-icon-margin)}.van-popup__close-icon--bottom-left{bottom:var(--van-popup-close-icon-margin);left:var(--van-popup-close-icon-margin)}.van-popup__close-icon--bottom-right{right:var(--van-popup-close-icon-margin);bottom:var(--van-popup-close-icon-margin)}
|
|
6033
6039
|
:root,:host{--van-dialog-width: 320px;--van-dialog-small-screen-width: 90%;--van-dialog-font-size: var(--van-font-size-lg);--van-dialog-transition: var(--van-duration-base);--van-dialog-radius: 16px;--van-dialog-background: var(--van-background-2);--van-dialog-header-font-weight: var(--van-font-bold);--van-dialog-header-line-height: 24px;--van-dialog-header-padding-top: 26px;--van-dialog-header-isolated-padding: var(--van-padding-lg) 0;--van-dialog-message-padding: var(--van-padding-lg);--van-dialog-message-font-size: var(--van-font-size-md);--van-dialog-message-line-height: var(--van-line-height-md);--van-dialog-message-max-height: 60vh;--van-dialog-has-title-message-text-color: var(--van-gray-7);--van-dialog-has-title-message-padding-top: var(--van-padding-xs);--van-dialog-button-height: 48px;--van-dialog-round-button-height: 36px;--van-dialog-confirm-button-text-color: var(--van-primary-color)}.van-dialog{top:45%;width:var(--van-dialog-width);overflow:hidden;font-size:var(--van-dialog-font-size);background:var(--van-dialog-background);border-radius:var(--van-dialog-radius);-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:var(--van-dialog-transition);transition-property:transform,opacity}@media (max-width: 321px){.van-dialog{width:var(--van-dialog-small-screen-width)}}.van-dialog__header{color:var(--van-text-color);padding-top:var(--van-dialog-header-padding-top);font-weight:var(--van-dialog-header-font-weight);line-height:var(--van-dialog-header-line-height);text-align:center}.van-dialog__header--isolated{padding:var(--van-dialog-header-isolated-padding)}.van-dialog__content--isolated{display:flex;align-items:center;min-height:104px}.van-dialog__message{color:var(--van-text-color);flex:1;max-height:var(--van-dialog-message-max-height);padding:26px var(--van-dialog-message-padding);overflow-y:auto;font-size:var(--van-dialog-message-font-size);line-height:var(--van-dialog-message-line-height);white-space:pre-wrap;text-align:center;word-wrap:break-word;-webkit-overflow-scrolling:touch}.van-dialog__message--has-title{padding-top:var(--van-dialog-has-title-message-padding-top);color:var(--van-dialog-has-title-message-text-color)}.van-dialog__message--left{text-align:left}.van-dialog__message--right{text-align:right}.van-dialog__message--justify{text-align:justify}.van-dialog__footer{display:flex;overflow:hidden;-webkit-user-select:none;user-select:none}.van-dialog__confirm,.van-dialog__cancel{flex:1;height:var(--van-dialog-button-height);margin:0;border:0;border-radius:0}.van-dialog__confirm,.van-dialog__confirm:active{color:var(--van-dialog-confirm-button-text-color)}.van-dialog--round-button .van-dialog__footer{position:relative;height:auto;padding:var(--van-padding-xs) var(--van-padding-lg) var(--van-padding-md)}.van-dialog--round-button .van-dialog__message{padding-bottom:var(--van-padding-md);color:var(--van-text-color)}.van-dialog--round-button .van-dialog__confirm,.van-dialog--round-button .van-dialog__cancel{height:var(--van-dialog-round-button-height)}.van-dialog--round-button .van-dialog__confirm{color:var(--van-white)}.van-dialog--round-button .van-action-bar-button--first{border-top-left-radius:var(--van-radius-max);border-bottom-left-radius:var(--van-radius-max)}.van-dialog--round-button .van-action-bar-button--last{border-top-right-radius:var(--van-radius-max);border-bottom-right-radius:var(--van-radius-max)}.van-dialog-bounce-enter-from{transform:translate3d(0,-50%,0) scale(.7);opacity:0}.van-dialog-bounce-leave-active{transform:translate3d(0,-50%,0) scale(.9);opacity:0}
|
|
6034
|
-
.dialog-header-content[data-v-
|
|
6040
|
+
.dialog-header-content[data-v-2b0f2231] {
|
|
6035
6041
|
font-size: 16px;
|
|
6036
6042
|
font-weight: 600;
|
|
6037
6043
|
color: #303133;
|
|
6038
6044
|
}
|
|
6039
|
-
.dialog-content-wrapper[data-v-
|
|
6045
|
+
.dialog-content-wrapper[data-v-2b0f2231] {
|
|
6040
6046
|
min-height: 500px;
|
|
6041
6047
|
flex-grow: 1;
|
|
6042
6048
|
display: flex;
|
|
6043
6049
|
flex-direction: column;
|
|
6044
6050
|
}
|
|
6045
|
-
.empty-content[data-v-
|
|
6051
|
+
.empty-content[data-v-2b0f2231] {
|
|
6046
6052
|
display: flex;
|
|
6047
6053
|
align-items: center;
|
|
6048
6054
|
justify-content: center;
|
|
@@ -6050,7 +6056,7 @@ body,
|
|
|
6050
6056
|
color: #909399;
|
|
6051
6057
|
font-size: 14px;
|
|
6052
6058
|
}
|
|
6053
|
-
.component-error[data-v-
|
|
6059
|
+
.component-error[data-v-2b0f2231] {
|
|
6054
6060
|
padding: 40px 20px;
|
|
6055
6061
|
text-align: center;
|
|
6056
6062
|
color: #f56c6c;
|
|
@@ -6979,12 +6985,12 @@ body,
|
|
|
6979
6985
|
white-space: nowrap;
|
|
6980
6986
|
overflow: hidden;
|
|
6981
6987
|
text-overflow: ellipsis;
|
|
6982
|
-
}.fec-table[data-v-
|
|
6988
|
+
}.fec-table[data-v-28ff595c] {
|
|
6983
6989
|
height: 100%;
|
|
6984
6990
|
flex-grow: 1;
|
|
6985
6991
|
padding: 0 16px;
|
|
6986
6992
|
}
|
|
6987
|
-
.fec-table-container[data-v-
|
|
6993
|
+
.fec-table-container[data-v-28ff595c] {
|
|
6988
6994
|
width: 100%;
|
|
6989
6995
|
background: #fff;
|
|
6990
6996
|
box-sizing: border-box;
|
|
@@ -6994,91 +7000,91 @@ body,
|
|
|
6994
7000
|
overflow: hidden;
|
|
6995
7001
|
flex-grow: 1;
|
|
6996
7002
|
}
|
|
6997
|
-
.fec-table-container .fec-vxe-table[data-v-
|
|
7003
|
+
.fec-table-container .fec-vxe-table[data-v-28ff595c] {
|
|
6998
7004
|
flex: 1;
|
|
6999
7005
|
min-height: 0;
|
|
7000
7006
|
overflow: hidden;
|
|
7001
7007
|
margin-bottom: 16px;
|
|
7002
7008
|
}
|
|
7003
|
-
.fec-table-container[data-v-
|
|
7009
|
+
.fec-table-container[data-v-28ff595c] .vxe-table {
|
|
7004
7010
|
font-size: 14px;
|
|
7005
7011
|
font-family: inherit;
|
|
7006
7012
|
}
|
|
7007
|
-
.fec-table-container[data-v-
|
|
7008
|
-
.fec-table-container[data-v-
|
|
7013
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-sort--asc-btn,
|
|
7014
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-sort--desc-btn {
|
|
7009
7015
|
color: #dcdcdc;
|
|
7010
7016
|
}
|
|
7011
|
-
.fec-table-container[data-v-
|
|
7012
|
-
.fec-table-container[data-v-
|
|
7017
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .serverSort .vxe-sort--asc-btn,
|
|
7018
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .serverSort .vxe-sort--desc-btn {
|
|
7013
7019
|
color: #d3edf9;
|
|
7014
7020
|
}
|
|
7015
|
-
.fec-table-container[data-v-
|
|
7021
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .serverSort .sort--active {
|
|
7016
7022
|
color: var(--el-color-primary);
|
|
7017
7023
|
}
|
|
7018
|
-
.fec-table-container[data-v-
|
|
7024
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .sort--active {
|
|
7019
7025
|
color: var(--el-color-primary);
|
|
7020
7026
|
}
|
|
7021
|
-
.fec-table-container[data-v-
|
|
7027
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-table--body-wrapper {
|
|
7022
7028
|
overflow: auto;
|
|
7023
7029
|
}
|
|
7024
|
-
.fec-table-container[data-v-
|
|
7025
|
-
.fec-table-container[data-v-
|
|
7026
|
-
.fec-table-container[data-v-
|
|
7030
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-table--body,
|
|
7031
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-table--header,
|
|
7032
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-table--footer {
|
|
7027
7033
|
width: 100% !important;
|
|
7028
7034
|
}
|
|
7029
|
-
.fec-table-container[data-v-
|
|
7035
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-header--column {
|
|
7030
7036
|
background-color: #fff;
|
|
7031
7037
|
}
|
|
7032
|
-
.fec-table-container[data-v-
|
|
7038
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-header--column .vxe-cell {
|
|
7033
7039
|
height: 40px !important;
|
|
7034
7040
|
min-height: 40px !important;
|
|
7035
7041
|
color: #333;
|
|
7036
7042
|
}
|
|
7037
|
-
.fec-table-container[data-v-
|
|
7043
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-table--header-inner-wrapper {
|
|
7038
7044
|
height: 40px !important;
|
|
7039
7045
|
}
|
|
7040
|
-
.fec-table-container[data-v-
|
|
7046
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-body--column .vxe-cell {
|
|
7041
7047
|
padding: 6px !important;
|
|
7042
7048
|
min-height: 32px !important;
|
|
7043
7049
|
color: #666;
|
|
7044
7050
|
font-size: 13px;
|
|
7045
7051
|
}
|
|
7046
|
-
.fec-table-container[data-v-
|
|
7047
|
-
.fec-table-container[data-v-
|
|
7052
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-body--column .c--tooltip,
|
|
7053
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-body--column .c--title {
|
|
7048
7054
|
height: 32px !important;
|
|
7049
7055
|
min-height: 32px !important;
|
|
7050
7056
|
}
|
|
7051
|
-
.fec-table-container[data-v-
|
|
7057
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-table--border-line {
|
|
7052
7058
|
border: none;
|
|
7053
7059
|
border-bottom: 1px solid #ebeef5;
|
|
7054
7060
|
border-top: 1px solid #ebeef5;
|
|
7055
7061
|
}
|
|
7056
|
-
.fec-table-container[data-v-
|
|
7057
|
-
.fec-table-container[data-v-
|
|
7062
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-table--scroll-y-handle-appearance,
|
|
7063
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-table--scroll-y-wrapper:after {
|
|
7058
7064
|
border: none !important;
|
|
7059
7065
|
}
|
|
7060
|
-
.fec-table-container[data-v-
|
|
7066
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-table--scroll-y-top-corner {
|
|
7061
7067
|
display: none !important;
|
|
7062
7068
|
}
|
|
7063
|
-
.fec-table-container[data-v-
|
|
7069
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-cell--sort {
|
|
7064
7070
|
font-size: 14px;
|
|
7065
7071
|
}
|
|
7066
|
-
.fec-table-container[data-v-
|
|
7067
|
-
.fec-table-container[data-v-
|
|
7068
|
-
.fec-table-container[data-v-
|
|
7069
|
-
.fec-table-container[data-v-
|
|
7070
|
-
.fec-table-container[data-v-
|
|
7071
|
-
.fec-table-container[data-v-
|
|
7072
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-body--column,
|
|
7073
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-footer--column,
|
|
7074
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-header--column,
|
|
7075
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-body--column,
|
|
7076
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-footer--column,
|
|
7077
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-header--column {
|
|
7072
7078
|
background-image: linear-gradient(#ebeef5, #ebeef5) !important;
|
|
7073
7079
|
}
|
|
7074
|
-
.fec-table-container[data-v-
|
|
7080
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .el-button.is-disabled {
|
|
7075
7081
|
color: #ccc !important;
|
|
7076
7082
|
}
|
|
7077
|
-
.fec-table-container[data-v-
|
|
7078
|
-
.fec-table-container[data-v-
|
|
7083
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-table--scroll-x-handle-appearance,
|
|
7084
|
+
.fec-table-container[data-v-28ff595c] .vxe-table .vxe-table--scroll-x-right-corner {
|
|
7079
7085
|
display: none !important;
|
|
7080
7086
|
}
|
|
7081
|
-
.fec-table-sub[data-v-
|
|
7087
|
+
.fec-table-sub[data-v-28ff595c] .vxe-table .vxe-table--border-line {
|
|
7082
7088
|
border-top: none;
|
|
7083
7089
|
}
|
|
7084
7090
|
.fec-layout-card[data-v-a6236024] {
|
|
@@ -11373,6 +11379,11 @@ body,
|
|
|
11373
11379
|
flex-direction: column;
|
|
11374
11380
|
padding: 0;
|
|
11375
11381
|
}
|
|
11382
|
+
.el-overlay-dialog .fec-dialog-renderer.fec-dialog-renderer-component {
|
|
11383
|
+
min-height: none !important;
|
|
11384
|
+
max-height: none !important;
|
|
11385
|
+
height: 90% !important;
|
|
11386
|
+
}
|
|
11376
11387
|
.el-overlay-dialog .fec-dialog-renderer.is-fullscreen {
|
|
11377
11388
|
max-height: none !important;
|
|
11378
11389
|
height: 100% !important;
|
|
@@ -318,6 +318,7 @@ const _sfc_main = {
|
|
|
318
318
|
emit("confirm");
|
|
319
319
|
}
|
|
320
320
|
return (_ctx, _cache) => {
|
|
321
|
+
var _a;
|
|
321
322
|
const _component_fec_table = Vue.resolveComponent("fec-table");
|
|
322
323
|
const _component_fec_form = Vue.resolveComponent("fec-form");
|
|
323
324
|
const _component_el_button = index$1.ElButton;
|
|
@@ -342,18 +343,20 @@ const _sfc_main = {
|
|
|
342
343
|
draggable: true,
|
|
343
344
|
"close-on-click-modal": false,
|
|
344
345
|
"append-to-body": "",
|
|
345
|
-
class: "fec-dialog-renderer"
|
|
346
|
+
class: Vue.normalizeClass(["fec-dialog-renderer", {
|
|
347
|
+
"fec-dialog-renderer-component": ((_a = __props.dialogConfig) == null ? void 0 : _a.contentSource) === "component"
|
|
348
|
+
}])
|
|
346
349
|
}, {
|
|
347
350
|
header: Vue.withCtx(() => {
|
|
348
|
-
var
|
|
351
|
+
var _a2;
|
|
349
352
|
return [
|
|
350
353
|
Vue.createElementVNode("div", _hoisted_1, [
|
|
351
|
-
Vue.createElementVNode("span", null, Vue.toDisplayString(((
|
|
354
|
+
Vue.createElementVNode("span", null, Vue.toDisplayString(((_a2 = currentDialogConfig.value) == null ? void 0 : _a2.dialogTitle) || "弹层"), 1)
|
|
352
355
|
])
|
|
353
356
|
];
|
|
354
357
|
}),
|
|
355
358
|
footer: Vue.withCtx(() => {
|
|
356
|
-
var
|
|
359
|
+
var _a2, _b, _c;
|
|
357
360
|
return [
|
|
358
361
|
Vue.createVNode(_component_el_button, { onClick: handleCancel }, {
|
|
359
362
|
default: Vue.withCtx(() => _cache[3] || (_cache[3] = [
|
|
@@ -361,7 +364,7 @@ const _sfc_main = {
|
|
|
361
364
|
])),
|
|
362
365
|
_: 1
|
|
363
366
|
}),
|
|
364
|
-
((
|
|
367
|
+
((_a2 = __props.dialogConfig) == null ? void 0 : _a2.contentSource) === "table" ? (Vue.openBlock(), Vue.createElementBlock(Vue.Fragment, { key: 0 }, [
|
|
365
368
|
!__props.dialogConfig.isSubTableReadOnly && __props.dialogConfig.selectionMode != "none" ? (Vue.openBlock(), Vue.createBlock(_component_el_button, {
|
|
366
369
|
key: 0,
|
|
367
370
|
type: "primary",
|
|
@@ -388,10 +391,10 @@ const _sfc_main = {
|
|
|
388
391
|
];
|
|
389
392
|
}),
|
|
390
393
|
default: Vue.withCtx(() => {
|
|
391
|
-
var
|
|
394
|
+
var _a2, _b, _c, _d, _e;
|
|
392
395
|
return [
|
|
393
396
|
Vue.createElementVNode("div", {
|
|
394
|
-
class: Vue.normalizeClass(["dialog-content-wrapper", "fec-dialog-" + ((
|
|
397
|
+
class: Vue.normalizeClass(["dialog-content-wrapper", "fec-dialog-" + ((_a2 = __props.dialogConfig) == null ? void 0 : _a2.contentSource)]),
|
|
395
398
|
style: Vue.normalizeStyle(contentStyle.value)
|
|
396
399
|
}, [
|
|
397
400
|
((_b = __props.dialogConfig) == null ? void 0 : _b.contentSource) === "table" ? (Vue.openBlock(), Vue.createElementBlock(Vue.Fragment, { key: 0 }, [
|
|
@@ -436,9 +439,9 @@ const _sfc_main = {
|
|
|
436
439
|
];
|
|
437
440
|
}),
|
|
438
441
|
_: 1
|
|
439
|
-
}, 8, ["modelValue", "width"]));
|
|
442
|
+
}, 8, ["modelValue", "width", "class"]));
|
|
440
443
|
};
|
|
441
444
|
}
|
|
442
445
|
};
|
|
443
|
-
const DialogRenderer = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
446
|
+
const DialogRenderer = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-2b0f2231"]]);
|
|
444
447
|
exports.default = DialogRenderer;
|