@fecp/designer 5.4.16 → 5.4.18
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/packages/form/components/Contract.vue.mjs +1 -1
- package/es/designer/src/packages/form/components/Document.vue.mjs +1 -1
- package/es/designer/src/packages/form/components/approvalHistory.vue.mjs +1 -1
- package/es/designer/src/packages/form/index.vue.mjs +18 -5
- package/es/designer.css +83 -82
- package/es/packages/vue/src/components/bus/contract/Contract.vue.mjs +2 -2
- package/es/packages/vue/src/components/dialog/DialogRenderer.vue2.mjs +1 -1
- package/es/packages/vue/src/components/forms/text/Text.vue.mjs +1 -1
- package/es/packages/vue/src/components/table/TableColumn.vue.mjs +1 -1
- package/es/packages/vue/src/composables/usePageEvents.mjs +1 -1
- package/es/packages/vue/src/utils/datasource.mjs +1 -1
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/packages/form/components/Contract.vue.js +1 -1
- package/lib/designer/src/packages/form/components/Document.vue.js +1 -1
- package/lib/designer/src/packages/form/components/approvalHistory.vue.js +1 -1
- package/lib/designer/src/packages/form/index.vue.js +17 -4
- package/lib/designer.css +83 -82
- package/lib/packages/vue/src/components/bus/contract/Contract.vue.js +2 -2
- package/lib/packages/vue/src/components/dialog/DialogRenderer.vue2.js +1 -1
- package/lib/packages/vue/src/components/forms/text/Text.vue.js +1 -1
- package/lib/packages/vue/src/components/table/TableColumn.vue.js +1 -1
- package/lib/packages/vue/src/composables/usePageEvents.js +1 -1
- package/lib/packages/vue/src/utils/datasource.js +1 -1
- package/package.json +1 -1
|
@@ -74,7 +74,7 @@ const _sfc_main = {
|
|
|
74
74
|
};
|
|
75
75
|
}
|
|
76
76
|
};
|
|
77
|
-
const Contract = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
77
|
+
const Contract = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-cbec96d0"]]);
|
|
78
78
|
export {
|
|
79
79
|
Contract as default
|
|
80
80
|
};
|
|
@@ -63,7 +63,7 @@ const _sfc_main = {
|
|
|
63
63
|
};
|
|
64
64
|
}
|
|
65
65
|
};
|
|
66
|
-
const Document = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
66
|
+
const Document = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-e42eb4c4"]]);
|
|
67
67
|
export {
|
|
68
68
|
Document as default
|
|
69
69
|
};
|
|
@@ -73,7 +73,7 @@ const _sfc_main = {
|
|
|
73
73
|
};
|
|
74
74
|
}
|
|
75
75
|
};
|
|
76
|
-
const ApprovalHistory = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
76
|
+
const ApprovalHistory = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-49ded90b"]]);
|
|
77
77
|
export {
|
|
78
78
|
ApprovalHistory as default
|
|
79
79
|
};
|
|
@@ -19,7 +19,7 @@ import SubTable from "./components/SubTable.vue.mjs";
|
|
|
19
19
|
import Document from "./components/Document.vue.mjs";
|
|
20
20
|
import Contract from "./components/Contract.vue.mjs";
|
|
21
21
|
import { StarFilled as star_filled_default, Star as star_default, Lock as lock_default, Unlock as unlock_default, Delete as delete_default } from "../../../../node_modules/@element-plus/icons-vue/dist/index.mjs";
|
|
22
|
-
import { getEditConfigData, setSelectedItem, setHoverItem, getCurrentClass, isSelectedItem } from "../utils/common.mjs";
|
|
22
|
+
import { getEditConfigData, setEditConfigData, setSelectedItem, setHoverItem, getCurrentClass, isSelectedItem } from "../utils/common.mjs";
|
|
23
23
|
import { throttle as eo } from "../../../../node_modules/@vexip-ui/utils/dist/index.mjs";
|
|
24
24
|
import { defaultProperty } from "./aside/index.mjs";
|
|
25
25
|
/* empty css */
|
|
@@ -60,6 +60,14 @@ const _sfc_main = {
|
|
|
60
60
|
editConfigData.value.fieldsData.forEach((item) => {
|
|
61
61
|
item.component = { ...defaultProperty, ...item.component };
|
|
62
62
|
});
|
|
63
|
+
watch(
|
|
64
|
+
editConfigData,
|
|
65
|
+
(val) => {
|
|
66
|
+
console.log("🚀 ~ val:", val);
|
|
67
|
+
setEditConfigData(val);
|
|
68
|
+
},
|
|
69
|
+
{ deep: true }
|
|
70
|
+
);
|
|
63
71
|
const layoutDragData = ref([]);
|
|
64
72
|
const layoutData = ref(editConfigData.value.fieldsData || []);
|
|
65
73
|
const gridLayout = ref(null);
|
|
@@ -101,6 +109,7 @@ const _sfc_main = {
|
|
|
101
109
|
item.x = 0;
|
|
102
110
|
});
|
|
103
111
|
layoutData.value = [...validItems, ...itemsToRelayout];
|
|
112
|
+
editConfigData.value.fieldsData = layoutData.value;
|
|
104
113
|
}
|
|
105
114
|
}
|
|
106
115
|
);
|
|
@@ -112,9 +121,13 @@ const _sfc_main = {
|
|
|
112
121
|
var _a, _b, _c;
|
|
113
122
|
if (["subTitle", "h2", "divider"].includes((_a = item.component) == null ? void 0 : _a.fieldType)) {
|
|
114
123
|
item.h = 1 * targetHeight;
|
|
115
|
-
} else if ([
|
|
116
|
-
|
|
117
|
-
|
|
124
|
+
} else if ([
|
|
125
|
+
"subForm",
|
|
126
|
+
"subTable",
|
|
127
|
+
"approvalHistory",
|
|
128
|
+
"document",
|
|
129
|
+
"contract"
|
|
130
|
+
].includes((_b = item.component) == null ? void 0 : _b.fieldType)) {
|
|
118
131
|
if (((_c = item.component) == null ? void 0 : _c.titleMode) == "none") {
|
|
119
132
|
item.h = 2 * targetHeight;
|
|
120
133
|
} else {
|
|
@@ -504,7 +517,7 @@ const _sfc_main = {
|
|
|
504
517
|
};
|
|
505
518
|
}
|
|
506
519
|
};
|
|
507
|
-
const formWorkArea = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
520
|
+
const formWorkArea = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d23df582"]]);
|
|
508
521
|
export {
|
|
509
522
|
formWorkArea as default
|
|
510
523
|
};
|
package/es/designer.css
CHANGED
|
@@ -4766,21 +4766,21 @@ to {
|
|
|
4766
4766
|
background-color: rgba(103, 194, 58, 0.1);
|
|
4767
4767
|
border-radius: 4px;
|
|
4768
4768
|
border: 1px solid rgba(103, 194, 58, 0.3);
|
|
4769
|
-
}.approval-history-container[data-v-
|
|
4769
|
+
}.approval-history-container[data-v-49ded90b] {
|
|
4770
4770
|
width: 100%;
|
|
4771
4771
|
height: 100%;
|
|
4772
4772
|
display: flex;
|
|
4773
4773
|
flex-direction: column;
|
|
4774
4774
|
}
|
|
4775
|
-
.approval-history-container[data-v-
|
|
4775
|
+
.approval-history-container[data-v-49ded90b] .fec-h2 {
|
|
4776
4776
|
height: 40px;
|
|
4777
4777
|
flex-shrink: 0;
|
|
4778
4778
|
}
|
|
4779
|
-
.approval-history-container[data-v-
|
|
4779
|
+
.approval-history-container[data-v-49ded90b] .fec-subTitle {
|
|
4780
4780
|
height: 40px;
|
|
4781
4781
|
flex-shrink: 0;
|
|
4782
4782
|
}
|
|
4783
|
-
.approval-history-preview[data-v-
|
|
4783
|
+
.approval-history-preview[data-v-49ded90b] {
|
|
4784
4784
|
height: 100%;
|
|
4785
4785
|
border-radius: 8px;
|
|
4786
4786
|
border: 1px solid #e4e7ed;
|
|
@@ -4790,8 +4790,9 @@ to {
|
|
|
4790
4790
|
display: flex;
|
|
4791
4791
|
align-items: center;
|
|
4792
4792
|
justify-content: center;
|
|
4793
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
4793
4794
|
}
|
|
4794
|
-
.approval-history-preview .approval-history-img[data-v-
|
|
4795
|
+
.approval-history-preview .approval-history-img[data-v-49ded90b] {
|
|
4795
4796
|
max-width: 100%;
|
|
4796
4797
|
max-height: 100%;
|
|
4797
4798
|
object-fit: contain;
|
|
@@ -4881,22 +4882,21 @@ to {
|
|
|
4881
4882
|
white-space: nowrap;
|
|
4882
4883
|
overflow: hidden;
|
|
4883
4884
|
text-overflow: ellipsis;
|
|
4884
|
-
}.document-container[data-v-
|
|
4885
|
+
}.document-container[data-v-e42eb4c4] {
|
|
4885
4886
|
width: 100%;
|
|
4886
4887
|
height: 100%;
|
|
4887
4888
|
display: flex;
|
|
4888
4889
|
flex-direction: column;
|
|
4889
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
4890
4890
|
}
|
|
4891
|
-
.document-container[data-v-
|
|
4891
|
+
.document-container[data-v-e42eb4c4] .fec-h2 {
|
|
4892
4892
|
height: 40px;
|
|
4893
4893
|
flex-shrink: 0;
|
|
4894
4894
|
}
|
|
4895
|
-
.document-container[data-v-
|
|
4895
|
+
.document-container[data-v-e42eb4c4] .fec-subTitle {
|
|
4896
4896
|
height: 40px;
|
|
4897
4897
|
flex-shrink: 0;
|
|
4898
4898
|
}
|
|
4899
|
-
.document-preview[data-v-
|
|
4899
|
+
.document-preview[data-v-e42eb4c4] {
|
|
4900
4900
|
height: 100%;
|
|
4901
4901
|
border-radius: 8px;
|
|
4902
4902
|
border: 1px solid #e4e7ed;
|
|
@@ -4906,8 +4906,9 @@ to {
|
|
|
4906
4906
|
justify-content: center;
|
|
4907
4907
|
background-color: #fff;
|
|
4908
4908
|
gap: 16px;
|
|
4909
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
4909
4910
|
}
|
|
4910
|
-
.document-preview .preview-icon[data-v-
|
|
4911
|
+
.document-preview .preview-icon[data-v-e42eb4c4] {
|
|
4911
4912
|
flex-shrink: 0;
|
|
4912
4913
|
width: 48px;
|
|
4913
4914
|
height: 48px;
|
|
@@ -4917,17 +4918,17 @@ to {
|
|
|
4917
4918
|
align-items: center;
|
|
4918
4919
|
justify-content: center;
|
|
4919
4920
|
}
|
|
4920
|
-
.document-preview .preview-icon .el-icon[data-v-
|
|
4921
|
+
.document-preview .preview-icon .el-icon[data-v-e42eb4c4] {
|
|
4921
4922
|
font-size: 24px;
|
|
4922
4923
|
color: #fa8c16;
|
|
4923
4924
|
}
|
|
4924
|
-
.document-preview .preview-info[data-v-
|
|
4925
|
+
.document-preview .preview-info[data-v-e42eb4c4] {
|
|
4925
4926
|
min-width: 0;
|
|
4926
4927
|
display: flex;
|
|
4927
4928
|
flex-direction: column;
|
|
4928
4929
|
gap: 4px;
|
|
4929
4930
|
}
|
|
4930
|
-
.document-preview .preview-info .preview-name[data-v-
|
|
4931
|
+
.document-preview .preview-info .preview-name[data-v-e42eb4c4] {
|
|
4931
4932
|
font-size: 16px;
|
|
4932
4933
|
font-weight: 500;
|
|
4933
4934
|
color: #303133;
|
|
@@ -4935,25 +4936,24 @@ to {
|
|
|
4935
4936
|
overflow: hidden;
|
|
4936
4937
|
text-overflow: ellipsis;
|
|
4937
4938
|
}
|
|
4938
|
-
.document-preview .document-img[data-v-
|
|
4939
|
+
.document-preview .document-img[data-v-e42eb4c4] {
|
|
4939
4940
|
width: 100%;
|
|
4940
4941
|
height: 100%;
|
|
4941
|
-
}.contract-container[data-v-
|
|
4942
|
+
}.contract-container[data-v-cbec96d0] {
|
|
4942
4943
|
width: 100%;
|
|
4943
4944
|
height: 100%;
|
|
4944
4945
|
display: flex;
|
|
4945
4946
|
flex-direction: column;
|
|
4946
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
4947
4947
|
}
|
|
4948
|
-
.contract-container[data-v-
|
|
4948
|
+
.contract-container[data-v-cbec96d0] .fec-h2 {
|
|
4949
4949
|
height: 40px;
|
|
4950
4950
|
flex-shrink: 0;
|
|
4951
4951
|
}
|
|
4952
|
-
.contract-container[data-v-
|
|
4952
|
+
.contract-container[data-v-cbec96d0] .fec-subTitle {
|
|
4953
4953
|
height: 40px;
|
|
4954
4954
|
flex-shrink: 0;
|
|
4955
4955
|
}
|
|
4956
|
-
.contract-preview[data-v-
|
|
4956
|
+
.contract-preview[data-v-cbec96d0] {
|
|
4957
4957
|
height: 100%;
|
|
4958
4958
|
border-radius: 8px;
|
|
4959
4959
|
border: 1px solid #e4e7ed;
|
|
@@ -4963,8 +4963,9 @@ to {
|
|
|
4963
4963
|
justify-content: center;
|
|
4964
4964
|
background-color: #fff;
|
|
4965
4965
|
gap: 16px;
|
|
4966
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
4966
4967
|
}
|
|
4967
|
-
.contract-preview .preview-icon[data-v-
|
|
4968
|
+
.contract-preview .preview-icon[data-v-cbec96d0] {
|
|
4968
4969
|
flex-shrink: 0;
|
|
4969
4970
|
width: 48px;
|
|
4970
4971
|
height: 48px;
|
|
@@ -4974,17 +4975,17 @@ to {
|
|
|
4974
4975
|
align-items: center;
|
|
4975
4976
|
justify-content: center;
|
|
4976
4977
|
}
|
|
4977
|
-
.contract-preview .preview-icon .el-icon[data-v-
|
|
4978
|
+
.contract-preview .preview-icon .el-icon[data-v-cbec96d0] {
|
|
4978
4979
|
font-size: 24px;
|
|
4979
4980
|
color: #fa8c16;
|
|
4980
4981
|
}
|
|
4981
|
-
.contract-preview .preview-info[data-v-
|
|
4982
|
+
.contract-preview .preview-info[data-v-cbec96d0] {
|
|
4982
4983
|
min-width: 0;
|
|
4983
4984
|
display: flex;
|
|
4984
4985
|
flex-direction: column;
|
|
4985
4986
|
gap: 4px;
|
|
4986
4987
|
}
|
|
4987
|
-
.contract-preview .preview-info .preview-name[data-v-
|
|
4988
|
+
.contract-preview .preview-info .preview-name[data-v-cbec96d0] {
|
|
4988
4989
|
font-size: 16px;
|
|
4989
4990
|
font-weight: 500;
|
|
4990
4991
|
color: #303133;
|
|
@@ -4992,36 +4993,36 @@ to {
|
|
|
4992
4993
|
overflow: hidden;
|
|
4993
4994
|
text-overflow: ellipsis;
|
|
4994
4995
|
}
|
|
4995
|
-
.contract-preview .preview-info .preview-mode[data-v-
|
|
4996
|
+
.contract-preview .preview-info .preview-mode[data-v-cbec96d0] {
|
|
4996
4997
|
font-size: 12px;
|
|
4997
4998
|
color: #909399;
|
|
4998
|
-
}.form-work-area[data-v-
|
|
4999
|
+
}.form-work-area[data-v-d23df582] {
|
|
4999
5000
|
height: 100%;
|
|
5000
5001
|
display: flex;
|
|
5001
5002
|
flex-direction: column;
|
|
5002
5003
|
}
|
|
5003
|
-
.form-toolbar[data-v-
|
|
5004
|
+
.form-toolbar[data-v-d23df582] {
|
|
5004
5005
|
background: #f8f9fa;
|
|
5005
5006
|
padding: 16px;
|
|
5006
5007
|
margin-bottom: 20px;
|
|
5007
5008
|
border-radius: 4px;
|
|
5008
5009
|
border: 1px solid #e9ecef;
|
|
5009
5010
|
}
|
|
5010
|
-
.form-grid-container[data-v-
|
|
5011
|
+
.form-grid-container[data-v-d23df582] {
|
|
5011
5012
|
position: relative;
|
|
5012
5013
|
flex: 1;
|
|
5013
5014
|
overflow: auto;
|
|
5014
5015
|
background-color: #fff;
|
|
5015
5016
|
user-select: none;
|
|
5016
5017
|
}
|
|
5017
|
-
.form-grid[data-v-
|
|
5018
|
+
.form-grid[data-v-d23df582] {
|
|
5018
5019
|
position: relative;
|
|
5019
5020
|
padding: 12px;
|
|
5020
5021
|
}
|
|
5021
|
-
.form-grid.el-form--label-top .status-tags[data-v-
|
|
5022
|
+
.form-grid.el-form--label-top .status-tags[data-v-d23df582] {
|
|
5022
5023
|
top: 28px;
|
|
5023
5024
|
}
|
|
5024
|
-
.form-component[data-v-
|
|
5025
|
+
.form-component[data-v-d23df582] {
|
|
5025
5026
|
position: relative;
|
|
5026
5027
|
border-radius: 4px;
|
|
5027
5028
|
padding: 12px;
|
|
@@ -5029,26 +5030,26 @@ to {
|
|
|
5029
5030
|
transition: all 0.2s ease;
|
|
5030
5031
|
height: 100%;
|
|
5031
5032
|
}
|
|
5032
|
-
.form-component.h2[data-v-
|
|
5033
|
+
.form-component.h2[data-v-d23df582] {
|
|
5033
5034
|
padding: 8px 12px;
|
|
5034
5035
|
}
|
|
5035
|
-
.form-component.is-hover[data-v-
|
|
5036
|
+
.form-component.is-hover[data-v-d23df582] {
|
|
5036
5037
|
background: #f5f7fa;
|
|
5037
5038
|
border: 1px solid #e4e7ed;
|
|
5038
5039
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
|
5039
5040
|
z-index: 1;
|
|
5040
5041
|
}
|
|
5041
|
-
.form-component.is-select[data-v-
|
|
5042
|
+
.form-component.is-select[data-v-d23df582] {
|
|
5042
5043
|
background: #fff8e6;
|
|
5043
5044
|
border: 2px solid #f0ad4e;
|
|
5044
5045
|
box-shadow: 0 4px 16px rgba(240, 173, 78, 0.2);
|
|
5045
5046
|
}
|
|
5046
|
-
.form-component.is-hover.is-select[data-v-
|
|
5047
|
+
.form-component.is-hover.is-select[data-v-d23df582] {
|
|
5047
5048
|
background: #fff8e6;
|
|
5048
5049
|
border-color: #f5b041;
|
|
5049
5050
|
box-shadow: 0 4px 16px rgba(240, 173, 78, 0.3);
|
|
5050
5051
|
}
|
|
5051
|
-
.form-component .component-toolbar[data-v-
|
|
5052
|
+
.form-component .component-toolbar[data-v-d23df582] {
|
|
5052
5053
|
position: absolute;
|
|
5053
5054
|
top: -12px;
|
|
5054
5055
|
right: 8px;
|
|
@@ -5057,7 +5058,7 @@ to {
|
|
|
5057
5058
|
opacity: 0;
|
|
5058
5059
|
transition: all 0.2s ease;
|
|
5059
5060
|
}
|
|
5060
|
-
.form-component .component-toolbar .toolbar-btn[data-v-
|
|
5061
|
+
.form-component .component-toolbar .toolbar-btn[data-v-d23df582] {
|
|
5061
5062
|
width: 20px;
|
|
5062
5063
|
height: 20px;
|
|
5063
5064
|
border-radius: 3px;
|
|
@@ -5072,70 +5073,70 @@ to {
|
|
|
5072
5073
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
5073
5074
|
transition: all 0.15s ease;
|
|
5074
5075
|
}
|
|
5075
|
-
.form-component .component-toolbar .toolbar-btn[data-v-
|
|
5076
|
+
.form-component .component-toolbar .toolbar-btn[data-v-d23df582]:hover {
|
|
5076
5077
|
transform: scale(1.05);
|
|
5077
5078
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
|
|
5078
5079
|
}
|
|
5079
|
-
.form-component .component-toolbar .toolbar-btn.delete-btn[data-v-
|
|
5080
|
+
.form-component .component-toolbar .toolbar-btn.delete-btn[data-v-d23df582] {
|
|
5080
5081
|
color: #f56c6c;
|
|
5081
5082
|
}
|
|
5082
|
-
.form-component .component-toolbar .toolbar-btn.delete-btn[data-v-
|
|
5083
|
+
.form-component .component-toolbar .toolbar-btn.delete-btn[data-v-d23df582]:hover {
|
|
5083
5084
|
background: #f56c6c;
|
|
5084
5085
|
color: white;
|
|
5085
5086
|
border-color: #f56c6c;
|
|
5086
5087
|
}
|
|
5087
|
-
.form-component .component-toolbar .toolbar-btn.settings-btn[data-v-
|
|
5088
|
+
.form-component .component-toolbar .toolbar-btn.settings-btn[data-v-d23df582] {
|
|
5088
5089
|
color: #409eff;
|
|
5089
5090
|
}
|
|
5090
|
-
.form-component .component-toolbar .toolbar-btn.settings-btn[data-v-
|
|
5091
|
+
.form-component .component-toolbar .toolbar-btn.settings-btn[data-v-d23df582]:hover, .form-component .component-toolbar .toolbar-btn.settings-btn.is-active[data-v-d23df582] {
|
|
5091
5092
|
background: #409eff;
|
|
5092
5093
|
color: white;
|
|
5093
5094
|
border-color: #409eff;
|
|
5094
5095
|
}
|
|
5095
|
-
.form-component .component-toolbar .toolbar-btn.required-btn[data-v-
|
|
5096
|
+
.form-component .component-toolbar .toolbar-btn.required-btn[data-v-d23df582] {
|
|
5096
5097
|
color: #c0c4cc;
|
|
5097
5098
|
}
|
|
5098
|
-
.form-component .component-toolbar .toolbar-btn.required-btn[data-v-
|
|
5099
|
+
.form-component .component-toolbar .toolbar-btn.required-btn[data-v-d23df582]:hover {
|
|
5099
5100
|
background: #f5b041;
|
|
5100
5101
|
color: white;
|
|
5101
5102
|
border-color: #f5b041;
|
|
5102
5103
|
}
|
|
5103
|
-
.form-component .component-toolbar .toolbar-btn.required-btn.is-required[data-v-
|
|
5104
|
+
.form-component .component-toolbar .toolbar-btn.required-btn.is-required[data-v-d23df582] {
|
|
5104
5105
|
color: #f5b041;
|
|
5105
5106
|
}
|
|
5106
|
-
.form-component .component-toolbar .toolbar-btn.required-btn.is-required[data-v-
|
|
5107
|
+
.form-component .component-toolbar .toolbar-btn.required-btn.is-required[data-v-d23df582]:hover {
|
|
5107
5108
|
background: #f5b041;
|
|
5108
5109
|
color: white;
|
|
5109
5110
|
border-color: #f5b041;
|
|
5110
5111
|
}
|
|
5111
|
-
.form-component .component-toolbar .toolbar-btn.disabled-btn[data-v-
|
|
5112
|
+
.form-component .component-toolbar .toolbar-btn.disabled-btn[data-v-d23df582] {
|
|
5112
5113
|
color: #c0c4cc;
|
|
5113
5114
|
}
|
|
5114
|
-
.form-component .component-toolbar .toolbar-btn.disabled-btn[data-v-
|
|
5115
|
+
.form-component .component-toolbar .toolbar-btn.disabled-btn[data-v-d23df582]:hover {
|
|
5115
5116
|
background: #f56e6e;
|
|
5116
5117
|
color: white;
|
|
5117
5118
|
border-color: #f56e6e;
|
|
5118
5119
|
}
|
|
5119
|
-
.form-component .component-toolbar .toolbar-btn.disabled-btn.is-disabled[data-v-
|
|
5120
|
+
.form-component .component-toolbar .toolbar-btn.disabled-btn.is-disabled[data-v-d23df582] {
|
|
5120
5121
|
color: #f56e6e;
|
|
5121
5122
|
}
|
|
5122
|
-
.form-component .component-toolbar .toolbar-btn.disabled-btn.is-disabled[data-v-
|
|
5123
|
+
.form-component .component-toolbar .toolbar-btn.disabled-btn.is-disabled[data-v-d23df582]:hover {
|
|
5123
5124
|
background: #f56e6e;
|
|
5124
5125
|
color: white;
|
|
5125
5126
|
border-color: #f56e6e;
|
|
5126
5127
|
}
|
|
5127
|
-
.form-component.is-hover .component-toolbar[data-v-
|
|
5128
|
+
.form-component.is-hover .component-toolbar[data-v-d23df582], .form-component.is-select .component-toolbar[data-v-d23df582] {
|
|
5128
5129
|
opacity: 1;
|
|
5129
5130
|
}
|
|
5130
|
-
.form-component .component-content[data-v-
|
|
5131
|
+
.form-component .component-content[data-v-d23df582] {
|
|
5131
5132
|
height: 100%;
|
|
5132
5133
|
display: flex;
|
|
5133
5134
|
align-items: flex-start;
|
|
5134
5135
|
}
|
|
5135
|
-
.form-component .component-content.is-linked-visibility[data-v-
|
|
5136
|
+
.form-component .component-content.is-linked-visibility[data-v-d23df582] {
|
|
5136
5137
|
opacity: 0.45;
|
|
5137
5138
|
}
|
|
5138
|
-
.form-component .status-tags[data-v-
|
|
5139
|
+
.form-component .status-tags[data-v-d23df582] {
|
|
5139
5140
|
position: absolute;
|
|
5140
5141
|
top: 8px;
|
|
5141
5142
|
right: 8px;
|
|
@@ -5143,7 +5144,7 @@ to {
|
|
|
5143
5144
|
gap: 4px;
|
|
5144
5145
|
z-index: 10;
|
|
5145
5146
|
}
|
|
5146
|
-
.form-component .field-name-tag[data-v-
|
|
5147
|
+
.form-component .field-name-tag[data-v-d23df582] {
|
|
5147
5148
|
background: rgba(0, 0, 0, 0.5);
|
|
5148
5149
|
color: #fff;
|
|
5149
5150
|
padding: 2px 6px;
|
|
@@ -5154,7 +5155,7 @@ to {
|
|
|
5154
5155
|
transition: all 0.2s ease;
|
|
5155
5156
|
line-height: 16px;
|
|
5156
5157
|
}
|
|
5157
|
-
.form-component .status-tag[data-v-
|
|
5158
|
+
.form-component .status-tag[data-v-d23df582] {
|
|
5158
5159
|
display: flex;
|
|
5159
5160
|
align-items: center;
|
|
5160
5161
|
gap: 2px;
|
|
@@ -5165,107 +5166,107 @@ to {
|
|
|
5165
5166
|
opacity: 0.9;
|
|
5166
5167
|
transition: all 0.2s ease;
|
|
5167
5168
|
}
|
|
5168
|
-
.form-component .status-tag .el-icon[data-v-
|
|
5169
|
+
.form-component .status-tag .el-icon[data-v-d23df582] {
|
|
5169
5170
|
font-size: 12px;
|
|
5170
5171
|
}
|
|
5171
|
-
.form-component .status-tag.disabled-tag[data-v-
|
|
5172
|
+
.form-component .status-tag.disabled-tag[data-v-d23df582] {
|
|
5172
5173
|
background: rgba(245, 108, 108, 0.9);
|
|
5173
5174
|
color: #fff;
|
|
5174
5175
|
}
|
|
5175
|
-
.form-component .status-tag.readonly-tag[data-v-
|
|
5176
|
+
.form-component .status-tag.readonly-tag[data-v-d23df582] {
|
|
5176
5177
|
background: rgba(144, 147, 153, 0.9);
|
|
5177
5178
|
color: #fff;
|
|
5178
5179
|
}
|
|
5179
|
-
.form-component.is-disabled[data-v-
|
|
5180
|
+
.form-component.is-disabled[data-v-d23df582] {
|
|
5180
5181
|
opacity: 0.6;
|
|
5181
5182
|
background: #f5f7fa;
|
|
5182
5183
|
border-color: #e4e7ed;
|
|
5183
5184
|
}
|
|
5184
|
-
.form-component.is-disabled .component-preview[data-v-
|
|
5185
|
+
.form-component.is-disabled .component-preview[data-v-d23df582] .el-input__wrapper {
|
|
5185
5186
|
background-color: #f5f7fa;
|
|
5186
5187
|
box-shadow: 0 0 0 1px #e4e7ed inset;
|
|
5187
5188
|
}
|
|
5188
|
-
.form-component.is-readonly[data-v-
|
|
5189
|
+
.form-component.is-readonly[data-v-d23df582] {
|
|
5189
5190
|
border-style: dashed;
|
|
5190
5191
|
border-color: #c0c4cc;
|
|
5191
5192
|
background: #fafafa;
|
|
5192
5193
|
}
|
|
5193
|
-
.form-component.is-readonly .component-preview[data-v-
|
|
5194
|
+
.form-component.is-readonly .component-preview[data-v-d23df582] .el-input__wrapper {
|
|
5194
5195
|
background-color: #f5f7fa;
|
|
5195
5196
|
}
|
|
5196
|
-
.quick-setting-panel[data-v-
|
|
5197
|
+
.quick-setting-panel[data-v-d23df582] {
|
|
5197
5198
|
padding: 8px;
|
|
5198
5199
|
min-width: 160px;
|
|
5199
5200
|
}
|
|
5200
|
-
.quick-setting-panel .setting-row[data-v-
|
|
5201
|
+
.quick-setting-panel .setting-row[data-v-d23df582] {
|
|
5201
5202
|
display: flex;
|
|
5202
5203
|
align-items: center;
|
|
5203
5204
|
justify-content: space-between;
|
|
5204
5205
|
margin-bottom: 8px;
|
|
5205
5206
|
}
|
|
5206
|
-
.quick-setting-panel .setting-row[data-v-
|
|
5207
|
+
.quick-setting-panel .setting-row[data-v-d23df582]:last-child {
|
|
5207
5208
|
margin-bottom: 0;
|
|
5208
5209
|
}
|
|
5209
|
-
.quick-setting-panel .setting-row .setting-label[data-v-
|
|
5210
|
+
.quick-setting-panel .setting-row .setting-label[data-v-d23df582] {
|
|
5210
5211
|
font-size: 12px;
|
|
5211
5212
|
color: #606266;
|
|
5212
5213
|
min-width: 35px;
|
|
5213
5214
|
}
|
|
5214
|
-
.quick-setting-panel .setting-row .setting-select[data-v-
|
|
5215
|
+
.quick-setting-panel .setting-row .setting-select[data-v-d23df582] {
|
|
5215
5216
|
flex: 1;
|
|
5216
5217
|
width: 90px;
|
|
5217
5218
|
}
|
|
5218
|
-
.quick-setting-panel .setting-row .setting-input[data-v-
|
|
5219
|
+
.quick-setting-panel .setting-row .setting-input[data-v-d23df582] {
|
|
5219
5220
|
flex: 1;
|
|
5220
5221
|
width: 90px;
|
|
5221
5222
|
}
|
|
5222
|
-
.quick-setting-panel .setting-row[data-v-
|
|
5223
|
+
.quick-setting-panel .setting-row[data-v-d23df582] .el-checkbox {
|
|
5223
5224
|
margin-right: 5px;
|
|
5224
5225
|
}
|
|
5225
|
-
.quick-setting-panel .setting-row[data-v-
|
|
5226
|
+
.quick-setting-panel .setting-row[data-v-d23df582] .el-checkbox .el-checkbox__label {
|
|
5226
5227
|
padding-left: 5px;
|
|
5227
5228
|
}
|
|
5228
|
-
.grid-draggable-wrapper[data-v-
|
|
5229
|
+
.grid-draggable-wrapper[data-v-d23df582] {
|
|
5229
5230
|
min-height: 600px;
|
|
5230
5231
|
padding-bottom: 60px;
|
|
5231
5232
|
}
|
|
5232
|
-
.grid-draggable-wrapper[data-v-
|
|
5233
|
+
.grid-draggable-wrapper[data-v-d23df582] .components-item {
|
|
5233
5234
|
display: none;
|
|
5234
5235
|
}
|
|
5235
|
-
.grid-draggable-wrapper[data-v-
|
|
5236
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item:hover {
|
|
5236
5237
|
z-index: 1;
|
|
5237
5238
|
}
|
|
5238
|
-
.grid-draggable-wrapper[data-v-
|
|
5239
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item--placeholder {
|
|
5239
5240
|
background-color: rgba(64, 158, 255, 0.2);
|
|
5240
5241
|
border: 2px dashed #409eff;
|
|
5241
5242
|
border-radius: 4px;
|
|
5242
5243
|
opacity: 0.5;
|
|
5243
5244
|
pointer-events: none;
|
|
5244
5245
|
}
|
|
5245
|
-
.grid-draggable-wrapper[data-v-
|
|
5246
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item--dragging {
|
|
5246
5247
|
opacity: 0.7;
|
|
5247
5248
|
}
|
|
5248
|
-
.grid-draggable-wrapper[data-v-
|
|
5249
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item--resizing {
|
|
5249
5250
|
background: #f5f7fa;
|
|
5250
5251
|
border: 1px solid #e4e7ed;
|
|
5251
5252
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
|
5252
5253
|
opacity: 0.7;
|
|
5253
5254
|
border-radius: 4px;
|
|
5254
5255
|
}
|
|
5255
|
-
.grid-draggable-wrapper[data-v-
|
|
5256
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item__resizer {
|
|
5256
5257
|
z-index: 1;
|
|
5257
5258
|
}
|
|
5258
|
-
.grid-draggable-wrapper[data-v-
|
|
5259
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item__resizer:before {
|
|
5259
5260
|
display: none;
|
|
5260
5261
|
border-color: #409eff;
|
|
5261
5262
|
}
|
|
5262
|
-
.grid-draggable-wrapper[data-v-
|
|
5263
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item:hover .vgl-item__resizer:before {
|
|
5263
5264
|
display: block;
|
|
5264
5265
|
}
|
|
5265
|
-
[data-v-
|
|
5266
|
+
[data-v-d23df582] .el-divider {
|
|
5266
5267
|
margin: 16px 0;
|
|
5267
5268
|
}
|
|
5268
|
-
[data-v-
|
|
5269
|
+
[data-v-d23df582] .el-divider .el-divider__text {
|
|
5269
5270
|
color: #adb0b7;
|
|
5270
5271
|
padding: 0 10px;
|
|
5271
5272
|
border-radius: 4px;
|
|
@@ -87,11 +87,11 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
87
87
|
mode: unref(mode),
|
|
88
88
|
busNo: unref(busNo),
|
|
89
89
|
contNo: unref(contNo),
|
|
90
|
-
|
|
90
|
+
modeNo: __props.config.busSubject,
|
|
91
91
|
genType: __props.config.genType,
|
|
92
92
|
parmList: unref(parsedParams),
|
|
93
93
|
onLoaded: loaded
|
|
94
|
-
}, null, 40, ["mode", "busNo", "contNo", "
|
|
94
|
+
}, null, 40, ["mode", "busNo", "contNo", "modeNo", "genType", "parmList"]))
|
|
95
95
|
]);
|
|
96
96
|
};
|
|
97
97
|
}
|
|
@@ -9,9 +9,9 @@ import { Form } from "../forms/form/index.mjs";
|
|
|
9
9
|
import { parseRouteParams } from "../../utils/parseRouteParams.mjs";
|
|
10
10
|
import { calculate } from "../../utils/formulajs/calculate.mjs";
|
|
11
11
|
import { useEventFlow, executeEventFlow } from "../../utils/eventFlow/eventFlowHandler.mjs";
|
|
12
|
-
/* empty css */
|
|
13
12
|
/* empty css */
|
|
14
13
|
/* empty css */
|
|
14
|
+
/* empty css */
|
|
15
15
|
/* empty css */
|
|
16
16
|
import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
17
17
|
/* empty css */
|
|
@@ -3,9 +3,9 @@ import "../../../../../../node_modules/element-plus/es/index.mjs";
|
|
|
3
3
|
/* empty css */
|
|
4
4
|
/* empty css */
|
|
5
5
|
import { computed, getCurrentInstance, inject, createElementBlock, openBlock, createVNode, createCommentVNode, mergeProps, toHandlers, createSlots, withCtx, createElementVNode, toDisplayString, createBlock, createTextVNode, unref } from "vue";
|
|
6
|
-
/* empty css */
|
|
7
6
|
/* empty css */
|
|
8
7
|
/* empty css */
|
|
8
|
+
/* empty css */
|
|
9
9
|
import { openDialog } from "../../dialog/index.mjs";
|
|
10
10
|
import api from "../../../api/index.mjs";
|
|
11
11
|
/* empty css */
|
|
@@ -7,10 +7,10 @@ import "../../../../../node_modules/vxe-table/es/components.mjs";
|
|
|
7
7
|
import { CopyDocument as copy_document_default } from "../../../../../node_modules/@element-plus/icons-vue/dist/index.mjs";
|
|
8
8
|
import { checkFilterMatch } from "../../utils/parseFilterConfig.mjs";
|
|
9
9
|
import { removeEmptyValues } from "../../utils/common.mjs";
|
|
10
|
-
/* empty css */
|
|
11
10
|
/* empty css */
|
|
12
11
|
/* empty css */
|
|
13
12
|
/* empty css */
|
|
13
|
+
/* empty css */
|
|
14
14
|
/* empty css */
|
|
15
15
|
import "./index.mjs";
|
|
16
16
|
import "../forms/form/index.mjs";
|
|
@@ -2,9 +2,9 @@ import { reactive } from "vue";
|
|
|
2
2
|
import { parseRouteParams } from "./parseRouteParams.mjs";
|
|
3
3
|
import "../../../../node_modules/element-plus/es/index.mjs";
|
|
4
4
|
/* empty css */
|
|
5
|
-
/* empty css */
|
|
6
5
|
/* empty css */
|
|
7
6
|
/* empty css */
|
|
7
|
+
/* empty css */
|
|
8
8
|
import { ElLoading } from "../../../../node_modules/element-plus/es/components/loading/index.mjs";
|
|
9
9
|
import { ElMessage } from "../../../../node_modules/element-plus/es/components/message/index.mjs";
|
|
10
10
|
class DataSourceManager {
|
|
@@ -76,5 +76,5 @@ const _sfc_main = {
|
|
|
76
76
|
};
|
|
77
77
|
}
|
|
78
78
|
};
|
|
79
|
-
const Contract = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
79
|
+
const Contract = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-cbec96d0"]]);
|
|
80
80
|
exports.default = Contract;
|
|
@@ -65,5 +65,5 @@ const _sfc_main = {
|
|
|
65
65
|
};
|
|
66
66
|
}
|
|
67
67
|
};
|
|
68
|
-
const Document = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
68
|
+
const Document = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-e42eb4c4"]]);
|
|
69
69
|
exports.default = Document;
|
|
@@ -75,5 +75,5 @@ const _sfc_main = {
|
|
|
75
75
|
};
|
|
76
76
|
}
|
|
77
77
|
};
|
|
78
|
-
const ApprovalHistory = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
78
|
+
const ApprovalHistory = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-49ded90b"]]);
|
|
79
79
|
exports.default = ApprovalHistory;
|
|
@@ -62,6 +62,14 @@ const _sfc_main = {
|
|
|
62
62
|
editConfigData.value.fieldsData.forEach((item) => {
|
|
63
63
|
item.component = { ...index.defaultProperty, ...item.component };
|
|
64
64
|
});
|
|
65
|
+
vue.watch(
|
|
66
|
+
editConfigData,
|
|
67
|
+
(val) => {
|
|
68
|
+
console.log("🚀 ~ val:", val);
|
|
69
|
+
common.setEditConfigData(val);
|
|
70
|
+
},
|
|
71
|
+
{ deep: true }
|
|
72
|
+
);
|
|
65
73
|
const layoutDragData = vue.ref([]);
|
|
66
74
|
const layoutData = vue.ref(editConfigData.value.fieldsData || []);
|
|
67
75
|
const gridLayout = vue.ref(null);
|
|
@@ -103,6 +111,7 @@ const _sfc_main = {
|
|
|
103
111
|
item.x = 0;
|
|
104
112
|
});
|
|
105
113
|
layoutData.value = [...validItems, ...itemsToRelayout];
|
|
114
|
+
editConfigData.value.fieldsData = layoutData.value;
|
|
106
115
|
}
|
|
107
116
|
}
|
|
108
117
|
);
|
|
@@ -114,9 +123,13 @@ const _sfc_main = {
|
|
|
114
123
|
var _a, _b, _c;
|
|
115
124
|
if (["subTitle", "h2", "divider"].includes((_a = item.component) == null ? void 0 : _a.fieldType)) {
|
|
116
125
|
item.h = 1 * targetHeight;
|
|
117
|
-
} else if ([
|
|
118
|
-
|
|
119
|
-
|
|
126
|
+
} else if ([
|
|
127
|
+
"subForm",
|
|
128
|
+
"subTable",
|
|
129
|
+
"approvalHistory",
|
|
130
|
+
"document",
|
|
131
|
+
"contract"
|
|
132
|
+
].includes((_b = item.component) == null ? void 0 : _b.fieldType)) {
|
|
120
133
|
if (((_c = item.component) == null ? void 0 : _c.titleMode) == "none") {
|
|
121
134
|
item.h = 2 * targetHeight;
|
|
122
135
|
} else {
|
|
@@ -506,5 +519,5 @@ const _sfc_main = {
|
|
|
506
519
|
};
|
|
507
520
|
}
|
|
508
521
|
};
|
|
509
|
-
const formWorkArea = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
522
|
+
const formWorkArea = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-d23df582"]]);
|
|
510
523
|
exports.default = formWorkArea;
|
package/lib/designer.css
CHANGED
|
@@ -4766,21 +4766,21 @@ to {
|
|
|
4766
4766
|
background-color: rgba(103, 194, 58, 0.1);
|
|
4767
4767
|
border-radius: 4px;
|
|
4768
4768
|
border: 1px solid rgba(103, 194, 58, 0.3);
|
|
4769
|
-
}.approval-history-container[data-v-
|
|
4769
|
+
}.approval-history-container[data-v-49ded90b] {
|
|
4770
4770
|
width: 100%;
|
|
4771
4771
|
height: 100%;
|
|
4772
4772
|
display: flex;
|
|
4773
4773
|
flex-direction: column;
|
|
4774
4774
|
}
|
|
4775
|
-
.approval-history-container[data-v-
|
|
4775
|
+
.approval-history-container[data-v-49ded90b] .fec-h2 {
|
|
4776
4776
|
height: 40px;
|
|
4777
4777
|
flex-shrink: 0;
|
|
4778
4778
|
}
|
|
4779
|
-
.approval-history-container[data-v-
|
|
4779
|
+
.approval-history-container[data-v-49ded90b] .fec-subTitle {
|
|
4780
4780
|
height: 40px;
|
|
4781
4781
|
flex-shrink: 0;
|
|
4782
4782
|
}
|
|
4783
|
-
.approval-history-preview[data-v-
|
|
4783
|
+
.approval-history-preview[data-v-49ded90b] {
|
|
4784
4784
|
height: 100%;
|
|
4785
4785
|
border-radius: 8px;
|
|
4786
4786
|
border: 1px solid #e4e7ed;
|
|
@@ -4790,8 +4790,9 @@ to {
|
|
|
4790
4790
|
display: flex;
|
|
4791
4791
|
align-items: center;
|
|
4792
4792
|
justify-content: center;
|
|
4793
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
4793
4794
|
}
|
|
4794
|
-
.approval-history-preview .approval-history-img[data-v-
|
|
4795
|
+
.approval-history-preview .approval-history-img[data-v-49ded90b] {
|
|
4795
4796
|
max-width: 100%;
|
|
4796
4797
|
max-height: 100%;
|
|
4797
4798
|
object-fit: contain;
|
|
@@ -4881,22 +4882,21 @@ to {
|
|
|
4881
4882
|
white-space: nowrap;
|
|
4882
4883
|
overflow: hidden;
|
|
4883
4884
|
text-overflow: ellipsis;
|
|
4884
|
-
}.document-container[data-v-
|
|
4885
|
+
}.document-container[data-v-e42eb4c4] {
|
|
4885
4886
|
width: 100%;
|
|
4886
4887
|
height: 100%;
|
|
4887
4888
|
display: flex;
|
|
4888
4889
|
flex-direction: column;
|
|
4889
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
4890
4890
|
}
|
|
4891
|
-
.document-container[data-v-
|
|
4891
|
+
.document-container[data-v-e42eb4c4] .fec-h2 {
|
|
4892
4892
|
height: 40px;
|
|
4893
4893
|
flex-shrink: 0;
|
|
4894
4894
|
}
|
|
4895
|
-
.document-container[data-v-
|
|
4895
|
+
.document-container[data-v-e42eb4c4] .fec-subTitle {
|
|
4896
4896
|
height: 40px;
|
|
4897
4897
|
flex-shrink: 0;
|
|
4898
4898
|
}
|
|
4899
|
-
.document-preview[data-v-
|
|
4899
|
+
.document-preview[data-v-e42eb4c4] {
|
|
4900
4900
|
height: 100%;
|
|
4901
4901
|
border-radius: 8px;
|
|
4902
4902
|
border: 1px solid #e4e7ed;
|
|
@@ -4906,8 +4906,9 @@ to {
|
|
|
4906
4906
|
justify-content: center;
|
|
4907
4907
|
background-color: #fff;
|
|
4908
4908
|
gap: 16px;
|
|
4909
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
4909
4910
|
}
|
|
4910
|
-
.document-preview .preview-icon[data-v-
|
|
4911
|
+
.document-preview .preview-icon[data-v-e42eb4c4] {
|
|
4911
4912
|
flex-shrink: 0;
|
|
4912
4913
|
width: 48px;
|
|
4913
4914
|
height: 48px;
|
|
@@ -4917,17 +4918,17 @@ to {
|
|
|
4917
4918
|
align-items: center;
|
|
4918
4919
|
justify-content: center;
|
|
4919
4920
|
}
|
|
4920
|
-
.document-preview .preview-icon .el-icon[data-v-
|
|
4921
|
+
.document-preview .preview-icon .el-icon[data-v-e42eb4c4] {
|
|
4921
4922
|
font-size: 24px;
|
|
4922
4923
|
color: #fa8c16;
|
|
4923
4924
|
}
|
|
4924
|
-
.document-preview .preview-info[data-v-
|
|
4925
|
+
.document-preview .preview-info[data-v-e42eb4c4] {
|
|
4925
4926
|
min-width: 0;
|
|
4926
4927
|
display: flex;
|
|
4927
4928
|
flex-direction: column;
|
|
4928
4929
|
gap: 4px;
|
|
4929
4930
|
}
|
|
4930
|
-
.document-preview .preview-info .preview-name[data-v-
|
|
4931
|
+
.document-preview .preview-info .preview-name[data-v-e42eb4c4] {
|
|
4931
4932
|
font-size: 16px;
|
|
4932
4933
|
font-weight: 500;
|
|
4933
4934
|
color: #303133;
|
|
@@ -4935,25 +4936,24 @@ to {
|
|
|
4935
4936
|
overflow: hidden;
|
|
4936
4937
|
text-overflow: ellipsis;
|
|
4937
4938
|
}
|
|
4938
|
-
.document-preview .document-img[data-v-
|
|
4939
|
+
.document-preview .document-img[data-v-e42eb4c4] {
|
|
4939
4940
|
width: 100%;
|
|
4940
4941
|
height: 100%;
|
|
4941
|
-
}.contract-container[data-v-
|
|
4942
|
+
}.contract-container[data-v-cbec96d0] {
|
|
4942
4943
|
width: 100%;
|
|
4943
4944
|
height: 100%;
|
|
4944
4945
|
display: flex;
|
|
4945
4946
|
flex-direction: column;
|
|
4946
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
4947
4947
|
}
|
|
4948
|
-
.contract-container[data-v-
|
|
4948
|
+
.contract-container[data-v-cbec96d0] .fec-h2 {
|
|
4949
4949
|
height: 40px;
|
|
4950
4950
|
flex-shrink: 0;
|
|
4951
4951
|
}
|
|
4952
|
-
.contract-container[data-v-
|
|
4952
|
+
.contract-container[data-v-cbec96d0] .fec-subTitle {
|
|
4953
4953
|
height: 40px;
|
|
4954
4954
|
flex-shrink: 0;
|
|
4955
4955
|
}
|
|
4956
|
-
.contract-preview[data-v-
|
|
4956
|
+
.contract-preview[data-v-cbec96d0] {
|
|
4957
4957
|
height: 100%;
|
|
4958
4958
|
border-radius: 8px;
|
|
4959
4959
|
border: 1px solid #e4e7ed;
|
|
@@ -4963,8 +4963,9 @@ to {
|
|
|
4963
4963
|
justify-content: center;
|
|
4964
4964
|
background-color: #fff;
|
|
4965
4965
|
gap: 16px;
|
|
4966
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
4966
4967
|
}
|
|
4967
|
-
.contract-preview .preview-icon[data-v-
|
|
4968
|
+
.contract-preview .preview-icon[data-v-cbec96d0] {
|
|
4968
4969
|
flex-shrink: 0;
|
|
4969
4970
|
width: 48px;
|
|
4970
4971
|
height: 48px;
|
|
@@ -4974,17 +4975,17 @@ to {
|
|
|
4974
4975
|
align-items: center;
|
|
4975
4976
|
justify-content: center;
|
|
4976
4977
|
}
|
|
4977
|
-
.contract-preview .preview-icon .el-icon[data-v-
|
|
4978
|
+
.contract-preview .preview-icon .el-icon[data-v-cbec96d0] {
|
|
4978
4979
|
font-size: 24px;
|
|
4979
4980
|
color: #fa8c16;
|
|
4980
4981
|
}
|
|
4981
|
-
.contract-preview .preview-info[data-v-
|
|
4982
|
+
.contract-preview .preview-info[data-v-cbec96d0] {
|
|
4982
4983
|
min-width: 0;
|
|
4983
4984
|
display: flex;
|
|
4984
4985
|
flex-direction: column;
|
|
4985
4986
|
gap: 4px;
|
|
4986
4987
|
}
|
|
4987
|
-
.contract-preview .preview-info .preview-name[data-v-
|
|
4988
|
+
.contract-preview .preview-info .preview-name[data-v-cbec96d0] {
|
|
4988
4989
|
font-size: 16px;
|
|
4989
4990
|
font-weight: 500;
|
|
4990
4991
|
color: #303133;
|
|
@@ -4992,36 +4993,36 @@ to {
|
|
|
4992
4993
|
overflow: hidden;
|
|
4993
4994
|
text-overflow: ellipsis;
|
|
4994
4995
|
}
|
|
4995
|
-
.contract-preview .preview-info .preview-mode[data-v-
|
|
4996
|
+
.contract-preview .preview-info .preview-mode[data-v-cbec96d0] {
|
|
4996
4997
|
font-size: 12px;
|
|
4997
4998
|
color: #909399;
|
|
4998
|
-
}.form-work-area[data-v-
|
|
4999
|
+
}.form-work-area[data-v-d23df582] {
|
|
4999
5000
|
height: 100%;
|
|
5000
5001
|
display: flex;
|
|
5001
5002
|
flex-direction: column;
|
|
5002
5003
|
}
|
|
5003
|
-
.form-toolbar[data-v-
|
|
5004
|
+
.form-toolbar[data-v-d23df582] {
|
|
5004
5005
|
background: #f8f9fa;
|
|
5005
5006
|
padding: 16px;
|
|
5006
5007
|
margin-bottom: 20px;
|
|
5007
5008
|
border-radius: 4px;
|
|
5008
5009
|
border: 1px solid #e9ecef;
|
|
5009
5010
|
}
|
|
5010
|
-
.form-grid-container[data-v-
|
|
5011
|
+
.form-grid-container[data-v-d23df582] {
|
|
5011
5012
|
position: relative;
|
|
5012
5013
|
flex: 1;
|
|
5013
5014
|
overflow: auto;
|
|
5014
5015
|
background-color: #fff;
|
|
5015
5016
|
user-select: none;
|
|
5016
5017
|
}
|
|
5017
|
-
.form-grid[data-v-
|
|
5018
|
+
.form-grid[data-v-d23df582] {
|
|
5018
5019
|
position: relative;
|
|
5019
5020
|
padding: 12px;
|
|
5020
5021
|
}
|
|
5021
|
-
.form-grid.el-form--label-top .status-tags[data-v-
|
|
5022
|
+
.form-grid.el-form--label-top .status-tags[data-v-d23df582] {
|
|
5022
5023
|
top: 28px;
|
|
5023
5024
|
}
|
|
5024
|
-
.form-component[data-v-
|
|
5025
|
+
.form-component[data-v-d23df582] {
|
|
5025
5026
|
position: relative;
|
|
5026
5027
|
border-radius: 4px;
|
|
5027
5028
|
padding: 12px;
|
|
@@ -5029,26 +5030,26 @@ to {
|
|
|
5029
5030
|
transition: all 0.2s ease;
|
|
5030
5031
|
height: 100%;
|
|
5031
5032
|
}
|
|
5032
|
-
.form-component.h2[data-v-
|
|
5033
|
+
.form-component.h2[data-v-d23df582] {
|
|
5033
5034
|
padding: 8px 12px;
|
|
5034
5035
|
}
|
|
5035
|
-
.form-component.is-hover[data-v-
|
|
5036
|
+
.form-component.is-hover[data-v-d23df582] {
|
|
5036
5037
|
background: #f5f7fa;
|
|
5037
5038
|
border: 1px solid #e4e7ed;
|
|
5038
5039
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
|
5039
5040
|
z-index: 1;
|
|
5040
5041
|
}
|
|
5041
|
-
.form-component.is-select[data-v-
|
|
5042
|
+
.form-component.is-select[data-v-d23df582] {
|
|
5042
5043
|
background: #fff8e6;
|
|
5043
5044
|
border: 2px solid #f0ad4e;
|
|
5044
5045
|
box-shadow: 0 4px 16px rgba(240, 173, 78, 0.2);
|
|
5045
5046
|
}
|
|
5046
|
-
.form-component.is-hover.is-select[data-v-
|
|
5047
|
+
.form-component.is-hover.is-select[data-v-d23df582] {
|
|
5047
5048
|
background: #fff8e6;
|
|
5048
5049
|
border-color: #f5b041;
|
|
5049
5050
|
box-shadow: 0 4px 16px rgba(240, 173, 78, 0.3);
|
|
5050
5051
|
}
|
|
5051
|
-
.form-component .component-toolbar[data-v-
|
|
5052
|
+
.form-component .component-toolbar[data-v-d23df582] {
|
|
5052
5053
|
position: absolute;
|
|
5053
5054
|
top: -12px;
|
|
5054
5055
|
right: 8px;
|
|
@@ -5057,7 +5058,7 @@ to {
|
|
|
5057
5058
|
opacity: 0;
|
|
5058
5059
|
transition: all 0.2s ease;
|
|
5059
5060
|
}
|
|
5060
|
-
.form-component .component-toolbar .toolbar-btn[data-v-
|
|
5061
|
+
.form-component .component-toolbar .toolbar-btn[data-v-d23df582] {
|
|
5061
5062
|
width: 20px;
|
|
5062
5063
|
height: 20px;
|
|
5063
5064
|
border-radius: 3px;
|
|
@@ -5072,70 +5073,70 @@ to {
|
|
|
5072
5073
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
5073
5074
|
transition: all 0.15s ease;
|
|
5074
5075
|
}
|
|
5075
|
-
.form-component .component-toolbar .toolbar-btn[data-v-
|
|
5076
|
+
.form-component .component-toolbar .toolbar-btn[data-v-d23df582]:hover {
|
|
5076
5077
|
transform: scale(1.05);
|
|
5077
5078
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
|
|
5078
5079
|
}
|
|
5079
|
-
.form-component .component-toolbar .toolbar-btn.delete-btn[data-v-
|
|
5080
|
+
.form-component .component-toolbar .toolbar-btn.delete-btn[data-v-d23df582] {
|
|
5080
5081
|
color: #f56c6c;
|
|
5081
5082
|
}
|
|
5082
|
-
.form-component .component-toolbar .toolbar-btn.delete-btn[data-v-
|
|
5083
|
+
.form-component .component-toolbar .toolbar-btn.delete-btn[data-v-d23df582]:hover {
|
|
5083
5084
|
background: #f56c6c;
|
|
5084
5085
|
color: white;
|
|
5085
5086
|
border-color: #f56c6c;
|
|
5086
5087
|
}
|
|
5087
|
-
.form-component .component-toolbar .toolbar-btn.settings-btn[data-v-
|
|
5088
|
+
.form-component .component-toolbar .toolbar-btn.settings-btn[data-v-d23df582] {
|
|
5088
5089
|
color: #409eff;
|
|
5089
5090
|
}
|
|
5090
|
-
.form-component .component-toolbar .toolbar-btn.settings-btn[data-v-
|
|
5091
|
+
.form-component .component-toolbar .toolbar-btn.settings-btn[data-v-d23df582]:hover, .form-component .component-toolbar .toolbar-btn.settings-btn.is-active[data-v-d23df582] {
|
|
5091
5092
|
background: #409eff;
|
|
5092
5093
|
color: white;
|
|
5093
5094
|
border-color: #409eff;
|
|
5094
5095
|
}
|
|
5095
|
-
.form-component .component-toolbar .toolbar-btn.required-btn[data-v-
|
|
5096
|
+
.form-component .component-toolbar .toolbar-btn.required-btn[data-v-d23df582] {
|
|
5096
5097
|
color: #c0c4cc;
|
|
5097
5098
|
}
|
|
5098
|
-
.form-component .component-toolbar .toolbar-btn.required-btn[data-v-
|
|
5099
|
+
.form-component .component-toolbar .toolbar-btn.required-btn[data-v-d23df582]:hover {
|
|
5099
5100
|
background: #f5b041;
|
|
5100
5101
|
color: white;
|
|
5101
5102
|
border-color: #f5b041;
|
|
5102
5103
|
}
|
|
5103
|
-
.form-component .component-toolbar .toolbar-btn.required-btn.is-required[data-v-
|
|
5104
|
+
.form-component .component-toolbar .toolbar-btn.required-btn.is-required[data-v-d23df582] {
|
|
5104
5105
|
color: #f5b041;
|
|
5105
5106
|
}
|
|
5106
|
-
.form-component .component-toolbar .toolbar-btn.required-btn.is-required[data-v-
|
|
5107
|
+
.form-component .component-toolbar .toolbar-btn.required-btn.is-required[data-v-d23df582]:hover {
|
|
5107
5108
|
background: #f5b041;
|
|
5108
5109
|
color: white;
|
|
5109
5110
|
border-color: #f5b041;
|
|
5110
5111
|
}
|
|
5111
|
-
.form-component .component-toolbar .toolbar-btn.disabled-btn[data-v-
|
|
5112
|
+
.form-component .component-toolbar .toolbar-btn.disabled-btn[data-v-d23df582] {
|
|
5112
5113
|
color: #c0c4cc;
|
|
5113
5114
|
}
|
|
5114
|
-
.form-component .component-toolbar .toolbar-btn.disabled-btn[data-v-
|
|
5115
|
+
.form-component .component-toolbar .toolbar-btn.disabled-btn[data-v-d23df582]:hover {
|
|
5115
5116
|
background: #f56e6e;
|
|
5116
5117
|
color: white;
|
|
5117
5118
|
border-color: #f56e6e;
|
|
5118
5119
|
}
|
|
5119
|
-
.form-component .component-toolbar .toolbar-btn.disabled-btn.is-disabled[data-v-
|
|
5120
|
+
.form-component .component-toolbar .toolbar-btn.disabled-btn.is-disabled[data-v-d23df582] {
|
|
5120
5121
|
color: #f56e6e;
|
|
5121
5122
|
}
|
|
5122
|
-
.form-component .component-toolbar .toolbar-btn.disabled-btn.is-disabled[data-v-
|
|
5123
|
+
.form-component .component-toolbar .toolbar-btn.disabled-btn.is-disabled[data-v-d23df582]:hover {
|
|
5123
5124
|
background: #f56e6e;
|
|
5124
5125
|
color: white;
|
|
5125
5126
|
border-color: #f56e6e;
|
|
5126
5127
|
}
|
|
5127
|
-
.form-component.is-hover .component-toolbar[data-v-
|
|
5128
|
+
.form-component.is-hover .component-toolbar[data-v-d23df582], .form-component.is-select .component-toolbar[data-v-d23df582] {
|
|
5128
5129
|
opacity: 1;
|
|
5129
5130
|
}
|
|
5130
|
-
.form-component .component-content[data-v-
|
|
5131
|
+
.form-component .component-content[data-v-d23df582] {
|
|
5131
5132
|
height: 100%;
|
|
5132
5133
|
display: flex;
|
|
5133
5134
|
align-items: flex-start;
|
|
5134
5135
|
}
|
|
5135
|
-
.form-component .component-content.is-linked-visibility[data-v-
|
|
5136
|
+
.form-component .component-content.is-linked-visibility[data-v-d23df582] {
|
|
5136
5137
|
opacity: 0.45;
|
|
5137
5138
|
}
|
|
5138
|
-
.form-component .status-tags[data-v-
|
|
5139
|
+
.form-component .status-tags[data-v-d23df582] {
|
|
5139
5140
|
position: absolute;
|
|
5140
5141
|
top: 8px;
|
|
5141
5142
|
right: 8px;
|
|
@@ -5143,7 +5144,7 @@ to {
|
|
|
5143
5144
|
gap: 4px;
|
|
5144
5145
|
z-index: 10;
|
|
5145
5146
|
}
|
|
5146
|
-
.form-component .field-name-tag[data-v-
|
|
5147
|
+
.form-component .field-name-tag[data-v-d23df582] {
|
|
5147
5148
|
background: rgba(0, 0, 0, 0.5);
|
|
5148
5149
|
color: #fff;
|
|
5149
5150
|
padding: 2px 6px;
|
|
@@ -5154,7 +5155,7 @@ to {
|
|
|
5154
5155
|
transition: all 0.2s ease;
|
|
5155
5156
|
line-height: 16px;
|
|
5156
5157
|
}
|
|
5157
|
-
.form-component .status-tag[data-v-
|
|
5158
|
+
.form-component .status-tag[data-v-d23df582] {
|
|
5158
5159
|
display: flex;
|
|
5159
5160
|
align-items: center;
|
|
5160
5161
|
gap: 2px;
|
|
@@ -5165,107 +5166,107 @@ to {
|
|
|
5165
5166
|
opacity: 0.9;
|
|
5166
5167
|
transition: all 0.2s ease;
|
|
5167
5168
|
}
|
|
5168
|
-
.form-component .status-tag .el-icon[data-v-
|
|
5169
|
+
.form-component .status-tag .el-icon[data-v-d23df582] {
|
|
5169
5170
|
font-size: 12px;
|
|
5170
5171
|
}
|
|
5171
|
-
.form-component .status-tag.disabled-tag[data-v-
|
|
5172
|
+
.form-component .status-tag.disabled-tag[data-v-d23df582] {
|
|
5172
5173
|
background: rgba(245, 108, 108, 0.9);
|
|
5173
5174
|
color: #fff;
|
|
5174
5175
|
}
|
|
5175
|
-
.form-component .status-tag.readonly-tag[data-v-
|
|
5176
|
+
.form-component .status-tag.readonly-tag[data-v-d23df582] {
|
|
5176
5177
|
background: rgba(144, 147, 153, 0.9);
|
|
5177
5178
|
color: #fff;
|
|
5178
5179
|
}
|
|
5179
|
-
.form-component.is-disabled[data-v-
|
|
5180
|
+
.form-component.is-disabled[data-v-d23df582] {
|
|
5180
5181
|
opacity: 0.6;
|
|
5181
5182
|
background: #f5f7fa;
|
|
5182
5183
|
border-color: #e4e7ed;
|
|
5183
5184
|
}
|
|
5184
|
-
.form-component.is-disabled .component-preview[data-v-
|
|
5185
|
+
.form-component.is-disabled .component-preview[data-v-d23df582] .el-input__wrapper {
|
|
5185
5186
|
background-color: #f5f7fa;
|
|
5186
5187
|
box-shadow: 0 0 0 1px #e4e7ed inset;
|
|
5187
5188
|
}
|
|
5188
|
-
.form-component.is-readonly[data-v-
|
|
5189
|
+
.form-component.is-readonly[data-v-d23df582] {
|
|
5189
5190
|
border-style: dashed;
|
|
5190
5191
|
border-color: #c0c4cc;
|
|
5191
5192
|
background: #fafafa;
|
|
5192
5193
|
}
|
|
5193
|
-
.form-component.is-readonly .component-preview[data-v-
|
|
5194
|
+
.form-component.is-readonly .component-preview[data-v-d23df582] .el-input__wrapper {
|
|
5194
5195
|
background-color: #f5f7fa;
|
|
5195
5196
|
}
|
|
5196
|
-
.quick-setting-panel[data-v-
|
|
5197
|
+
.quick-setting-panel[data-v-d23df582] {
|
|
5197
5198
|
padding: 8px;
|
|
5198
5199
|
min-width: 160px;
|
|
5199
5200
|
}
|
|
5200
|
-
.quick-setting-panel .setting-row[data-v-
|
|
5201
|
+
.quick-setting-panel .setting-row[data-v-d23df582] {
|
|
5201
5202
|
display: flex;
|
|
5202
5203
|
align-items: center;
|
|
5203
5204
|
justify-content: space-between;
|
|
5204
5205
|
margin-bottom: 8px;
|
|
5205
5206
|
}
|
|
5206
|
-
.quick-setting-panel .setting-row[data-v-
|
|
5207
|
+
.quick-setting-panel .setting-row[data-v-d23df582]:last-child {
|
|
5207
5208
|
margin-bottom: 0;
|
|
5208
5209
|
}
|
|
5209
|
-
.quick-setting-panel .setting-row .setting-label[data-v-
|
|
5210
|
+
.quick-setting-panel .setting-row .setting-label[data-v-d23df582] {
|
|
5210
5211
|
font-size: 12px;
|
|
5211
5212
|
color: #606266;
|
|
5212
5213
|
min-width: 35px;
|
|
5213
5214
|
}
|
|
5214
|
-
.quick-setting-panel .setting-row .setting-select[data-v-
|
|
5215
|
+
.quick-setting-panel .setting-row .setting-select[data-v-d23df582] {
|
|
5215
5216
|
flex: 1;
|
|
5216
5217
|
width: 90px;
|
|
5217
5218
|
}
|
|
5218
|
-
.quick-setting-panel .setting-row .setting-input[data-v-
|
|
5219
|
+
.quick-setting-panel .setting-row .setting-input[data-v-d23df582] {
|
|
5219
5220
|
flex: 1;
|
|
5220
5221
|
width: 90px;
|
|
5221
5222
|
}
|
|
5222
|
-
.quick-setting-panel .setting-row[data-v-
|
|
5223
|
+
.quick-setting-panel .setting-row[data-v-d23df582] .el-checkbox {
|
|
5223
5224
|
margin-right: 5px;
|
|
5224
5225
|
}
|
|
5225
|
-
.quick-setting-panel .setting-row[data-v-
|
|
5226
|
+
.quick-setting-panel .setting-row[data-v-d23df582] .el-checkbox .el-checkbox__label {
|
|
5226
5227
|
padding-left: 5px;
|
|
5227
5228
|
}
|
|
5228
|
-
.grid-draggable-wrapper[data-v-
|
|
5229
|
+
.grid-draggable-wrapper[data-v-d23df582] {
|
|
5229
5230
|
min-height: 600px;
|
|
5230
5231
|
padding-bottom: 60px;
|
|
5231
5232
|
}
|
|
5232
|
-
.grid-draggable-wrapper[data-v-
|
|
5233
|
+
.grid-draggable-wrapper[data-v-d23df582] .components-item {
|
|
5233
5234
|
display: none;
|
|
5234
5235
|
}
|
|
5235
|
-
.grid-draggable-wrapper[data-v-
|
|
5236
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item:hover {
|
|
5236
5237
|
z-index: 1;
|
|
5237
5238
|
}
|
|
5238
|
-
.grid-draggable-wrapper[data-v-
|
|
5239
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item--placeholder {
|
|
5239
5240
|
background-color: rgba(64, 158, 255, 0.2);
|
|
5240
5241
|
border: 2px dashed #409eff;
|
|
5241
5242
|
border-radius: 4px;
|
|
5242
5243
|
opacity: 0.5;
|
|
5243
5244
|
pointer-events: none;
|
|
5244
5245
|
}
|
|
5245
|
-
.grid-draggable-wrapper[data-v-
|
|
5246
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item--dragging {
|
|
5246
5247
|
opacity: 0.7;
|
|
5247
5248
|
}
|
|
5248
|
-
.grid-draggable-wrapper[data-v-
|
|
5249
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item--resizing {
|
|
5249
5250
|
background: #f5f7fa;
|
|
5250
5251
|
border: 1px solid #e4e7ed;
|
|
5251
5252
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
|
5252
5253
|
opacity: 0.7;
|
|
5253
5254
|
border-radius: 4px;
|
|
5254
5255
|
}
|
|
5255
|
-
.grid-draggable-wrapper[data-v-
|
|
5256
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item__resizer {
|
|
5256
5257
|
z-index: 1;
|
|
5257
5258
|
}
|
|
5258
|
-
.grid-draggable-wrapper[data-v-
|
|
5259
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item__resizer:before {
|
|
5259
5260
|
display: none;
|
|
5260
5261
|
border-color: #409eff;
|
|
5261
5262
|
}
|
|
5262
|
-
.grid-draggable-wrapper[data-v-
|
|
5263
|
+
.grid-draggable-wrapper[data-v-d23df582] .vgl-item:hover .vgl-item__resizer:before {
|
|
5263
5264
|
display: block;
|
|
5264
5265
|
}
|
|
5265
|
-
[data-v-
|
|
5266
|
+
[data-v-d23df582] .el-divider {
|
|
5266
5267
|
margin: 16px 0;
|
|
5267
5268
|
}
|
|
5268
|
-
[data-v-
|
|
5269
|
+
[data-v-d23df582] .el-divider .el-divider__text {
|
|
5269
5270
|
color: #adb0b7;
|
|
5270
5271
|
padding: 0 10px;
|
|
5271
5272
|
border-radius: 4px;
|
|
@@ -89,11 +89,11 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
89
89
|
mode: vue.unref(mode),
|
|
90
90
|
busNo: vue.unref(busNo),
|
|
91
91
|
contNo: vue.unref(contNo),
|
|
92
|
-
|
|
92
|
+
modeNo: __props.config.busSubject,
|
|
93
93
|
genType: __props.config.genType,
|
|
94
94
|
parmList: vue.unref(parsedParams),
|
|
95
95
|
onLoaded: loaded
|
|
96
|
-
}, null, 40, ["mode", "busNo", "contNo", "
|
|
96
|
+
}, null, 40, ["mode", "busNo", "contNo", "modeNo", "genType", "parmList"]))
|
|
97
97
|
]);
|
|
98
98
|
};
|
|
99
99
|
}
|
|
@@ -11,9 +11,9 @@ const index$2 = require("../forms/form/index.js");
|
|
|
11
11
|
const parseRouteParams = require("../../utils/parseRouteParams.js");
|
|
12
12
|
const calculate = require("../../utils/formulajs/calculate.js");
|
|
13
13
|
const eventFlowHandler = require("../../utils/eventFlow/eventFlowHandler.js");
|
|
14
|
-
;/* empty css */
|
|
15
14
|
;/* empty css */
|
|
16
15
|
;/* empty css */
|
|
16
|
+
;/* empty css */
|
|
17
17
|
;/* empty css */
|
|
18
18
|
const _pluginVue_exportHelper = require("../../../../../_virtual/_plugin-vue_export-helper.js");
|
|
19
19
|
;/* empty css */
|
|
@@ -5,9 +5,9 @@ require("../../../../../../node_modules/element-plus/es/index.js");
|
|
|
5
5
|
;/* empty css */
|
|
6
6
|
;/* empty css */
|
|
7
7
|
const vue = require("vue");
|
|
8
|
-
;/* empty css */
|
|
9
8
|
;/* empty css */
|
|
10
9
|
;/* empty css */
|
|
10
|
+
;/* empty css */
|
|
11
11
|
const index$3 = require("../../dialog/index.js");
|
|
12
12
|
const index$2 = require("../../../api/index.js");
|
|
13
13
|
;/* empty css */
|
|
@@ -9,10 +9,10 @@ require("../../../../../node_modules/vxe-table/es/components.js");
|
|
|
9
9
|
const index$3 = require("../../../../../node_modules/@element-plus/icons-vue/dist/index.js");
|
|
10
10
|
const parseFilterConfig = require("../../utils/parseFilterConfig.js");
|
|
11
11
|
const common = require("../../utils/common.js");
|
|
12
|
-
;/* empty css */
|
|
13
12
|
;/* empty css */
|
|
14
13
|
;/* empty css */
|
|
15
14
|
;/* empty css */
|
|
15
|
+
;/* empty css */
|
|
16
16
|
;/* empty css */
|
|
17
17
|
require("./index.js");
|
|
18
18
|
require("../forms/form/index.js");
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const vue = require("vue");
|
|
4
4
|
;/* empty css */
|
|
5
|
-
;/* empty css */
|
|
6
5
|
;/* empty css */
|
|
7
6
|
;/* empty css */
|
|
8
7
|
;/* empty css */
|
|
8
|
+
;/* empty css */
|
|
9
9
|
;/* empty css */
|
|
10
10
|
;/* empty css */
|
|
11
11
|
require("../components/table/index.js");
|
|
@@ -4,9 +4,9 @@ const vue = require("vue");
|
|
|
4
4
|
const parseRouteParams = require("./parseRouteParams.js");
|
|
5
5
|
require("../../../../node_modules/element-plus/es/index.js");
|
|
6
6
|
;/* empty css */
|
|
7
|
-
;/* empty css */
|
|
8
7
|
;/* empty css */
|
|
9
8
|
;/* empty css */
|
|
9
|
+
;/* empty css */
|
|
10
10
|
const index = require("../../../../node_modules/element-plus/es/components/loading/index.js");
|
|
11
11
|
const index$1 = require("../../../../node_modules/element-plus/es/components/message/index.js");
|
|
12
12
|
class DataSourceManager {
|