@fecp/designer 5.5.30 → 5.5.32
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/dialog/index.vue2.mjs +15 -15
- package/es/designer/src/packages/dialog/useDialogDialog.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/index.vue2.mjs +15 -16
- package/es/designer/src/packages/dialogGlobal/useDialogGlobalDialog.mjs +1 -1
- package/es/designer/src/packages/form/property/widgets.vue.mjs +2 -2
- package/es/designer.css +41 -41
- package/es/packages/mobile/src/components/base/card/Card.vue.mjs +2 -2
- package/es/packages/vue/src/components/table/Table.vue.mjs +7 -9
- package/es/packages/vue/src/components/table/TableColumn.vue.mjs +1 -2
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/packages/dialog/index.vue2.js +15 -15
- package/lib/designer/src/packages/dialog/useDialogDialog.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/index.vue2.js +15 -16
- package/lib/designer/src/packages/dialogGlobal/useDialogGlobalDialog.js +1 -1
- package/lib/designer/src/packages/form/property/widgets.vue.js +2 -2
- package/lib/designer.css +41 -41
- package/lib/packages/mobile/src/components/base/card/Card.vue.js +2 -2
- package/lib/packages/vue/src/components/table/Table.vue.js +7 -9
- package/lib/packages/vue/src/components/table/TableColumn.vue.js +1 -2
- package/package.json +1 -1
|
@@ -1,18 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { ElForm, ElFormItem } from "../../../../node_modules/element-plus/es/components/form/index.mjs";
|
|
3
|
-
import { ElInput } from "../../../../node_modules/element-plus/es/components/input/index.mjs";
|
|
4
|
-
import { ElScrollbar } from "../../../../node_modules/element-plus/es/components/scrollbar/index.mjs";
|
|
5
|
-
import { ElButton } from "../../../../node_modules/element-plus/es/components/button/index.mjs";
|
|
6
|
-
import { ElSelect, ElOption } from "../../../../node_modules/element-plus/es/components/select/index.mjs";
|
|
7
|
-
import { ElCheckbox } from "../../../../node_modules/element-plus/es/components/checkbox/index.mjs";
|
|
8
|
-
import { ElRadioGroup, ElRadioButton } from "../../../../node_modules/element-plus/es/components/radio/index.mjs";
|
|
9
|
-
import { ElContainer, ElAside, ElHeader, ElMain } from "../../../../node_modules/element-plus/es/components/container/index.mjs";
|
|
10
|
-
import { ElDialog } from "../../../../node_modules/element-plus/es/components/dialog/index.mjs";
|
|
11
|
-
import { ElLink } from "../../../../node_modules/element-plus/es/components/link/index.mjs";
|
|
12
|
-
import { ElSwitch } from "../../../../node_modules/element-plus/es/components/switch/index.mjs";
|
|
13
|
-
import { ElMessage } from "../../../../node_modules/element-plus/es/components/message/index.mjs";
|
|
14
|
-
import { ElPopover } from "../../../../node_modules/element-plus/es/components/popover/index.mjs";
|
|
15
|
-
import "../../../../_virtual/dayjs.min.mjs";
|
|
1
|
+
import "../../../../node_modules/element-plus/es/index.mjs";
|
|
16
2
|
/* empty css */
|
|
17
3
|
/* empty css */
|
|
18
4
|
/* empty css */
|
|
@@ -56,6 +42,20 @@ import widgets from "../table/property/widgets.vue.mjs";
|
|
|
56
42
|
/* empty css */
|
|
57
43
|
/* empty css */
|
|
58
44
|
import _export_sfc from "../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
45
|
+
import { ElDialog } from "../../../../node_modules/element-plus/es/components/dialog/index.mjs";
|
|
46
|
+
import { ElContainer, ElAside, ElHeader, ElMain } from "../../../../node_modules/element-plus/es/components/container/index.mjs";
|
|
47
|
+
import { ElButton } from "../../../../node_modules/element-plus/es/components/button/index.mjs";
|
|
48
|
+
import { ElInput } from "../../../../node_modules/element-plus/es/components/input/index.mjs";
|
|
49
|
+
import { ElLink } from "../../../../node_modules/element-plus/es/components/link/index.mjs";
|
|
50
|
+
import { ElIcon } from "../../../../node_modules/element-plus/es/components/icon/index.mjs";
|
|
51
|
+
import { ElScrollbar } from "../../../../node_modules/element-plus/es/components/scrollbar/index.mjs";
|
|
52
|
+
import { ElForm, ElFormItem } from "../../../../node_modules/element-plus/es/components/form/index.mjs";
|
|
53
|
+
import { ElRadioGroup, ElRadioButton } from "../../../../node_modules/element-plus/es/components/radio/index.mjs";
|
|
54
|
+
import { ElSelect, ElOption } from "../../../../node_modules/element-plus/es/components/select/index.mjs";
|
|
55
|
+
import { ElPopover } from "../../../../node_modules/element-plus/es/components/popover/index.mjs";
|
|
56
|
+
import { ElSwitch } from "../../../../node_modules/element-plus/es/components/switch/index.mjs";
|
|
57
|
+
import { ElCheckbox } from "../../../../node_modules/element-plus/es/components/checkbox/index.mjs";
|
|
58
|
+
import { ElMessage } from "../../../../node_modules/element-plus/es/components/message/index.mjs";
|
|
59
59
|
const _hoisted_1 = { key: 0 };
|
|
60
60
|
const _hoisted_2 = { class: "dialog-menu-item is-editing" };
|
|
61
61
|
const _hoisted_3 = { class: "new-item-content" };
|
|
@@ -1,18 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { ElForm, ElFormItem } from "../../../../node_modules/element-plus/es/components/form/index.mjs";
|
|
3
|
-
import { ElInput } from "../../../../node_modules/element-plus/es/components/input/index.mjs";
|
|
4
|
-
import { ElScrollbar } from "../../../../node_modules/element-plus/es/components/scrollbar/index.mjs";
|
|
5
|
-
import { ElButton } from "../../../../node_modules/element-plus/es/components/button/index.mjs";
|
|
6
|
-
import { ElSelect, ElOption } from "../../../../node_modules/element-plus/es/components/select/index.mjs";
|
|
7
|
-
import { ElCheckbox } from "../../../../node_modules/element-plus/es/components/checkbox/index.mjs";
|
|
8
|
-
import { ElRadioGroup, ElRadioButton } from "../../../../node_modules/element-plus/es/components/radio/index.mjs";
|
|
9
|
-
import { ElContainer, ElAside, ElHeader, ElMain } from "../../../../node_modules/element-plus/es/components/container/index.mjs";
|
|
10
|
-
import { ElDialog } from "../../../../node_modules/element-plus/es/components/dialog/index.mjs";
|
|
11
|
-
import { ElLink } from "../../../../node_modules/element-plus/es/components/link/index.mjs";
|
|
12
|
-
import { ElSwitch } from "../../../../node_modules/element-plus/es/components/switch/index.mjs";
|
|
13
|
-
import { ElMessage } from "../../../../node_modules/element-plus/es/components/message/index.mjs";
|
|
14
|
-
import { ElPopover } from "../../../../node_modules/element-plus/es/components/popover/index.mjs";
|
|
15
|
-
import "../../../../_virtual/dayjs.min.mjs";
|
|
1
|
+
import "../../../../node_modules/element-plus/es/index.mjs";
|
|
16
2
|
/* empty css */
|
|
17
3
|
/* empty css */
|
|
18
4
|
/* empty css */
|
|
@@ -55,7 +41,6 @@ import _export_sfc from "../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
|
55
41
|
import "../../../../node_modules/element-plus/theme-chalk/el-tooltip.css.mjs";
|
|
56
42
|
/* empty css */
|
|
57
43
|
/* empty css */
|
|
58
|
-
import "element-plus";
|
|
59
44
|
/* empty css */
|
|
60
45
|
/* empty css */
|
|
61
46
|
/* empty css */
|
|
@@ -116,6 +101,20 @@ import "../../../../node_modules/element-plus/theme-chalk/el-date-picker.css.mjs
|
|
|
116
101
|
/* empty css */
|
|
117
102
|
/* empty css */
|
|
118
103
|
/* empty css */
|
|
104
|
+
import { ElMessage } from "../../../../node_modules/element-plus/es/components/message/index.mjs";
|
|
105
|
+
import { ElDialog } from "../../../../node_modules/element-plus/es/components/dialog/index.mjs";
|
|
106
|
+
import { ElContainer, ElAside, ElHeader, ElMain } from "../../../../node_modules/element-plus/es/components/container/index.mjs";
|
|
107
|
+
import { ElIcon } from "../../../../node_modules/element-plus/es/components/icon/index.mjs";
|
|
108
|
+
import { ElButton } from "../../../../node_modules/element-plus/es/components/button/index.mjs";
|
|
109
|
+
import { ElInput } from "../../../../node_modules/element-plus/es/components/input/index.mjs";
|
|
110
|
+
import { ElLink } from "../../../../node_modules/element-plus/es/components/link/index.mjs";
|
|
111
|
+
import { ElScrollbar } from "../../../../node_modules/element-plus/es/components/scrollbar/index.mjs";
|
|
112
|
+
import { ElForm, ElFormItem } from "../../../../node_modules/element-plus/es/components/form/index.mjs";
|
|
113
|
+
import { ElRadioGroup, ElRadioButton } from "../../../../node_modules/element-plus/es/components/radio/index.mjs";
|
|
114
|
+
import { ElSelect, ElOption } from "../../../../node_modules/element-plus/es/components/select/index.mjs";
|
|
115
|
+
import { ElPopover } from "../../../../node_modules/element-plus/es/components/popover/index.mjs";
|
|
116
|
+
import { ElSwitch } from "../../../../node_modules/element-plus/es/components/switch/index.mjs";
|
|
117
|
+
import { ElCheckbox } from "../../../../node_modules/element-plus/es/components/checkbox/index.mjs";
|
|
119
118
|
const _hoisted_1 = {
|
|
120
119
|
key: 0,
|
|
121
120
|
class: "loading-overlay"
|
|
@@ -52,8 +52,8 @@ import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
|
52
52
|
import "../../../components/TemplateSelector.vue.mjs";
|
|
53
53
|
import "../../table/default.mjs";
|
|
54
54
|
/* empty css */
|
|
55
|
-
/* empty css
|
|
56
|
-
/* empty css
|
|
55
|
+
/* empty css */
|
|
56
|
+
/* empty css */
|
|
57
57
|
import "../../../store/index.mjs";
|
|
58
58
|
/* empty css */
|
|
59
59
|
import { ElCollapse, ElCollapseItem } from "../../../../../node_modules/element-plus/es/components/collapse/index.mjs";
|
package/es/designer.css
CHANGED
|
@@ -6011,10 +6011,10 @@ body,
|
|
|
6011
6011
|
border-radius: 5px;
|
|
6012
6012
|
margin-right: 12px;
|
|
6013
6013
|
margin-top: 2px;
|
|
6014
|
-
}.cell-content .cell-text[data-v-
|
|
6014
|
+
}.cell-content .cell-text[data-v-5138d230] {
|
|
6015
6015
|
display: inline-block;
|
|
6016
6016
|
}
|
|
6017
|
-
.cell-content .copy-icon[data-v-
|
|
6017
|
+
.cell-content .copy-icon[data-v-5138d230] {
|
|
6018
6018
|
cursor: pointer;
|
|
6019
6019
|
color: #909399;
|
|
6020
6020
|
font-size: 14px;
|
|
@@ -6022,7 +6022,7 @@ body,
|
|
|
6022
6022
|
top: 4px;
|
|
6023
6023
|
margin-left: 4px;
|
|
6024
6024
|
}
|
|
6025
|
-
.cell-content .copy-icon[data-v-
|
|
6025
|
+
.cell-content .copy-icon[data-v-5138d230]:hover {
|
|
6026
6026
|
color: #409eff;
|
|
6027
6027
|
}.fec-table-filter[data-v-9c6e8c47] {
|
|
6028
6028
|
display: flex;
|
|
@@ -6309,12 +6309,12 @@ body,
|
|
|
6309
6309
|
}
|
|
6310
6310
|
[data-v-e95c842d] .el-checkbox-group .el-checkbox-button__inner {
|
|
6311
6311
|
border-radius: 4px;
|
|
6312
|
-
}.fec-table[data-v-
|
|
6312
|
+
}.fec-table[data-v-1b05547f] {
|
|
6313
6313
|
height: 100%;
|
|
6314
6314
|
flex-grow: 1;
|
|
6315
6315
|
padding: 0 16px;
|
|
6316
6316
|
}
|
|
6317
|
-
.fec-table-container[data-v-
|
|
6317
|
+
.fec-table-container[data-v-1b05547f] {
|
|
6318
6318
|
width: 100%;
|
|
6319
6319
|
background: #fff;
|
|
6320
6320
|
box-sizing: border-box;
|
|
@@ -6324,87 +6324,87 @@ body,
|
|
|
6324
6324
|
overflow: hidden;
|
|
6325
6325
|
flex-grow: 1;
|
|
6326
6326
|
}
|
|
6327
|
-
.fec-table-container .fec-vxe-table[data-v-
|
|
6327
|
+
.fec-table-container .fec-vxe-table[data-v-1b05547f] {
|
|
6328
6328
|
flex: 1;
|
|
6329
6329
|
min-height: 0;
|
|
6330
6330
|
overflow: hidden;
|
|
6331
6331
|
margin-bottom: 16px;
|
|
6332
6332
|
}
|
|
6333
|
-
.fec-table-container[data-v-
|
|
6333
|
+
.fec-table-container[data-v-1b05547f] .vxe-table {
|
|
6334
6334
|
font-size: 14px;
|
|
6335
6335
|
font-family: inherit;
|
|
6336
6336
|
}
|
|
6337
|
-
.fec-table-container[data-v-
|
|
6338
|
-
.fec-table-container[data-v-
|
|
6337
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-sort--asc-btn,
|
|
6338
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-sort--desc-btn {
|
|
6339
6339
|
color: #dcdcdc;
|
|
6340
6340
|
}
|
|
6341
|
-
.fec-table-container[data-v-
|
|
6342
|
-
.fec-table-container[data-v-
|
|
6341
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .serverSort .vxe-sort--asc-btn,
|
|
6342
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .serverSort .vxe-sort--desc-btn {
|
|
6343
6343
|
color: #d3edf9;
|
|
6344
6344
|
}
|
|
6345
|
-
.fec-table-container[data-v-
|
|
6345
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .serverSort .sort--active {
|
|
6346
6346
|
color: var(--el-color-primary);
|
|
6347
6347
|
}
|
|
6348
|
-
.fec-table-container[data-v-
|
|
6348
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .sort--active {
|
|
6349
6349
|
color: var(--el-color-primary);
|
|
6350
6350
|
}
|
|
6351
|
-
.fec-table-container[data-v-
|
|
6351
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--body-wrapper {
|
|
6352
6352
|
overflow: auto;
|
|
6353
6353
|
}
|
|
6354
|
-
.fec-table-container[data-v-
|
|
6355
|
-
.fec-table-container[data-v-
|
|
6356
|
-
.fec-table-container[data-v-
|
|
6354
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--body,
|
|
6355
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--header,
|
|
6356
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--footer {
|
|
6357
6357
|
width: 100% !important;
|
|
6358
6358
|
}
|
|
6359
|
-
.fec-table-container[data-v-
|
|
6359
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-header--column {
|
|
6360
6360
|
background-color: #fff;
|
|
6361
6361
|
}
|
|
6362
|
-
.fec-table-container[data-v-
|
|
6362
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-header--column .vxe-cell {
|
|
6363
6363
|
height: 40px !important;
|
|
6364
6364
|
min-height: 40px !important;
|
|
6365
6365
|
color: #333;
|
|
6366
6366
|
}
|
|
6367
|
-
.fec-table-container[data-v-
|
|
6367
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--header-inner-wrapper {
|
|
6368
6368
|
height: 40px !important;
|
|
6369
6369
|
}
|
|
6370
|
-
.fec-table-container[data-v-
|
|
6370
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-body--column .vxe-cell {
|
|
6371
6371
|
padding: 6px !important;
|
|
6372
6372
|
min-height: 32px !important;
|
|
6373
6373
|
color: #666;
|
|
6374
6374
|
font-size: 13px;
|
|
6375
6375
|
}
|
|
6376
|
-
.fec-table-container[data-v-
|
|
6377
|
-
.fec-table-container[data-v-
|
|
6376
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-body--column .c--tooltip,
|
|
6377
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-body--column .c--title {
|
|
6378
6378
|
height: 32px !important;
|
|
6379
6379
|
min-height: 32px !important;
|
|
6380
6380
|
}
|
|
6381
|
-
.fec-table-container[data-v-
|
|
6381
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--border-line {
|
|
6382
6382
|
border: none;
|
|
6383
6383
|
border-bottom: 1px solid #ebeef5;
|
|
6384
6384
|
border-top: 1px solid #ebeef5;
|
|
6385
6385
|
}
|
|
6386
|
-
.fec-table-container[data-v-
|
|
6387
|
-
.fec-table-container[data-v-
|
|
6386
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--scroll-y-handle-appearance,
|
|
6387
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--scroll-y-wrapper:after {
|
|
6388
6388
|
border: none !important;
|
|
6389
6389
|
}
|
|
6390
|
-
.fec-table-container[data-v-
|
|
6390
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--scroll-y-top-corner {
|
|
6391
6391
|
display: none !important;
|
|
6392
6392
|
}
|
|
6393
|
-
.fec-table-container[data-v-
|
|
6393
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-cell--sort {
|
|
6394
6394
|
font-size: 14px;
|
|
6395
6395
|
}
|
|
6396
|
-
.fec-table-container[data-v-
|
|
6397
|
-
.fec-table-container[data-v-
|
|
6398
|
-
.fec-table-container[data-v-
|
|
6399
|
-
.fec-table-container[data-v-
|
|
6400
|
-
.fec-table-container[data-v-
|
|
6401
|
-
.fec-table-container[data-v-
|
|
6396
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-body--column,
|
|
6397
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-footer--column,
|
|
6398
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-header--column,
|
|
6399
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-body--column,
|
|
6400
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-footer--column,
|
|
6401
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-header--column {
|
|
6402
6402
|
background-image: linear-gradient(#ebeef5, #ebeef5) !important;
|
|
6403
6403
|
}
|
|
6404
|
-
.fec-table-container[data-v-
|
|
6404
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .el-button.is-disabled {
|
|
6405
6405
|
color: #ccc !important;
|
|
6406
6406
|
}
|
|
6407
|
-
.fec-table-sub[data-v-
|
|
6407
|
+
.fec-table-sub[data-v-1b05547f] .vxe-table .vxe-table--border-line {
|
|
6408
6408
|
border-top: none;
|
|
6409
6409
|
}
|
|
6410
6410
|
.fec-layout-card[data-v-c90689d4] {
|
|
@@ -6458,11 +6458,6 @@ body,
|
|
|
6458
6458
|
}:root,:host{--van-cell-font-size: var(--van-font-size-md);--van-cell-line-height: 24px;--van-cell-vertical-padding: 10px;--van-cell-horizontal-padding: var(--van-padding-md);--van-cell-text-color: var(--van-text-color);--van-cell-background: var(--van-background-2);--van-cell-border-color: var(--van-border-color);--van-cell-active-color: var(--van-active-color);--van-cell-required-color: var(--van-danger-color);--van-cell-label-color: var(--van-text-color-2);--van-cell-label-font-size: var(--van-font-size-sm);--van-cell-label-line-height: var(--van-line-height-sm);--van-cell-label-margin-top: var(--van-padding-base);--van-cell-value-color: var(--van-text-color-2);--van-cell-value-font-size: inherit;--van-cell-icon-size: 16px;--van-cell-right-icon-color: var(--van-gray-6);--van-cell-large-vertical-padding: var(--van-padding-sm);--van-cell-large-title-font-size: var(--van-font-size-lg);--van-cell-large-label-font-size: var(--van-font-size-md);--van-cell-large-value-font-size: inherit}.van-cell{position:relative;display:flex;box-sizing:border-box;width:100%;padding:var(--van-cell-vertical-padding) var(--van-cell-horizontal-padding);overflow:hidden;color:var(--van-cell-text-color);font-size:var(--van-cell-font-size);line-height:var(--van-cell-line-height);background:var(--van-cell-background)}.van-cell:after{position:absolute;box-sizing:border-box;content:" ";pointer-events:none;right:var(--van-padding-md);bottom:0;left:var(--van-padding-md);border-bottom:1px solid var(--van-cell-border-color);transform:scaleY(.5)}.van-cell:last-child:after,.van-cell--borderless:after{display:none}.van-cell__label{margin-top:var(--van-cell-label-margin-top);color:var(--van-cell-label-color);font-size:var(--van-cell-label-font-size);line-height:var(--van-cell-label-line-height)}.van-cell__title,.van-cell__value{flex:1}.van-cell__value{position:relative;overflow:hidden;color:var(--van-cell-value-color);font-size:var(--van-cell-value-font-size);text-align:right;vertical-align:middle;word-wrap:break-word}.van-cell__left-icon,.van-cell__right-icon{height:var(--van-cell-line-height);font-size:var(--van-cell-icon-size);line-height:var(--van-cell-line-height)}.van-cell__left-icon{margin-right:var(--van-padding-base)}.van-cell__right-icon{margin-left:var(--van-padding-base);color:var(--van-cell-right-icon-color)}.van-cell--clickable{cursor:pointer}.van-cell--clickable:active{background-color:var(--van-cell-active-color)}.van-cell--required{overflow:visible}.van-cell--required:before{position:absolute;left:var(--van-padding-xs);color:var(--van-cell-required-color);font-size:var(--van-cell-font-size);content:"*"}.van-cell--center{align-items:center}.van-cell--large{padding-top:var(--van-cell-large-vertical-padding);padding-bottom:var(--van-cell-large-vertical-padding)}.van-cell--large .van-cell__title{font-size:var(--van-cell-large-title-font-size)}.van-cell--large .van-cell__label{font-size:var(--van-cell-large-label-font-size)}.van-cell--large .van-cell__value{font-size:var(--van-cell-large-value-font-size)}
|
|
6459
6459
|
:root,:host{--van-cell-group-background: var(--van-background-2);--van-cell-group-title-color: var(--van-text-color-2);--van-cell-group-title-padding: var(--van-padding-md) var(--van-padding-md);--van-cell-group-title-font-size: var(--van-font-size-md);--van-cell-group-title-line-height: 16px;--van-cell-group-inset-padding: 0 var(--van-padding-md);--van-cell-group-inset-radius: var(--van-radius-lg);--van-cell-group-inset-title-padding: var(--van-padding-md) var(--van-padding-md)}.van-cell-group{background:var(--van-cell-group-background)}.van-cell-group--inset{margin:var(--van-cell-group-inset-padding);border-radius:var(--van-cell-group-inset-radius);overflow:hidden}.van-cell-group__title{padding:var(--van-cell-group-title-padding);color:var(--van-cell-group-title-color);font-size:var(--van-cell-group-title-font-size);line-height:var(--van-cell-group-title-line-height)}.van-cell-group__title--inset{padding:var(--van-cell-group-inset-title-padding)}
|
|
6460
6460
|
.van-swipe-cell{position:relative;overflow:hidden;cursor:-webkit-grab;cursor:grab}.van-swipe-cell__wrapper{transition-timing-function:cubic-bezier(.18,.89,.32,1);transition-property:transform}.van-swipe-cell__left,.van-swipe-cell__right{position:absolute;top:0;height:100%}.van-swipe-cell__left{left:0;transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;transform:translate3d(100%,0,0)}
|
|
6461
|
-
:root,:host{--van-action-bar-background: var(--van-background-2);--van-action-bar-height: 50px}.van-action-bar{position:fixed;right:0;bottom:0;left:0;display:flex;align-items:center;box-sizing:content-box;height:var(--van-action-bar-height);background:var(--van-action-bar-background)}
|
|
6462
|
-
:root,:host{--van-action-bar-button-height: 40px;--van-action-bar-button-warning-color: var(--van-gradient-orange);--van-action-bar-button-danger-color: var(--van-gradient-red)}.van-action-bar-button{flex:1;height:var(--van-action-bar-button-height);font-weight:var(--van-font-bold);font-size:var(--van-font-size-md);border:none;border-radius:0}.van-action-bar-button--first{margin-left:5px;border-top-left-radius:var(--van-radius-max);border-bottom-left-radius:var(--van-radius-max)}.van-action-bar-button--last{margin-right:5px;border-top-right-radius:var(--van-radius-max);border-bottom-right-radius:var(--van-radius-max)}.van-action-bar-button--warning{background:var(--van-action-bar-button-warning-color)}.van-action-bar-button--danger{background:var(--van-action-bar-button-danger-color)}@media(max-width:321px){.van-action-bar-button{font-size:13px}}
|
|
6463
|
-
: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)}
|
|
6464
|
-
: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)}
|
|
6465
|
-
: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}
|
|
6466
6461
|
|
|
6467
6462
|
.fec-card[data-v-dc24b95f] {
|
|
6468
6463
|
margin: 12px;
|
|
@@ -6471,6 +6466,11 @@ body,
|
|
|
6471
6466
|
.fec-swipe-delete-button[data-v-dc24b95f] {
|
|
6472
6467
|
height: 100%;
|
|
6473
6468
|
}
|
|
6469
|
+
:root,:host{--van-action-bar-background: var(--van-background-2);--van-action-bar-height: 50px}.van-action-bar{position:fixed;right:0;bottom:0;left:0;display:flex;align-items:center;box-sizing:content-box;height:var(--van-action-bar-height);background:var(--van-action-bar-background)}
|
|
6470
|
+
:root,:host{--van-action-bar-button-height: 40px;--van-action-bar-button-warning-color: var(--van-gradient-orange);--van-action-bar-button-danger-color: var(--van-gradient-red)}.van-action-bar-button{flex:1;height:var(--van-action-bar-button-height);font-weight:var(--van-font-bold);font-size:var(--van-font-size-md);border:none;border-radius:0}.van-action-bar-button--first{margin-left:5px;border-top-left-radius:var(--van-radius-max);border-bottom-left-radius:var(--van-radius-max)}.van-action-bar-button--last{margin-right:5px;border-top-right-radius:var(--van-radius-max);border-bottom-right-radius:var(--van-radius-max)}.van-action-bar-button--warning{background:var(--van-action-bar-button-warning-color)}.van-action-bar-button--danger{background:var(--van-action-bar-button-danger-color)}@media(max-width:321px){.van-action-bar-button{font-size:13px}}
|
|
6471
|
+
: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)}
|
|
6472
|
+
: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)}
|
|
6473
|
+
: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}
|
|
6474
6474
|
:root,:host{--van-image-placeholder-text-color: var(--van-text-color-2);--van-image-placeholder-font-size: var(--van-font-size-md);--van-image-placeholder-background: var(--van-background);--van-image-loading-icon-size: 32px;--van-image-loading-icon-color: var(--van-gray-4);--van-image-error-icon-size: 32px;--van-image-error-icon-color: var(--van-gray-4)}.van-image{position:relative;display:inline-block}.van-image--round{overflow:hidden;border-radius:var(--van-radius-max)}.van-image--round .van-image__img{border-radius:inherit}.van-image--block{display:block}.van-image__img,.van-image__error,.van-image__loading{display:block;width:100%;height:100%}.van-image__error,.van-image__loading{position:absolute;top:0;left:0;display:flex;flex-direction:column;align-items:center;justify-content:center;color:var(--van-image-placeholder-text-color);font-size:var(--van-image-placeholder-font-size);background:var(--van-image-placeholder-background)}.van-image__loading-icon{color:var(--van-image-loading-icon-color);font-size:var(--van-image-loading-icon-size)}.van-image__error-icon{color:var(--van-image-error-icon-color);font-size:var(--van-image-error-icon-size)}
|
|
6475
6475
|
|
|
6476
6476
|
.fec-collapse-container[data-v-6037566c] {
|
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
/* empty css */
|
|
7
7
|
/* empty css */
|
|
8
8
|
import { createBlock, openBlock, withCtx, createVNode, renderSlot } from "vue";
|
|
9
|
+
/* empty css */
|
|
10
|
+
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
9
11
|
/* empty css */
|
|
10
12
|
/* empty css */
|
|
11
13
|
/* empty css */
|
|
12
14
|
/* empty css */
|
|
13
15
|
/* empty css */
|
|
14
|
-
/* empty css */
|
|
15
|
-
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
16
16
|
import { SwipeCell } from "../../../../node_modules/vant/es/swipe-cell/index.mjs";
|
|
17
17
|
import { showConfirmDialog } from "../../../../node_modules/vant/es/dialog/function-call.mjs";
|
|
18
18
|
import "../../../../node_modules/vant/es/dialog/index.mjs";
|
|
@@ -639,14 +639,12 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
639
639
|
isHover: true
|
|
640
640
|
};
|
|
641
641
|
});
|
|
642
|
-
const radioConfig =
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
// highlight: true,
|
|
642
|
+
const radioConfig = ref({
|
|
643
|
+
trigger: "row",
|
|
644
|
+
highlight: true
|
|
646
645
|
});
|
|
647
|
-
const checkboxConfig =
|
|
646
|
+
const checkboxConfig = ref({
|
|
648
647
|
showHeader: true,
|
|
649
|
-
strict: true,
|
|
650
648
|
trigger: "row",
|
|
651
649
|
highlight: true,
|
|
652
650
|
showReserveStatus: true,
|
|
@@ -855,8 +853,8 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
855
853
|
"empty-text": "暂无数据",
|
|
856
854
|
"export-config": unref(exportConfig),
|
|
857
855
|
"row-config": rowConfig.value,
|
|
858
|
-
"radio-config":
|
|
859
|
-
"checkbox-config":
|
|
856
|
+
"radio-config": radioConfig.value,
|
|
857
|
+
"checkbox-config": checkboxConfig.value,
|
|
860
858
|
"sort-config": unref(sortConfig),
|
|
861
859
|
"show-footer": summaryConfig.value.enabled,
|
|
862
860
|
"footer-data": footerData.value,
|
|
@@ -914,7 +912,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
914
912
|
};
|
|
915
913
|
}
|
|
916
914
|
});
|
|
917
|
-
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
915
|
+
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1b05547f"]]);
|
|
918
916
|
export {
|
|
919
917
|
_Table as default
|
|
920
918
|
};
|
|
@@ -351,7 +351,6 @@ const _sfc_main = {
|
|
|
351
351
|
!__props.readonly && __props.selectMode === "single" ? (openBlock(), createBlock(unref(VxeColumn), {
|
|
352
352
|
key: 1,
|
|
353
353
|
type: "radio",
|
|
354
|
-
title: " ",
|
|
355
354
|
width: 50,
|
|
356
355
|
align: "center",
|
|
357
356
|
fixed: "left"
|
|
@@ -445,7 +444,7 @@ const _sfc_main = {
|
|
|
445
444
|
};
|
|
446
445
|
}
|
|
447
446
|
};
|
|
448
|
-
const TableColumn = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
447
|
+
const TableColumn = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-5138d230"]]);
|
|
449
448
|
export {
|
|
450
449
|
TableColumn as default
|
|
451
450
|
};
|
|
@@ -1,20 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
|
|
4
|
-
const index$9 = require("../../../../node_modules/element-plus/es/components/form/index.js");
|
|
5
|
-
const index$5 = require("../../../../node_modules/element-plus/es/components/input/index.js");
|
|
6
|
-
const index$8 = require("../../../../node_modules/element-plus/es/components/scrollbar/index.js");
|
|
7
|
-
const index$3 = require("../../../../node_modules/element-plus/es/components/button/index.js");
|
|
8
|
-
const index$b = require("../../../../node_modules/element-plus/es/components/select/index.js");
|
|
9
|
-
const index$e = require("../../../../node_modules/element-plus/es/components/checkbox/index.js");
|
|
10
|
-
const index$a = require("../../../../node_modules/element-plus/es/components/radio/index.js");
|
|
11
|
-
const index$2 = require("../../../../node_modules/element-plus/es/components/container/index.js");
|
|
12
|
-
const index$1 = require("../../../../node_modules/element-plus/es/components/dialog/index.js");
|
|
13
|
-
const index$6 = require("../../../../node_modules/element-plus/es/components/link/index.js");
|
|
14
|
-
const index$d = require("../../../../node_modules/element-plus/es/components/switch/index.js");
|
|
15
|
-
const index$f = require("../../../../node_modules/element-plus/es/components/message/index.js");
|
|
16
|
-
const index$c = require("../../../../node_modules/element-plus/es/components/popover/index.js");
|
|
17
|
-
require("../../../../_virtual/dayjs.min.js");
|
|
3
|
+
require("../../../../node_modules/element-plus/es/index.js");
|
|
18
4
|
;/* empty css */
|
|
19
5
|
;/* empty css */
|
|
20
6
|
;/* empty css */
|
|
@@ -58,6 +44,20 @@ const widgets = require("../table/property/widgets.vue.js");
|
|
|
58
44
|
;/* empty css */
|
|
59
45
|
;/* empty css */
|
|
60
46
|
const _pluginVue_exportHelper = require("../../../../_virtual/_plugin-vue_export-helper.js");
|
|
47
|
+
const index$1 = require("../../../../node_modules/element-plus/es/components/dialog/index.js");
|
|
48
|
+
const index$2 = require("../../../../node_modules/element-plus/es/components/container/index.js");
|
|
49
|
+
const index$3 = require("../../../../node_modules/element-plus/es/components/button/index.js");
|
|
50
|
+
const index$5 = require("../../../../node_modules/element-plus/es/components/input/index.js");
|
|
51
|
+
const index$6 = require("../../../../node_modules/element-plus/es/components/link/index.js");
|
|
52
|
+
const index$7 = require("../../../../node_modules/element-plus/es/components/icon/index.js");
|
|
53
|
+
const index$8 = require("../../../../node_modules/element-plus/es/components/scrollbar/index.js");
|
|
54
|
+
const index$9 = require("../../../../node_modules/element-plus/es/components/form/index.js");
|
|
55
|
+
const index$a = require("../../../../node_modules/element-plus/es/components/radio/index.js");
|
|
56
|
+
const index$b = require("../../../../node_modules/element-plus/es/components/select/index.js");
|
|
57
|
+
const index$c = require("../../../../node_modules/element-plus/es/components/popover/index.js");
|
|
58
|
+
const index$d = require("../../../../node_modules/element-plus/es/components/switch/index.js");
|
|
59
|
+
const index$e = require("../../../../node_modules/element-plus/es/components/checkbox/index.js");
|
|
60
|
+
const index$f = require("../../../../node_modules/element-plus/es/components/message/index.js");
|
|
61
61
|
const _hoisted_1 = { key: 0 };
|
|
62
62
|
const _hoisted_2 = { class: "dialog-menu-item is-editing" };
|
|
63
63
|
const _hoisted_3 = { class: "new-item-content" };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index.
|
|
3
|
+
const index = require("./index.vue2.js");
|
|
4
4
|
const vue = require("vue");
|
|
5
5
|
function useDialogDialog() {
|
|
6
6
|
const dialogDialogVisible = vue.ref(false);
|
|
@@ -1,20 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
|
|
4
|
-
const index$a = require("../../../../node_modules/element-plus/es/components/form/index.js");
|
|
5
|
-
const index$7 = require("../../../../node_modules/element-plus/es/components/input/index.js");
|
|
6
|
-
const index$9 = require("../../../../node_modules/element-plus/es/components/scrollbar/index.js");
|
|
7
|
-
const index$6 = require("../../../../node_modules/element-plus/es/components/button/index.js");
|
|
8
|
-
const index$c = require("../../../../node_modules/element-plus/es/components/select/index.js");
|
|
9
|
-
const index$f = require("../../../../node_modules/element-plus/es/components/checkbox/index.js");
|
|
10
|
-
const index$b = require("../../../../node_modules/element-plus/es/components/radio/index.js");
|
|
11
|
-
const index$3 = require("../../../../node_modules/element-plus/es/components/container/index.js");
|
|
12
|
-
const index$2 = require("../../../../node_modules/element-plus/es/components/dialog/index.js");
|
|
13
|
-
const index$8 = require("../../../../node_modules/element-plus/es/components/link/index.js");
|
|
14
|
-
const index$e = require("../../../../node_modules/element-plus/es/components/switch/index.js");
|
|
15
|
-
const index$1 = require("../../../../node_modules/element-plus/es/components/message/index.js");
|
|
16
|
-
const index$d = require("../../../../node_modules/element-plus/es/components/popover/index.js");
|
|
17
|
-
require("../../../../_virtual/dayjs.min.js");
|
|
3
|
+
require("../../../../node_modules/element-plus/es/index.js");
|
|
18
4
|
;/* empty css */
|
|
19
5
|
;/* empty css */
|
|
20
6
|
;/* empty css */
|
|
@@ -57,7 +43,6 @@ const _pluginVue_exportHelper = require("../../../../_virtual/_plugin-vue_export
|
|
|
57
43
|
require("../../../../node_modules/element-plus/theme-chalk/el-tooltip.css.js");
|
|
58
44
|
;/* empty css */
|
|
59
45
|
;/* empty css */
|
|
60
|
-
require("element-plus");
|
|
61
46
|
;/* empty css */
|
|
62
47
|
;/* empty css */
|
|
63
48
|
;/* empty css */
|
|
@@ -118,6 +103,20 @@ require("../../../../node_modules/element-plus/theme-chalk/el-date-picker.css.js
|
|
|
118
103
|
;/* empty css */
|
|
119
104
|
;/* empty css */
|
|
120
105
|
;/* empty css */
|
|
106
|
+
const index$1 = require("../../../../node_modules/element-plus/es/components/message/index.js");
|
|
107
|
+
const index$2 = require("../../../../node_modules/element-plus/es/components/dialog/index.js");
|
|
108
|
+
const index$3 = require("../../../../node_modules/element-plus/es/components/container/index.js");
|
|
109
|
+
const index$4 = require("../../../../node_modules/element-plus/es/components/icon/index.js");
|
|
110
|
+
const index$6 = require("../../../../node_modules/element-plus/es/components/button/index.js");
|
|
111
|
+
const index$7 = require("../../../../node_modules/element-plus/es/components/input/index.js");
|
|
112
|
+
const index$8 = require("../../../../node_modules/element-plus/es/components/link/index.js");
|
|
113
|
+
const index$9 = require("../../../../node_modules/element-plus/es/components/scrollbar/index.js");
|
|
114
|
+
const index$a = require("../../../../node_modules/element-plus/es/components/form/index.js");
|
|
115
|
+
const index$b = require("../../../../node_modules/element-plus/es/components/radio/index.js");
|
|
116
|
+
const index$c = require("../../../../node_modules/element-plus/es/components/select/index.js");
|
|
117
|
+
const index$d = require("../../../../node_modules/element-plus/es/components/popover/index.js");
|
|
118
|
+
const index$e = require("../../../../node_modules/element-plus/es/components/switch/index.js");
|
|
119
|
+
const index$f = require("../../../../node_modules/element-plus/es/components/checkbox/index.js");
|
|
121
120
|
const _hoisted_1 = {
|
|
122
121
|
key: 0,
|
|
123
122
|
class: "loading-overlay"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index.
|
|
3
|
+
const index = require("./index.vue2.js");
|
|
4
4
|
const vue = require("vue");
|
|
5
5
|
function useDialogGlobalDialog() {
|
|
6
6
|
const dialogGlobalDialogVisible = vue.ref(false);
|
|
@@ -54,8 +54,8 @@ const _pluginVue_exportHelper = require("../../../../../_virtual/_plugin-vue_exp
|
|
|
54
54
|
require("../../../components/TemplateSelector.vue.js");
|
|
55
55
|
require("../../table/default.js");
|
|
56
56
|
;/* empty css */
|
|
57
|
-
;/* empty css
|
|
58
|
-
;/* empty css
|
|
57
|
+
;/* empty css */
|
|
58
|
+
;/* empty css */
|
|
59
59
|
require("../../../store/index.js");
|
|
60
60
|
;/* empty css */
|
|
61
61
|
const index$2 = require("../../../../../node_modules/element-plus/es/components/collapse/index.js");
|
package/lib/designer.css
CHANGED
|
@@ -6011,10 +6011,10 @@ body,
|
|
|
6011
6011
|
border-radius: 5px;
|
|
6012
6012
|
margin-right: 12px;
|
|
6013
6013
|
margin-top: 2px;
|
|
6014
|
-
}.cell-content .cell-text[data-v-
|
|
6014
|
+
}.cell-content .cell-text[data-v-5138d230] {
|
|
6015
6015
|
display: inline-block;
|
|
6016
6016
|
}
|
|
6017
|
-
.cell-content .copy-icon[data-v-
|
|
6017
|
+
.cell-content .copy-icon[data-v-5138d230] {
|
|
6018
6018
|
cursor: pointer;
|
|
6019
6019
|
color: #909399;
|
|
6020
6020
|
font-size: 14px;
|
|
@@ -6022,7 +6022,7 @@ body,
|
|
|
6022
6022
|
top: 4px;
|
|
6023
6023
|
margin-left: 4px;
|
|
6024
6024
|
}
|
|
6025
|
-
.cell-content .copy-icon[data-v-
|
|
6025
|
+
.cell-content .copy-icon[data-v-5138d230]:hover {
|
|
6026
6026
|
color: #409eff;
|
|
6027
6027
|
}.fec-table-filter[data-v-9c6e8c47] {
|
|
6028
6028
|
display: flex;
|
|
@@ -6309,12 +6309,12 @@ body,
|
|
|
6309
6309
|
}
|
|
6310
6310
|
[data-v-e95c842d] .el-checkbox-group .el-checkbox-button__inner {
|
|
6311
6311
|
border-radius: 4px;
|
|
6312
|
-
}.fec-table[data-v-
|
|
6312
|
+
}.fec-table[data-v-1b05547f] {
|
|
6313
6313
|
height: 100%;
|
|
6314
6314
|
flex-grow: 1;
|
|
6315
6315
|
padding: 0 16px;
|
|
6316
6316
|
}
|
|
6317
|
-
.fec-table-container[data-v-
|
|
6317
|
+
.fec-table-container[data-v-1b05547f] {
|
|
6318
6318
|
width: 100%;
|
|
6319
6319
|
background: #fff;
|
|
6320
6320
|
box-sizing: border-box;
|
|
@@ -6324,87 +6324,87 @@ body,
|
|
|
6324
6324
|
overflow: hidden;
|
|
6325
6325
|
flex-grow: 1;
|
|
6326
6326
|
}
|
|
6327
|
-
.fec-table-container .fec-vxe-table[data-v-
|
|
6327
|
+
.fec-table-container .fec-vxe-table[data-v-1b05547f] {
|
|
6328
6328
|
flex: 1;
|
|
6329
6329
|
min-height: 0;
|
|
6330
6330
|
overflow: hidden;
|
|
6331
6331
|
margin-bottom: 16px;
|
|
6332
6332
|
}
|
|
6333
|
-
.fec-table-container[data-v-
|
|
6333
|
+
.fec-table-container[data-v-1b05547f] .vxe-table {
|
|
6334
6334
|
font-size: 14px;
|
|
6335
6335
|
font-family: inherit;
|
|
6336
6336
|
}
|
|
6337
|
-
.fec-table-container[data-v-
|
|
6338
|
-
.fec-table-container[data-v-
|
|
6337
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-sort--asc-btn,
|
|
6338
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-sort--desc-btn {
|
|
6339
6339
|
color: #dcdcdc;
|
|
6340
6340
|
}
|
|
6341
|
-
.fec-table-container[data-v-
|
|
6342
|
-
.fec-table-container[data-v-
|
|
6341
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .serverSort .vxe-sort--asc-btn,
|
|
6342
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .serverSort .vxe-sort--desc-btn {
|
|
6343
6343
|
color: #d3edf9;
|
|
6344
6344
|
}
|
|
6345
|
-
.fec-table-container[data-v-
|
|
6345
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .serverSort .sort--active {
|
|
6346
6346
|
color: var(--el-color-primary);
|
|
6347
6347
|
}
|
|
6348
|
-
.fec-table-container[data-v-
|
|
6348
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .sort--active {
|
|
6349
6349
|
color: var(--el-color-primary);
|
|
6350
6350
|
}
|
|
6351
|
-
.fec-table-container[data-v-
|
|
6351
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--body-wrapper {
|
|
6352
6352
|
overflow: auto;
|
|
6353
6353
|
}
|
|
6354
|
-
.fec-table-container[data-v-
|
|
6355
|
-
.fec-table-container[data-v-
|
|
6356
|
-
.fec-table-container[data-v-
|
|
6354
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--body,
|
|
6355
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--header,
|
|
6356
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--footer {
|
|
6357
6357
|
width: 100% !important;
|
|
6358
6358
|
}
|
|
6359
|
-
.fec-table-container[data-v-
|
|
6359
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-header--column {
|
|
6360
6360
|
background-color: #fff;
|
|
6361
6361
|
}
|
|
6362
|
-
.fec-table-container[data-v-
|
|
6362
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-header--column .vxe-cell {
|
|
6363
6363
|
height: 40px !important;
|
|
6364
6364
|
min-height: 40px !important;
|
|
6365
6365
|
color: #333;
|
|
6366
6366
|
}
|
|
6367
|
-
.fec-table-container[data-v-
|
|
6367
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--header-inner-wrapper {
|
|
6368
6368
|
height: 40px !important;
|
|
6369
6369
|
}
|
|
6370
|
-
.fec-table-container[data-v-
|
|
6370
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-body--column .vxe-cell {
|
|
6371
6371
|
padding: 6px !important;
|
|
6372
6372
|
min-height: 32px !important;
|
|
6373
6373
|
color: #666;
|
|
6374
6374
|
font-size: 13px;
|
|
6375
6375
|
}
|
|
6376
|
-
.fec-table-container[data-v-
|
|
6377
|
-
.fec-table-container[data-v-
|
|
6376
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-body--column .c--tooltip,
|
|
6377
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-body--column .c--title {
|
|
6378
6378
|
height: 32px !important;
|
|
6379
6379
|
min-height: 32px !important;
|
|
6380
6380
|
}
|
|
6381
|
-
.fec-table-container[data-v-
|
|
6381
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--border-line {
|
|
6382
6382
|
border: none;
|
|
6383
6383
|
border-bottom: 1px solid #ebeef5;
|
|
6384
6384
|
border-top: 1px solid #ebeef5;
|
|
6385
6385
|
}
|
|
6386
|
-
.fec-table-container[data-v-
|
|
6387
|
-
.fec-table-container[data-v-
|
|
6386
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--scroll-y-handle-appearance,
|
|
6387
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--scroll-y-wrapper:after {
|
|
6388
6388
|
border: none !important;
|
|
6389
6389
|
}
|
|
6390
|
-
.fec-table-container[data-v-
|
|
6390
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-table--scroll-y-top-corner {
|
|
6391
6391
|
display: none !important;
|
|
6392
6392
|
}
|
|
6393
|
-
.fec-table-container[data-v-
|
|
6393
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-cell--sort {
|
|
6394
6394
|
font-size: 14px;
|
|
6395
6395
|
}
|
|
6396
|
-
.fec-table-container[data-v-
|
|
6397
|
-
.fec-table-container[data-v-
|
|
6398
|
-
.fec-table-container[data-v-
|
|
6399
|
-
.fec-table-container[data-v-
|
|
6400
|
-
.fec-table-container[data-v-
|
|
6401
|
-
.fec-table-container[data-v-
|
|
6396
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-body--column,
|
|
6397
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-footer--column,
|
|
6398
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-header--column,
|
|
6399
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-body--column,
|
|
6400
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-footer--column,
|
|
6401
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .vxe-header--column {
|
|
6402
6402
|
background-image: linear-gradient(#ebeef5, #ebeef5) !important;
|
|
6403
6403
|
}
|
|
6404
|
-
.fec-table-container[data-v-
|
|
6404
|
+
.fec-table-container[data-v-1b05547f] .vxe-table .el-button.is-disabled {
|
|
6405
6405
|
color: #ccc !important;
|
|
6406
6406
|
}
|
|
6407
|
-
.fec-table-sub[data-v-
|
|
6407
|
+
.fec-table-sub[data-v-1b05547f] .vxe-table .vxe-table--border-line {
|
|
6408
6408
|
border-top: none;
|
|
6409
6409
|
}
|
|
6410
6410
|
.fec-layout-card[data-v-c90689d4] {
|
|
@@ -6458,11 +6458,6 @@ body,
|
|
|
6458
6458
|
}:root,:host{--van-cell-font-size: var(--van-font-size-md);--van-cell-line-height: 24px;--van-cell-vertical-padding: 10px;--van-cell-horizontal-padding: var(--van-padding-md);--van-cell-text-color: var(--van-text-color);--van-cell-background: var(--van-background-2);--van-cell-border-color: var(--van-border-color);--van-cell-active-color: var(--van-active-color);--van-cell-required-color: var(--van-danger-color);--van-cell-label-color: var(--van-text-color-2);--van-cell-label-font-size: var(--van-font-size-sm);--van-cell-label-line-height: var(--van-line-height-sm);--van-cell-label-margin-top: var(--van-padding-base);--van-cell-value-color: var(--van-text-color-2);--van-cell-value-font-size: inherit;--van-cell-icon-size: 16px;--van-cell-right-icon-color: var(--van-gray-6);--van-cell-large-vertical-padding: var(--van-padding-sm);--van-cell-large-title-font-size: var(--van-font-size-lg);--van-cell-large-label-font-size: var(--van-font-size-md);--van-cell-large-value-font-size: inherit}.van-cell{position:relative;display:flex;box-sizing:border-box;width:100%;padding:var(--van-cell-vertical-padding) var(--van-cell-horizontal-padding);overflow:hidden;color:var(--van-cell-text-color);font-size:var(--van-cell-font-size);line-height:var(--van-cell-line-height);background:var(--van-cell-background)}.van-cell:after{position:absolute;box-sizing:border-box;content:" ";pointer-events:none;right:var(--van-padding-md);bottom:0;left:var(--van-padding-md);border-bottom:1px solid var(--van-cell-border-color);transform:scaleY(.5)}.van-cell:last-child:after,.van-cell--borderless:after{display:none}.van-cell__label{margin-top:var(--van-cell-label-margin-top);color:var(--van-cell-label-color);font-size:var(--van-cell-label-font-size);line-height:var(--van-cell-label-line-height)}.van-cell__title,.van-cell__value{flex:1}.van-cell__value{position:relative;overflow:hidden;color:var(--van-cell-value-color);font-size:var(--van-cell-value-font-size);text-align:right;vertical-align:middle;word-wrap:break-word}.van-cell__left-icon,.van-cell__right-icon{height:var(--van-cell-line-height);font-size:var(--van-cell-icon-size);line-height:var(--van-cell-line-height)}.van-cell__left-icon{margin-right:var(--van-padding-base)}.van-cell__right-icon{margin-left:var(--van-padding-base);color:var(--van-cell-right-icon-color)}.van-cell--clickable{cursor:pointer}.van-cell--clickable:active{background-color:var(--van-cell-active-color)}.van-cell--required{overflow:visible}.van-cell--required:before{position:absolute;left:var(--van-padding-xs);color:var(--van-cell-required-color);font-size:var(--van-cell-font-size);content:"*"}.van-cell--center{align-items:center}.van-cell--large{padding-top:var(--van-cell-large-vertical-padding);padding-bottom:var(--van-cell-large-vertical-padding)}.van-cell--large .van-cell__title{font-size:var(--van-cell-large-title-font-size)}.van-cell--large .van-cell__label{font-size:var(--van-cell-large-label-font-size)}.van-cell--large .van-cell__value{font-size:var(--van-cell-large-value-font-size)}
|
|
6459
6459
|
:root,:host{--van-cell-group-background: var(--van-background-2);--van-cell-group-title-color: var(--van-text-color-2);--van-cell-group-title-padding: var(--van-padding-md) var(--van-padding-md);--van-cell-group-title-font-size: var(--van-font-size-md);--van-cell-group-title-line-height: 16px;--van-cell-group-inset-padding: 0 var(--van-padding-md);--van-cell-group-inset-radius: var(--van-radius-lg);--van-cell-group-inset-title-padding: var(--van-padding-md) var(--van-padding-md)}.van-cell-group{background:var(--van-cell-group-background)}.van-cell-group--inset{margin:var(--van-cell-group-inset-padding);border-radius:var(--van-cell-group-inset-radius);overflow:hidden}.van-cell-group__title{padding:var(--van-cell-group-title-padding);color:var(--van-cell-group-title-color);font-size:var(--van-cell-group-title-font-size);line-height:var(--van-cell-group-title-line-height)}.van-cell-group__title--inset{padding:var(--van-cell-group-inset-title-padding)}
|
|
6460
6460
|
.van-swipe-cell{position:relative;overflow:hidden;cursor:-webkit-grab;cursor:grab}.van-swipe-cell__wrapper{transition-timing-function:cubic-bezier(.18,.89,.32,1);transition-property:transform}.van-swipe-cell__left,.van-swipe-cell__right{position:absolute;top:0;height:100%}.van-swipe-cell__left{left:0;transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;transform:translate3d(100%,0,0)}
|
|
6461
|
-
:root,:host{--van-action-bar-background: var(--van-background-2);--van-action-bar-height: 50px}.van-action-bar{position:fixed;right:0;bottom:0;left:0;display:flex;align-items:center;box-sizing:content-box;height:var(--van-action-bar-height);background:var(--van-action-bar-background)}
|
|
6462
|
-
:root,:host{--van-action-bar-button-height: 40px;--van-action-bar-button-warning-color: var(--van-gradient-orange);--van-action-bar-button-danger-color: var(--van-gradient-red)}.van-action-bar-button{flex:1;height:var(--van-action-bar-button-height);font-weight:var(--van-font-bold);font-size:var(--van-font-size-md);border:none;border-radius:0}.van-action-bar-button--first{margin-left:5px;border-top-left-radius:var(--van-radius-max);border-bottom-left-radius:var(--van-radius-max)}.van-action-bar-button--last{margin-right:5px;border-top-right-radius:var(--van-radius-max);border-bottom-right-radius:var(--van-radius-max)}.van-action-bar-button--warning{background:var(--van-action-bar-button-warning-color)}.van-action-bar-button--danger{background:var(--van-action-bar-button-danger-color)}@media(max-width:321px){.van-action-bar-button{font-size:13px}}
|
|
6463
|
-
: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)}
|
|
6464
|
-
: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)}
|
|
6465
|
-
: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}
|
|
6466
6461
|
|
|
6467
6462
|
.fec-card[data-v-dc24b95f] {
|
|
6468
6463
|
margin: 12px;
|
|
@@ -6471,6 +6466,11 @@ body,
|
|
|
6471
6466
|
.fec-swipe-delete-button[data-v-dc24b95f] {
|
|
6472
6467
|
height: 100%;
|
|
6473
6468
|
}
|
|
6469
|
+
:root,:host{--van-action-bar-background: var(--van-background-2);--van-action-bar-height: 50px}.van-action-bar{position:fixed;right:0;bottom:0;left:0;display:flex;align-items:center;box-sizing:content-box;height:var(--van-action-bar-height);background:var(--van-action-bar-background)}
|
|
6470
|
+
:root,:host{--van-action-bar-button-height: 40px;--van-action-bar-button-warning-color: var(--van-gradient-orange);--van-action-bar-button-danger-color: var(--van-gradient-red)}.van-action-bar-button{flex:1;height:var(--van-action-bar-button-height);font-weight:var(--van-font-bold);font-size:var(--van-font-size-md);border:none;border-radius:0}.van-action-bar-button--first{margin-left:5px;border-top-left-radius:var(--van-radius-max);border-bottom-left-radius:var(--van-radius-max)}.van-action-bar-button--last{margin-right:5px;border-top-right-radius:var(--van-radius-max);border-bottom-right-radius:var(--van-radius-max)}.van-action-bar-button--warning{background:var(--van-action-bar-button-warning-color)}.van-action-bar-button--danger{background:var(--van-action-bar-button-danger-color)}@media(max-width:321px){.van-action-bar-button{font-size:13px}}
|
|
6471
|
+
: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)}
|
|
6472
|
+
: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)}
|
|
6473
|
+
: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}
|
|
6474
6474
|
:root,:host{--van-image-placeholder-text-color: var(--van-text-color-2);--van-image-placeholder-font-size: var(--van-font-size-md);--van-image-placeholder-background: var(--van-background);--van-image-loading-icon-size: 32px;--van-image-loading-icon-color: var(--van-gray-4);--van-image-error-icon-size: 32px;--van-image-error-icon-color: var(--van-gray-4)}.van-image{position:relative;display:inline-block}.van-image--round{overflow:hidden;border-radius:var(--van-radius-max)}.van-image--round .van-image__img{border-radius:inherit}.van-image--block{display:block}.van-image__img,.van-image__error,.van-image__loading{display:block;width:100%;height:100%}.van-image__error,.van-image__loading{position:absolute;top:0;left:0;display:flex;flex-direction:column;align-items:center;justify-content:center;color:var(--van-image-placeholder-text-color);font-size:var(--van-image-placeholder-font-size);background:var(--van-image-placeholder-background)}.van-image__loading-icon{color:var(--van-image-loading-icon-color);font-size:var(--van-image-loading-icon-size)}.van-image__error-icon{color:var(--van-image-error-icon-color);font-size:var(--van-image-error-icon-size)}
|
|
6475
6475
|
|
|
6476
6476
|
.fec-collapse-container[data-v-6037566c] {
|
|
@@ -8,13 +8,13 @@ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toString
|
|
|
8
8
|
;/* empty css */
|
|
9
9
|
;/* empty css */
|
|
10
10
|
const vue = require("vue");
|
|
11
|
+
;/* empty css */
|
|
12
|
+
const _pluginVue_exportHelper = require("../../../../../../_virtual/_plugin-vue_export-helper.js");
|
|
11
13
|
;/* empty css */
|
|
12
14
|
;/* empty css */
|
|
13
15
|
;/* empty css */
|
|
14
16
|
;/* empty css */
|
|
15
17
|
;/* empty css */
|
|
16
|
-
;/* empty css */
|
|
17
|
-
const _pluginVue_exportHelper = require("../../../../../../_virtual/_plugin-vue_export-helper.js");
|
|
18
18
|
const index$1 = require("../../../../node_modules/vant/es/swipe-cell/index.js");
|
|
19
19
|
const functionCall = require("../../../../node_modules/vant/es/dialog/function-call.js");
|
|
20
20
|
require("../../../../node_modules/vant/es/dialog/index.js");
|
|
@@ -641,14 +641,12 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
641
641
|
isHover: true
|
|
642
642
|
};
|
|
643
643
|
});
|
|
644
|
-
const radioConfig = vue.
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
// highlight: true,
|
|
644
|
+
const radioConfig = vue.ref({
|
|
645
|
+
trigger: "row",
|
|
646
|
+
highlight: true
|
|
648
647
|
});
|
|
649
|
-
const checkboxConfig = vue.
|
|
648
|
+
const checkboxConfig = vue.ref({
|
|
650
649
|
showHeader: true,
|
|
651
|
-
strict: true,
|
|
652
650
|
trigger: "row",
|
|
653
651
|
highlight: true,
|
|
654
652
|
showReserveStatus: true,
|
|
@@ -857,8 +855,8 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
857
855
|
"empty-text": "暂无数据",
|
|
858
856
|
"export-config": vue.unref(exportConfig),
|
|
859
857
|
"row-config": rowConfig.value,
|
|
860
|
-
"radio-config":
|
|
861
|
-
"checkbox-config":
|
|
858
|
+
"radio-config": radioConfig.value,
|
|
859
|
+
"checkbox-config": checkboxConfig.value,
|
|
862
860
|
"sort-config": vue.unref(sortConfig),
|
|
863
861
|
"show-footer": summaryConfig.value.enabled,
|
|
864
862
|
"footer-data": footerData.value,
|
|
@@ -916,5 +914,5 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
916
914
|
};
|
|
917
915
|
}
|
|
918
916
|
});
|
|
919
|
-
const _Table = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
917
|
+
const _Table = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-1b05547f"]]);
|
|
920
918
|
exports.default = _Table;
|
|
@@ -353,7 +353,6 @@ const _sfc_main = {
|
|
|
353
353
|
!__props.readonly && __props.selectMode === "single" ? (vue.openBlock(), vue.createBlock(vue.unref(vxeTable.VxeColumn), {
|
|
354
354
|
key: 1,
|
|
355
355
|
type: "radio",
|
|
356
|
-
title: " ",
|
|
357
356
|
width: 50,
|
|
358
357
|
align: "center",
|
|
359
358
|
fixed: "left"
|
|
@@ -447,5 +446,5 @@ const _sfc_main = {
|
|
|
447
446
|
};
|
|
448
447
|
}
|
|
449
448
|
};
|
|
450
|
-
const TableColumn = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
449
|
+
const TableColumn = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-5138d230"]]);
|
|
451
450
|
exports.default = TableColumn;
|