super-page-designer 2.1.12 → 2.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/components/design/views/assemblys/workflow/component/combination.vue.js +5 -5
- package/dist/es/components/design/views/design/page-event/config.vue.js +7 -1
- package/dist/es/components/design/views/design/page-event/config.vue2.js +1 -7
- package/dist/es/components/design/views/design/page-event/page-event-content.vue.js +1 -1
- package/dist/es/components/design/views/design/view/view-design-display.vue.js +1 -1
- package/dist/es/style.css +66 -66
- package/package.json +1 -1
|
@@ -54,9 +54,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
54
54
|
tableData.value.forEach((item, index) => {
|
|
55
55
|
console.log("%c描述-112048", "color:#2E3435;background:#F8BB07;padding:3px;border-radius:2px", item);
|
|
56
56
|
if (item.type === "date") {
|
|
57
|
-
tableData.value[index].
|
|
57
|
+
tableData.value[index].isDate = true;
|
|
58
58
|
} else {
|
|
59
|
-
tableData.value[index].
|
|
59
|
+
tableData.value[index].isDate = false;
|
|
60
60
|
}
|
|
61
61
|
let fieldItem = props.fieldMap[item.propName];
|
|
62
62
|
operationArr.value[index] = getOperators(fieldItem);
|
|
@@ -90,9 +90,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
90
90
|
console.log("%c描述-164035", "color:#2E3435;background:#F8BB07;padding:3px;border-radius:2px", props.fieldMap);
|
|
91
91
|
const item = props.fieldMap[propDbName];
|
|
92
92
|
if (item.type === "date") {
|
|
93
|
-
tableData.value[index].
|
|
93
|
+
tableData.value[index].isDate = true;
|
|
94
94
|
} else {
|
|
95
|
-
tableData.value[index].
|
|
95
|
+
tableData.value[index].isDate = false;
|
|
96
96
|
}
|
|
97
97
|
row.propName = item.name;
|
|
98
98
|
row.dataType = item.dataType;
|
|
@@ -326,7 +326,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
326
326
|
modelValue: scope.row.date,
|
|
327
327
|
"onUpdate:modelValue": ($event) => scope.row.date = $event,
|
|
328
328
|
clearable: "",
|
|
329
|
-
disabled: !scope.row.
|
|
329
|
+
disabled: !scope.row.isDate,
|
|
330
330
|
size: "default"
|
|
331
331
|
}, {
|
|
332
332
|
default: withCtx(() => [
|
|
@@ -1 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import _sfc_main from "./config.vue3.js";
|
|
2
|
+
import "./config.vue2.js";
|
|
3
|
+
import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const config = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-26f79956"]]);
|
|
5
|
+
export {
|
|
6
|
+
config as default
|
|
7
|
+
};
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import "./config.vue.js";
|
|
3
|
-
import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const config = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-26f79956"]]);
|
|
5
|
-
export {
|
|
6
|
-
config as default
|
|
7
|
-
};
|
|
1
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, onUnmounted, watch, resolveComponent, openBlock, createElementBlock, createElementVNode, createVNode, withCtx, withDirectives, vShow, unref, createTextVNode, toDisplayString, Fragment, renderList, createBlock } from "vue";
|
|
2
2
|
import { ElMessageBox, ElMessage } from "element-plus";
|
|
3
|
-
import config from "./config.
|
|
3
|
+
import config from "./config.vue.js";
|
|
4
4
|
import { standardButtonOperations } from "../../../utils/assemblys-config.js";
|
|
5
5
|
import { findDesignItemByUuid, getUuidv4, deepCopy } from "../../../utils/common-util.js";
|
|
6
6
|
import { usePageContextStore } from "../../../../../stores/page-store.js";
|
|
@@ -15,7 +15,7 @@ import "@codemirror/state";
|
|
|
15
15
|
import "@codemirror/autocomplete";
|
|
16
16
|
import "@codemirror/language";
|
|
17
17
|
import "@codemirror/search";
|
|
18
|
-
import "../page-event/config.
|
|
18
|
+
import "../page-event/config.vue2.js";
|
|
19
19
|
import "../../../utils/assemblys-config.js";
|
|
20
20
|
import "../../../../../stores/page-store.js";
|
|
21
21
|
import "../../../../../stores/event-undo-redo-store.js";
|
package/dist/es/style.css
CHANGED
|
@@ -1294,6 +1294,10 @@ fieldset.amb-design-item-selected {
|
|
|
1294
1294
|
padding: 10px;
|
|
1295
1295
|
font-weight: bold;
|
|
1296
1296
|
}
|
|
1297
|
+
|
|
1298
|
+
.el-select__wrapper.is-disabled{
|
|
1299
|
+
cursor: default;
|
|
1300
|
+
}
|
|
1297
1301
|
.el-tree-node__content {
|
|
1298
1302
|
height: 34px !important;
|
|
1299
1303
|
}
|
|
@@ -4389,10 +4393,6 @@ fieldset.amb-design-item-selected {
|
|
|
4389
4393
|
padding: 10px;
|
|
4390
4394
|
font-weight: bold;
|
|
4391
4395
|
}
|
|
4392
|
-
|
|
4393
|
-
.el-select__wrapper.is-disabled{
|
|
4394
|
-
cursor: default;
|
|
4395
|
-
}
|
|
4396
4396
|
.el-tree-node__content {
|
|
4397
4397
|
height: 34px !important;
|
|
4398
4398
|
}
|
|
@@ -9349,56 +9349,6 @@ fieldset.amb-design-item-selected {
|
|
|
9349
9349
|
padding: 10px;
|
|
9350
9350
|
font-weight: bold;
|
|
9351
9351
|
}
|
|
9352
|
-
|
|
9353
|
-
/*不显示列样式*/
|
|
9354
|
-
.hiddenBorder {
|
|
9355
|
-
border-right: solid 1px #ebebeb !important;
|
|
9356
|
-
border-left: solid 1px #ebebeb !important;
|
|
9357
|
-
background-color: #ebebeb !important;
|
|
9358
|
-
}
|
|
9359
|
-
/*选中列样式*/
|
|
9360
|
-
.addBorder {
|
|
9361
|
-
border-right: solid 1px #5893ef !important;
|
|
9362
|
-
border-left: solid 1px #5893ef !important;
|
|
9363
|
-
background-color: #5893ef !important;
|
|
9364
|
-
color: #ffffff;
|
|
9365
|
-
}
|
|
9366
|
-
.ghost {
|
|
9367
|
-
opacity: 0.5;
|
|
9368
|
-
background: #c8ebfb;
|
|
9369
|
-
}
|
|
9370
|
-
|
|
9371
|
-
li[data-v-55bb4cd3] {
|
|
9372
|
-
color: #333;
|
|
9373
|
-
}
|
|
9374
|
-
.context-menu[data-v-55bb4cd3] {
|
|
9375
|
-
position: fixed;
|
|
9376
|
-
background: #fff;
|
|
9377
|
-
z-index: 999;
|
|
9378
|
-
padding: 5px;
|
|
9379
|
-
margin: 0;
|
|
9380
|
-
margin-top: 30px;
|
|
9381
|
-
}
|
|
9382
|
-
.context-menu li[data-v-55bb4cd3] {
|
|
9383
|
-
min-width: 75px;
|
|
9384
|
-
height: 28px;
|
|
9385
|
-
line-height: 28px;
|
|
9386
|
-
text-align: left;
|
|
9387
|
-
color: #1a1a1a;
|
|
9388
|
-
cursor: pointer;
|
|
9389
|
-
}
|
|
9390
|
-
.context-menu li[data-v-55bb4cd3]:hover {
|
|
9391
|
-
background: #5893ef;
|
|
9392
|
-
color: #fff;
|
|
9393
|
-
}
|
|
9394
|
-
.context-menu[data-v-55bb4cd3] {
|
|
9395
|
-
border: 1px solid #eee;
|
|
9396
|
-
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
9397
|
-
border-radius: 5px;
|
|
9398
|
-
}
|
|
9399
|
-
li[data-v-55bb4cd3] {
|
|
9400
|
-
list-style-type: none;
|
|
9401
|
-
}
|
|
9402
9352
|
.el-tree-node__content {
|
|
9403
9353
|
height: 34px !important;
|
|
9404
9354
|
}
|
|
@@ -10637,6 +10587,56 @@ fieldset.amb-design-item-selected {
|
|
|
10637
10587
|
padding: 10px;
|
|
10638
10588
|
font-weight: bold;
|
|
10639
10589
|
}
|
|
10590
|
+
|
|
10591
|
+
/*不显示列样式*/
|
|
10592
|
+
.hiddenBorder {
|
|
10593
|
+
border-right: solid 1px #ebebeb !important;
|
|
10594
|
+
border-left: solid 1px #ebebeb !important;
|
|
10595
|
+
background-color: #ebebeb !important;
|
|
10596
|
+
}
|
|
10597
|
+
/*选中列样式*/
|
|
10598
|
+
.addBorder {
|
|
10599
|
+
border-right: solid 1px #5893ef !important;
|
|
10600
|
+
border-left: solid 1px #5893ef !important;
|
|
10601
|
+
background-color: #5893ef !important;
|
|
10602
|
+
color: #ffffff;
|
|
10603
|
+
}
|
|
10604
|
+
.ghost {
|
|
10605
|
+
opacity: 0.5;
|
|
10606
|
+
background: #c8ebfb;
|
|
10607
|
+
}
|
|
10608
|
+
|
|
10609
|
+
li[data-v-55bb4cd3] {
|
|
10610
|
+
color: #333;
|
|
10611
|
+
}
|
|
10612
|
+
.context-menu[data-v-55bb4cd3] {
|
|
10613
|
+
position: fixed;
|
|
10614
|
+
background: #fff;
|
|
10615
|
+
z-index: 999;
|
|
10616
|
+
padding: 5px;
|
|
10617
|
+
margin: 0;
|
|
10618
|
+
margin-top: 30px;
|
|
10619
|
+
}
|
|
10620
|
+
.context-menu li[data-v-55bb4cd3] {
|
|
10621
|
+
min-width: 75px;
|
|
10622
|
+
height: 28px;
|
|
10623
|
+
line-height: 28px;
|
|
10624
|
+
text-align: left;
|
|
10625
|
+
color: #1a1a1a;
|
|
10626
|
+
cursor: pointer;
|
|
10627
|
+
}
|
|
10628
|
+
.context-menu li[data-v-55bb4cd3]:hover {
|
|
10629
|
+
background: #5893ef;
|
|
10630
|
+
color: #fff;
|
|
10631
|
+
}
|
|
10632
|
+
.context-menu[data-v-55bb4cd3] {
|
|
10633
|
+
border: 1px solid #eee;
|
|
10634
|
+
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
10635
|
+
border-radius: 5px;
|
|
10636
|
+
}
|
|
10637
|
+
li[data-v-55bb4cd3] {
|
|
10638
|
+
list-style-type: none;
|
|
10639
|
+
}
|
|
10640
10640
|
.el-tree-node__content {
|
|
10641
10641
|
height: 34px !important;
|
|
10642
10642
|
}
|
|
@@ -16929,6 +16929,15 @@ fieldset.amb-design-item-selected {
|
|
|
16929
16929
|
margin-bottom: 20px;
|
|
16930
16930
|
}
|
|
16931
16931
|
|
|
16932
|
+
.row-backgroud-header-tittle[data-v-b203475d]{
|
|
16933
|
+
display: flex;
|
|
16934
|
+
justify-content: space-between;
|
|
16935
|
+
text-align: center
|
|
16936
|
+
}
|
|
16937
|
+
.row-backgroud-header-tittle > div[data-v-b203475d]{
|
|
16938
|
+
width: 100%
|
|
16939
|
+
}
|
|
16940
|
+
|
|
16932
16941
|
.seleteSort[data-v-97438be5] {
|
|
16933
16942
|
border-radius: 5px;
|
|
16934
16943
|
border: 1px solid rgba(88, 147, 239);
|
|
@@ -16937,13 +16946,9 @@ fieldset.amb-design-item-selected {
|
|
|
16937
16946
|
display: inline-block;
|
|
16938
16947
|
}
|
|
16939
16948
|
|
|
16940
|
-
.
|
|
16941
|
-
|
|
16942
|
-
|
|
16943
|
-
text-align: center
|
|
16944
|
-
}
|
|
16945
|
-
.row-backgroud-header-tittle > div[data-v-b203475d]{
|
|
16946
|
-
width: 100%
|
|
16949
|
+
.seleteSort[data-v-a8c75465] {
|
|
16950
|
+
border-radius: 5px;
|
|
16951
|
+
border: 1px solid rgba(88, 147, 239);
|
|
16947
16952
|
}
|
|
16948
16953
|
|
|
16949
16954
|
.stateBtn[data-v-ae2798fb]{
|
|
@@ -16991,11 +16996,6 @@ li[data-v-b436905c] {
|
|
|
16991
16996
|
list-style-type: none;
|
|
16992
16997
|
}
|
|
16993
16998
|
|
|
16994
|
-
.seleteSort[data-v-a8c75465] {
|
|
16995
|
-
border-radius: 5px;
|
|
16996
|
-
border: 1px solid rgba(88, 147, 239);
|
|
16997
|
-
}
|
|
16998
|
-
|
|
16999
16999
|
.el-tag[data-v-665d3bf4]{
|
|
17000
17000
|
margin-left: 10px;
|
|
17001
17001
|
}
|