@smallwei/avue 3.8.1 → 3.8.3
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/README.md +206 -86
- package/dist/avue.js +37301 -0
- package/dist/avue.js.map +1 -0
- package/dist/avue.min.js +6 -0
- package/dist/avue.min.mjs +2 -0
- package/dist/avue.mjs +2 -0
- package/dist/index.css +1 -0
- package/es/avue.min.mjs +2 -0
- package/es/avue.min.ts +2 -0
- package/es/avue.mjs +2 -0
- package/es/avue.ts +2 -0
- package/es/core/create.mjs +8 -0
- package/es/core/create.ts +16 -0
- package/es/core/dataformat.mjs +184 -0
- package/es/core/dataformat.ts +190 -0
- package/es/core/detail.mjs +74 -0
- package/es/core/detail.ts +81 -0
- package/es/core/dic.mjs +213 -0
- package/es/core/dic.ts +235 -0
- package/es/core/locale.mjs +8 -0
- package/es/core/locale.ts +9 -0
- package/es/core/packages.mjs +61 -0
- package/es/core/packages.ts +62 -0
- package/es/core/slot.mjs +32 -0
- package/es/core/slot.ts +30 -0
- package/es/global/variable.mjs +80 -0
- package/es/global/variable.ts +84 -0
- package/es/icon.mjs +9 -0
- package/es/icon.ts +11 -0
- package/es/index.mjs +127 -0
- package/es/index.ts +177 -0
- package/es/locale/browser/en.mjs +288 -0
- package/es/locale/browser/zh-cn.mjs +288 -0
- package/es/locale/browser/zh.mjs +288 -0
- package/es/locale/index.mjs +141 -0
- package/es/locale/index.ts +196 -0
- package/es/locale/lang/en.mjs +282 -0
- package/es/locale/lang/en.ts +282 -0
- package/es/locale/lang/zh-cn.mjs +282 -0
- package/es/locale/lang/zh-cn.ts +282 -0
- package/es/locale/lang/zh.mjs +282 -0
- package/es/locale/lang/zh.ts +282 -0
- package/es/packages/core/common/event.mjs +58 -0
- package/es/packages/core/common/event.ts +56 -0
- package/es/packages/core/common/init.mjs +134 -0
- package/es/packages/core/common/init.ts +133 -0
- package/es/packages/core/common/props.mjs +239 -0
- package/es/packages/core/common/props.ts +240 -0
- package/es/packages/core/components/dialog-form/index.mjs +29 -0
- package/es/packages/core/components/dialog-form/index.ts +29 -0
- package/es/packages/core/components/dialog-form/index.vue +108 -0
- package/es/packages/core/components/form/custom.mjs +41 -0
- package/es/packages/core/components/form/custom.ts +41 -0
- package/es/packages/core/components/form/index.vue +176 -0
- package/es/packages/core/components/icon/index.vue +37 -0
- package/es/packages/core/components/image-preview/index.mjs +34 -0
- package/es/packages/core/components/image-preview/index.ts +37 -0
- package/es/packages/core/components/image-preview/index.vue +215 -0
- package/es/packages/core/directive/contextmenu.mjs +92 -0
- package/es/packages/core/directive/contextmenu.ts +103 -0
- package/es/packages/core/directive/permission.mjs +19 -0
- package/es/packages/core/directive/permission.ts +18 -0
- package/es/packages/data/box/index.vue +66 -0
- package/es/packages/data/card/index.vue +62 -0
- package/es/packages/data/cardText/index.vue +56 -0
- package/es/packages/data/countdown/index.vue +81 -0
- package/es/packages/data/dashboard/index.vue +72 -0
- package/es/packages/data/display/index.vue +63 -0
- package/es/packages/data/icons/index.vue +68 -0
- package/es/packages/data/imgText/index.vue +72 -0
- package/es/packages/data/list/index.vue +69 -0
- package/es/packages/data/notice/index.vue +63 -0
- package/es/packages/data/operaText/index.vue +62 -0
- package/es/packages/data/panel/index.vue +62 -0
- package/es/packages/data/pay/index.vue +92 -0
- package/es/packages/data/price/index.vue +55 -0
- package/es/packages/data/product/index.vue +106 -0
- package/es/packages/data/profile/index.vue +91 -0
- package/es/packages/data/progress/index.vue +64 -0
- package/es/packages/data/rank/index.vue +92 -0
- package/es/packages/data/rotate/index.vue +69 -0
- package/es/packages/data/statistic/index.vue +71 -0
- package/es/packages/data/tabs/index.vue +64 -0
- package/es/packages/data/task/index.vue +82 -0
- package/es/packages/data/weather/index.vue +103 -0
- package/es/packages/element-plus/array/index.vue +115 -0
- package/es/packages/element-plus/article/index.vue +73 -0
- package/es/packages/element-plus/card/index.vue +103 -0
- package/es/packages/element-plus/cascader/index.vue +132 -0
- package/es/packages/element-plus/chat/index.vue +513 -0
- package/es/packages/element-plus/checkbox/index.vue +84 -0
- package/es/packages/element-plus/comment/index.vue +76 -0
- package/es/packages/element-plus/count-up/index.vue +107 -0
- package/es/packages/element-plus/crud/column/column-default.vue +128 -0
- package/es/packages/element-plus/crud/column/column-dynamic.vue +86 -0
- package/es/packages/element-plus/crud/column/column-menu.vue +267 -0
- package/es/packages/element-plus/crud/column/column-slot.vue +348 -0
- package/es/packages/element-plus/crud/column/column.vue +119 -0
- package/es/packages/element-plus/crud/column/menu.vue +78 -0
- package/es/packages/element-plus/crud/config.mjs +74 -0
- package/es/packages/element-plus/crud/config.ts +74 -0
- package/es/packages/element-plus/crud/dialog/dialog-column.vue +102 -0
- package/es/packages/element-plus/crud/dialog/dialog-excel.vue +204 -0
- package/es/packages/element-plus/crud/dialog/dialog-filter.vue +159 -0
- package/es/packages/element-plus/crud/dialog/dialog-form.vue +352 -0
- package/es/packages/element-plus/crud/grid/index.vue +271 -0
- package/es/packages/element-plus/crud/grid/item.vue +39 -0
- package/es/packages/element-plus/crud/index.vue +1018 -0
- package/es/packages/element-plus/crud/menu/header-menu.vue +175 -0
- package/es/packages/element-plus/crud/menu/header-search.vue +228 -0
- package/es/packages/element-plus/crud/menu/table-page.vue +108 -0
- package/es/packages/element-plus/date/index.vue +81 -0
- package/es/packages/element-plus/draggable/index.vue +444 -0
- package/es/packages/element-plus/dynamic/index.vue +353 -0
- package/es/packages/element-plus/flow/index.vue +339 -0
- package/es/packages/element-plus/flow/node.vue +84 -0
- package/es/packages/element-plus/form/config.mjs +6 -0
- package/es/packages/element-plus/form/config.ts +6 -0
- package/es/packages/element-plus/form/index.vue +954 -0
- package/es/packages/element-plus/form/menu.vue +63 -0
- package/es/packages/element-plus/group/index.vue +90 -0
- package/es/packages/element-plus/input/index.vue +1264 -0
- package/es/packages/element-plus/input-color/index.vue +70 -0
- package/es/packages/element-plus/input-cron/index.vue +363 -0
- package/es/packages/element-plus/input-icon/index.vue +143 -0
- package/es/packages/element-plus/input-map/index.vue +311 -0
- package/es/packages/element-plus/input-number/index.vue +91 -0
- package/es/packages/element-plus/input-table/index.vue +279 -0
- package/es/packages/element-plus/input-tag/index.vue +79 -0
- package/es/packages/element-plus/input-tree/index.vue +194 -0
- package/es/packages/element-plus/license/index.vue +155 -0
- package/es/packages/element-plus/login/index.vue +203 -0
- package/es/packages/element-plus/mention/index.vue +117 -0
- package/es/packages/element-plus/radio/index.vue +38 -0
- package/es/packages/element-plus/rate/index.vue +51 -0
- package/es/packages/element-plus/search/index.vue +129 -0
- package/es/packages/element-plus/select/index.vue +292 -0
- package/es/packages/element-plus/sign/index.vue +230 -0
- package/es/packages/element-plus/slider/index.vue +66 -0
- package/es/packages/element-plus/switch/index.vue +72 -0
- package/es/packages/element-plus/tabs/index.vue +62 -0
- package/es/packages/element-plus/text-ellipsis/index.vue +104 -0
- package/es/packages/element-plus/time/index.vue +81 -0
- package/es/packages/element-plus/title/index.vue +30 -0
- package/es/packages/element-plus/tree/index.vue +460 -0
- package/es/packages/element-plus/upload/index.vue +728 -0
- package/es/packages/element-plus/verify/index.vue +62 -0
- package/es/packages/element-plus/video/index.vue +90 -0
- package/es/plugin/ali/index.mjs +4 -0
- package/es/plugin/ali/index.ts +6 -0
- package/es/plugin/clipboard/index.mjs +61 -0
- package/es/plugin/clipboard/index.ts +67 -0
- package/es/plugin/export/_blob.mjs +151 -0
- package/es/plugin/export/_blob.ts +176 -0
- package/es/plugin/export/_export2Excel.mjs +141 -0
- package/es/plugin/export/_export2Excel.ts +166 -0
- package/es/plugin/export/index.mjs +263 -0
- package/es/plugin/export/index.ts +274 -0
- package/es/plugin/logs/index.mjs +46 -0
- package/es/plugin/logs/index.ts +66 -0
- package/es/plugin/print/index.mjs +145 -0
- package/es/plugin/print/index.ts +155 -0
- package/es/plugin/qiniu/index.mjs +78 -0
- package/es/plugin/qiniu/index.ts +88 -0
- package/es/plugin/screenshot/index.mjs +8 -0
- package/es/plugin/screenshot/index.ts +9 -0
- package/es/plugin/video/index.mjs +52 -0
- package/es/plugin/video/index.ts +60 -0
- package/es/plugin/watermark/index.mjs +114 -0
- package/es/plugin/watermark/index.ts +127 -0
- package/es/plugin/watermark/watermark.mjs +109 -0
- package/es/plugin/watermark/watermark.ts +121 -0
- package/es/ui/data/index.mjs +49 -0
- package/es/ui/data/index.ts +51 -0
- package/es/ui/element-plus/index.mjs +87 -0
- package/es/ui/element-plus/index.ts +89 -0
- package/es/ui/index.mjs +4 -0
- package/es/ui/index.ts +6 -0
- package/es/utils/bem.mjs +29 -0
- package/es/utils/bem.ts +36 -0
- package/es/utils/mock.mjs +137 -0
- package/es/utils/mock.ts +151 -0
- package/es/utils/util.mjs +370 -0
- package/es/utils/util.ts +392 -0
- package/es/utils/validate.mjs +18 -0
- package/es/utils/validate.ts +23 -0
- package/es/version.mjs +1 -0
- package/es/version.ts +1 -0
- package/lib/avue.js +11 -31398
- package/lib/avue.min.js +11 -6
- package/lib/avue.min.ts +2 -0
- package/lib/avue.ts +2 -0
- package/lib/core/create.js +14 -0
- package/lib/core/create.ts +16 -0
- package/lib/core/dataformat.js +194 -0
- package/lib/core/dataformat.ts +190 -0
- package/lib/core/detail.js +81 -0
- package/lib/core/detail.ts +81 -0
- package/lib/core/dic.js +220 -0
- package/lib/core/dic.ts +235 -0
- package/lib/core/locale.js +10 -0
- package/lib/core/locale.ts +9 -0
- package/lib/core/packages.js +66 -0
- package/lib/core/packages.ts +62 -0
- package/lib/core/slot.js +34 -0
- package/lib/core/slot.ts +30 -0
- package/lib/global/variable.js +83 -0
- package/lib/global/variable.ts +84 -0
- package/lib/icon.js +44 -0
- package/lib/icon.ts +11 -0
- package/lib/index.css +1 -1
- package/lib/index.js +134 -0
- package/lib/index.ts +177 -0
- package/lib/locale/browser/en.js +288 -0
- package/lib/locale/browser/zh-cn.js +288 -0
- package/lib/locale/browser/zh.js +288 -0
- package/lib/locale/index.js +153 -47
- package/lib/locale/index.ts +196 -0
- package/lib/locale/lang/en.js +284 -100
- package/lib/locale/lang/en.ts +282 -0
- package/lib/locale/lang/zh-cn.js +284 -0
- package/lib/locale/lang/zh-cn.ts +282 -0
- package/lib/locale/lang/zh.js +284 -100
- package/lib/locale/lang/zh.ts +282 -0
- package/lib/packages/core/common/event.js +61 -0
- package/lib/packages/core/common/event.ts +56 -0
- package/lib/packages/core/common/init.js +140 -0
- package/lib/packages/core/common/init.ts +133 -0
- package/lib/packages/core/common/props.js +245 -0
- package/lib/packages/core/common/props.ts +240 -0
- package/lib/packages/core/components/dialog-form/index.js +35 -0
- package/lib/packages/core/components/dialog-form/index.ts +29 -0
- package/lib/packages/core/components/dialog-form/index.vue +108 -0
- package/lib/packages/core/components/form/custom.js +43 -0
- package/lib/packages/core/components/form/custom.ts +41 -0
- package/lib/packages/core/components/form/index.vue +176 -0
- package/lib/packages/core/components/icon/index.vue +37 -0
- package/lib/packages/core/components/image-preview/index.js +40 -0
- package/lib/packages/core/components/image-preview/index.ts +37 -0
- package/lib/packages/core/components/image-preview/index.vue +215 -0
- package/lib/packages/core/directive/contextmenu.js +94 -0
- package/lib/packages/core/directive/contextmenu.ts +103 -0
- package/lib/packages/core/directive/permission.js +21 -0
- package/lib/packages/core/directive/permission.ts +18 -0
- package/lib/packages/data/box/index.vue +66 -0
- package/lib/packages/data/card/index.vue +62 -0
- package/lib/packages/data/cardText/index.vue +56 -0
- package/lib/packages/data/countdown/index.vue +81 -0
- package/lib/packages/data/dashboard/index.vue +72 -0
- package/lib/packages/data/display/index.vue +63 -0
- package/lib/packages/data/icons/index.vue +68 -0
- package/lib/packages/data/imgText/index.vue +72 -0
- package/lib/packages/data/list/index.vue +69 -0
- package/lib/packages/data/notice/index.vue +63 -0
- package/lib/packages/data/operaText/index.vue +62 -0
- package/lib/packages/data/panel/index.vue +62 -0
- package/lib/packages/data/pay/index.vue +92 -0
- package/lib/packages/data/price/index.vue +55 -0
- package/lib/packages/data/product/index.vue +106 -0
- package/lib/packages/data/profile/index.vue +91 -0
- package/lib/packages/data/progress/index.vue +64 -0
- package/lib/packages/data/rank/index.vue +92 -0
- package/lib/packages/data/rotate/index.vue +69 -0
- package/lib/packages/data/statistic/index.vue +71 -0
- package/lib/packages/data/tabs/index.vue +64 -0
- package/lib/packages/data/task/index.vue +82 -0
- package/lib/packages/data/weather/index.vue +103 -0
- package/lib/packages/element-plus/array/index.vue +115 -0
- package/lib/packages/element-plus/article/index.vue +73 -0
- package/lib/packages/element-plus/card/index.vue +103 -0
- package/lib/packages/element-plus/cascader/index.vue +132 -0
- package/lib/packages/element-plus/chat/index.vue +513 -0
- package/lib/packages/element-plus/checkbox/index.vue +84 -0
- package/lib/packages/element-plus/comment/index.vue +76 -0
- package/lib/packages/element-plus/count-up/index.vue +107 -0
- package/lib/packages/element-plus/crud/column/column-default.vue +128 -0
- package/lib/packages/element-plus/crud/column/column-dynamic.vue +86 -0
- package/lib/packages/element-plus/crud/column/column-menu.vue +267 -0
- package/lib/packages/element-plus/crud/column/column-slot.vue +348 -0
- package/lib/packages/element-plus/crud/column/column.vue +119 -0
- package/lib/packages/element-plus/crud/column/menu.vue +78 -0
- package/lib/packages/element-plus/crud/config.js +76 -0
- package/lib/packages/element-plus/crud/config.ts +74 -0
- package/lib/packages/element-plus/crud/dialog/dialog-column.vue +102 -0
- package/lib/packages/element-plus/crud/dialog/dialog-excel.vue +204 -0
- package/lib/packages/element-plus/crud/dialog/dialog-filter.vue +159 -0
- package/lib/packages/element-plus/crud/dialog/dialog-form.vue +352 -0
- package/lib/packages/element-plus/crud/grid/index.vue +271 -0
- package/lib/packages/element-plus/crud/grid/item.vue +39 -0
- package/lib/packages/element-plus/crud/index.vue +1018 -0
- package/lib/packages/element-plus/crud/menu/header-menu.vue +175 -0
- package/lib/packages/element-plus/crud/menu/header-search.vue +228 -0
- package/lib/packages/element-plus/crud/menu/table-page.vue +108 -0
- package/lib/packages/element-plus/date/index.vue +81 -0
- package/lib/packages/element-plus/draggable/index.vue +444 -0
- package/lib/packages/element-plus/dynamic/index.vue +353 -0
- package/lib/packages/element-plus/flow/index.vue +339 -0
- package/lib/packages/element-plus/flow/node.vue +84 -0
- package/lib/packages/element-plus/form/config.js +8 -0
- package/lib/packages/element-plus/form/config.ts +6 -0
- package/lib/packages/element-plus/form/index.vue +954 -0
- package/lib/packages/element-plus/form/menu.vue +63 -0
- package/lib/packages/element-plus/group/index.vue +90 -0
- package/lib/packages/element-plus/input/index.vue +1264 -0
- package/lib/packages/element-plus/input-color/index.vue +70 -0
- package/lib/packages/element-plus/input-cron/index.vue +363 -0
- package/lib/packages/element-plus/input-icon/index.vue +143 -0
- package/lib/packages/element-plus/input-map/index.vue +311 -0
- package/lib/packages/element-plus/input-number/index.vue +91 -0
- package/lib/packages/element-plus/input-table/index.vue +279 -0
- package/lib/packages/element-plus/input-tag/index.vue +79 -0
- package/lib/packages/element-plus/input-tree/index.vue +194 -0
- package/lib/packages/element-plus/license/index.vue +155 -0
- package/lib/packages/element-plus/login/index.vue +203 -0
- package/lib/packages/element-plus/mention/index.vue +117 -0
- package/lib/packages/element-plus/radio/index.vue +38 -0
- package/lib/packages/element-plus/rate/index.vue +51 -0
- package/lib/packages/element-plus/search/index.vue +129 -0
- package/lib/packages/element-plus/select/index.vue +292 -0
- package/lib/packages/element-plus/sign/index.vue +230 -0
- package/lib/packages/element-plus/slider/index.vue +66 -0
- package/lib/packages/element-plus/switch/index.vue +72 -0
- package/lib/packages/element-plus/tabs/index.vue +62 -0
- package/lib/packages/element-plus/text-ellipsis/index.vue +104 -0
- package/lib/packages/element-plus/time/index.vue +81 -0
- package/lib/packages/element-plus/title/index.vue +30 -0
- package/lib/packages/element-plus/tree/index.vue +460 -0
- package/lib/packages/element-plus/upload/index.vue +728 -0
- package/lib/packages/element-plus/verify/index.vue +62 -0
- package/lib/packages/element-plus/video/index.vue +90 -0
- package/lib/plugin/ali/index.js +8 -0
- package/lib/plugin/ali/index.ts +6 -0
- package/lib/plugin/clipboard/index.js +64 -0
- package/lib/plugin/clipboard/index.ts +67 -0
- package/lib/plugin/export/_blob.js +151 -0
- package/lib/plugin/export/_blob.ts +176 -0
- package/lib/plugin/export/_export2Excel.js +145 -0
- package/lib/plugin/export/_export2Excel.ts +166 -0
- package/lib/plugin/export/index.js +268 -0
- package/lib/plugin/export/index.ts +274 -0
- package/lib/plugin/logs/index.js +48 -0
- package/lib/plugin/logs/index.ts +66 -0
- package/lib/plugin/print/index.js +147 -0
- package/lib/plugin/print/index.ts +155 -0
- package/lib/plugin/qiniu/index.js +82 -0
- package/lib/plugin/qiniu/index.ts +88 -0
- package/lib/plugin/screenshot/index.js +14 -0
- package/lib/plugin/screenshot/index.ts +9 -0
- package/lib/plugin/video/index.js +55 -0
- package/lib/plugin/video/index.ts +60 -0
- package/lib/plugin/watermark/index.js +121 -0
- package/lib/plugin/watermark/index.ts +127 -0
- package/lib/plugin/watermark/watermark.js +111 -0
- package/lib/plugin/watermark/watermark.ts +121 -0
- package/lib/ui/data/index.js +54 -0
- package/lib/ui/data/index.ts +51 -0
- package/lib/ui/element-plus/index.js +92 -0
- package/lib/ui/element-plus/index.ts +89 -0
- package/lib/ui/index.js +9 -0
- package/lib/ui/index.ts +6 -0
- package/lib/utils/bem.js +31 -0
- package/lib/utils/bem.ts +36 -0
- package/lib/utils/mock.js +142 -0
- package/lib/utils/mock.ts +151 -0
- package/lib/utils/util.js +403 -0
- package/lib/utils/util.ts +392 -0
- package/lib/utils/validate.js +21 -0
- package/lib/utils/validate.ts +23 -0
- package/lib/version.js +4 -0
- package/lib/version.ts +1 -0
- package/package.json +24 -11
- package/types/index.d.ts +141 -0
- package/types/shims-aliases.d.ts +4 -0
- package/types/shims-vue.d.ts +6 -0
- package/lib/avue.js.map +0 -1
- package/lib/locale/format.js +0 -44
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<component
|
|
3
|
+
v-if="boxVisible"
|
|
4
|
+
:is="dialogType"
|
|
5
|
+
:draggable="validData(crud.tableOption.dialogDrag, config.dialogDrag)"
|
|
6
|
+
:class="[
|
|
7
|
+
'avue-dialog',
|
|
8
|
+
b('dialog'),
|
|
9
|
+
this.crud.tableOption.dialogCustomClass,
|
|
10
|
+
]"
|
|
11
|
+
:append-to-body="validData(crud.tableOption.dialogAppendToBody, true)"
|
|
12
|
+
:top="dialogTop"
|
|
13
|
+
:title="dialogTitle"
|
|
14
|
+
:close-on-press-escape="crud.tableOption.dialogEscape"
|
|
15
|
+
:close-on-click-modal="validData(crud.tableOption.dialogClickModal, false)"
|
|
16
|
+
:modal="crud.tableOption.dialogModal"
|
|
17
|
+
:modal-penetrable="crud.tableOption.modalPenetrable"
|
|
18
|
+
:show-close="crud.tableOption.dialogCloseBtn"
|
|
19
|
+
:header-class="crud.tableOption.headerClass"
|
|
20
|
+
:body-class="crud.tableOption.bodyClass"
|
|
21
|
+
:footer-class="crud.tableOption.footerClass"
|
|
22
|
+
v-model="boxVisible"
|
|
23
|
+
v-bind="params"
|
|
24
|
+
:before-close="hide"
|
|
25
|
+
>
|
|
26
|
+
<template #header>
|
|
27
|
+
<div :class="b('dialog__header')">
|
|
28
|
+
<span class="el-dialog__title">{{ dialogTitle }}</span>
|
|
29
|
+
<div :class="b('dialog__menu')">
|
|
30
|
+
<el-icon class="el-dialog__close" @click="handleFullScreen">
|
|
31
|
+
<component
|
|
32
|
+
:is="fullscreen ? 'el-icon-copy-document' : 'el-icon-full-screen'"
|
|
33
|
+
/>
|
|
34
|
+
</el-icon>
|
|
35
|
+
</div>
|
|
36
|
+
</div>
|
|
37
|
+
</template>
|
|
38
|
+
<avue-form
|
|
39
|
+
v-model="crud.tableForm"
|
|
40
|
+
v-model:status="disabled"
|
|
41
|
+
ref="tableForm"
|
|
42
|
+
@change="handleChange"
|
|
43
|
+
@submit="handleSubmit"
|
|
44
|
+
@reset-change="hide"
|
|
45
|
+
@tab-click="handleTabClick"
|
|
46
|
+
@error="handleError"
|
|
47
|
+
v-bind="$uploadFun(null, crud)"
|
|
48
|
+
v-loading="loading"
|
|
49
|
+
:element-loading-text="crud.tableOption.loadingText"
|
|
50
|
+
:element-loading-spinner="crud.tableOption.loadingSpinner"
|
|
51
|
+
:element-loading-svg="crud.tableOption.loadingSvg"
|
|
52
|
+
:element-loading-background="crud.tableOption.loadingBackground"
|
|
53
|
+
:option="option"
|
|
54
|
+
>
|
|
55
|
+
<!-- 循环form表单卡槽 -->
|
|
56
|
+
<template v-for="item in crud.formSlot" #[getSlotName(item)]="scope">
|
|
57
|
+
<slot
|
|
58
|
+
:name="item"
|
|
59
|
+
v-bind="Object.assign(scope, { type: boxType })"
|
|
60
|
+
></slot>
|
|
61
|
+
</template>
|
|
62
|
+
</avue-form>
|
|
63
|
+
<span
|
|
64
|
+
class="avue-dialog__footer"
|
|
65
|
+
:class="'avue-dialog__footer--' + dialogMenuPosition"
|
|
66
|
+
>
|
|
67
|
+
<slot name="menu-form-before" v-bind="menuParams()"></slot>
|
|
68
|
+
<el-button
|
|
69
|
+
type="primary"
|
|
70
|
+
@click="($refs.tableForm || {}).handleMock"
|
|
71
|
+
:loading="disabled || loading"
|
|
72
|
+
:size="crud.size"
|
|
73
|
+
:icon="option.mockIcon"
|
|
74
|
+
v-if="validData(option.mockBtn, false) && !isView"
|
|
75
|
+
>
|
|
76
|
+
{{ option.mockText }}
|
|
77
|
+
</el-button>
|
|
78
|
+
<el-button
|
|
79
|
+
v-if="validData(option.submitBtn, true) && !isView"
|
|
80
|
+
@click="submit"
|
|
81
|
+
:loading="disabled || loading"
|
|
82
|
+
:size="crud.size"
|
|
83
|
+
:icon="option.submitIcon"
|
|
84
|
+
type="primary"
|
|
85
|
+
>{{ option.submitText }}</el-button
|
|
86
|
+
>
|
|
87
|
+
<el-button
|
|
88
|
+
v-if="validData(option.emptyBtn, true) && !isView"
|
|
89
|
+
@click="reset"
|
|
90
|
+
:disabled="disabled || loading"
|
|
91
|
+
:size="crud.size"
|
|
92
|
+
:icon="option.emptyIcon"
|
|
93
|
+
>{{ option.emptyText }}</el-button
|
|
94
|
+
>
|
|
95
|
+
<slot name="menu-form" v-bind="menuParams()"></slot>
|
|
96
|
+
</span>
|
|
97
|
+
</component>
|
|
98
|
+
</template>
|
|
99
|
+
|
|
100
|
+
<script>
|
|
101
|
+
import create from "../../../../core/create.mjs";
|
|
102
|
+
import locale from "../../../../core/locale.mjs";
|
|
103
|
+
import config from "../config.mjs";
|
|
104
|
+
import { filterParams } from "../../../../utils/util.mjs";
|
|
105
|
+
export default create({
|
|
106
|
+
name: "crud",
|
|
107
|
+
mixins: [locale],
|
|
108
|
+
emits: ["update:modelValue", "change"],
|
|
109
|
+
inject: ["crud"],
|
|
110
|
+
data() {
|
|
111
|
+
return {
|
|
112
|
+
loading: false,
|
|
113
|
+
disabled: false,
|
|
114
|
+
config: config,
|
|
115
|
+
boxType: "",
|
|
116
|
+
fullscreen: false,
|
|
117
|
+
boxVisible: false,
|
|
118
|
+
};
|
|
119
|
+
},
|
|
120
|
+
props: {
|
|
121
|
+
modelValue: {
|
|
122
|
+
type: Object,
|
|
123
|
+
default: () => {
|
|
124
|
+
return {};
|
|
125
|
+
},
|
|
126
|
+
},
|
|
127
|
+
},
|
|
128
|
+
computed: {
|
|
129
|
+
isView() {
|
|
130
|
+
return this.boxType === "view";
|
|
131
|
+
},
|
|
132
|
+
isAdd() {
|
|
133
|
+
return this.boxType === "add";
|
|
134
|
+
},
|
|
135
|
+
isEdit() {
|
|
136
|
+
return this.boxType === "edit";
|
|
137
|
+
},
|
|
138
|
+
width() {
|
|
139
|
+
let dialogWidth = this.crud.tableOption.dialogWidth + "";
|
|
140
|
+
let defaultWidth = this.crud.isMobile ? "100%" : config.dialogWidth;
|
|
141
|
+
let result = this.validData(dialogWidth, defaultWidth);
|
|
142
|
+
return this.setPx(result);
|
|
143
|
+
},
|
|
144
|
+
dialogType() {
|
|
145
|
+
return this.isDrawer ? "elDrawer" : "elDialog";
|
|
146
|
+
},
|
|
147
|
+
dialogTop() {
|
|
148
|
+
return !this.isDrawer && !this.fullscreen
|
|
149
|
+
? this.crud.tableOption.dialogTop
|
|
150
|
+
: "0";
|
|
151
|
+
},
|
|
152
|
+
isDrawer() {
|
|
153
|
+
return this.crud.tableOption.dialogType === "drawer";
|
|
154
|
+
},
|
|
155
|
+
params() {
|
|
156
|
+
let result = this.isDrawer
|
|
157
|
+
? {
|
|
158
|
+
size: this.fullscreen ? "100%" : this.width,
|
|
159
|
+
direction: this.crud.tableOption.dialogDirection,
|
|
160
|
+
}
|
|
161
|
+
: {
|
|
162
|
+
width: this.width,
|
|
163
|
+
fullscreen: this.fullscreen,
|
|
164
|
+
};
|
|
165
|
+
return Object.assign(result, this.$uploadFun({}, this.crud));
|
|
166
|
+
},
|
|
167
|
+
option() {
|
|
168
|
+
let option = this.deepClone(this.crud.tableOption);
|
|
169
|
+
option.boxType = this.boxType;
|
|
170
|
+
option.column = this.deepClone(this.crud.propOption);
|
|
171
|
+
option.column.forEach((ele) => {
|
|
172
|
+
delete ele.render;
|
|
173
|
+
if (ele.renderForm) ele.render = ele.renderForm;
|
|
174
|
+
});
|
|
175
|
+
option.menuBtn = false;
|
|
176
|
+
if (this.isAdd) {
|
|
177
|
+
option.submitBtn = option.saveBtn;
|
|
178
|
+
option.submitText = this.crud.menuIcon("saveBtn");
|
|
179
|
+
option.submitIcon = this.crud.getBtnIcon("saveBtn");
|
|
180
|
+
} else if (this.isEdit) {
|
|
181
|
+
option.submitBtn = option.updateBtn;
|
|
182
|
+
option.submitText = this.crud.menuIcon("updateBtn");
|
|
183
|
+
option.submitIcon = this.crud.getBtnIcon("updateBtn");
|
|
184
|
+
} else if (this.isView) {
|
|
185
|
+
option.detail = true;
|
|
186
|
+
}
|
|
187
|
+
option.mockIcon = this.crud.getBtnIcon("mockBtn");
|
|
188
|
+
option.mockText = this.crud.menuIcon("mockBtn");
|
|
189
|
+
|
|
190
|
+
option.emptyBtn = option.cancelBtn;
|
|
191
|
+
option.emptyIcon = this.crud.getBtnIcon("cancelBtn");
|
|
192
|
+
option.emptyText = this.crud.menuIcon("cancelBtn");
|
|
193
|
+
//不分组的表单不加载字典
|
|
194
|
+
if (!this.crud.isGroup) {
|
|
195
|
+
option.dicFlag = false;
|
|
196
|
+
option.dicData = this.crud.DIC;
|
|
197
|
+
}
|
|
198
|
+
if (!this.validatenull(option.dicFlag)) {
|
|
199
|
+
option.column.forEach((ele) => {
|
|
200
|
+
ele.boxType = this.boxType;
|
|
201
|
+
ele.dicFlag = ele.dicFlag || option.dicFlag;
|
|
202
|
+
});
|
|
203
|
+
}
|
|
204
|
+
return option;
|
|
205
|
+
},
|
|
206
|
+
dialogTitle() {
|
|
207
|
+
const key = `${this.boxType}`;
|
|
208
|
+
if (!this.validatenull(this.boxType)) {
|
|
209
|
+
return (
|
|
210
|
+
this.crud.tableOption[key + "Title"] || this.t(`crud.${key}Title`)
|
|
211
|
+
);
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
dialogMenuPosition() {
|
|
215
|
+
return this.crud.tableOption.dialogMenuPosition || "right";
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
methods: {
|
|
219
|
+
menuParams() {
|
|
220
|
+
return {
|
|
221
|
+
disabled: this.disabled,
|
|
222
|
+
size: this.crud.size,
|
|
223
|
+
type: this.boxType,
|
|
224
|
+
};
|
|
225
|
+
},
|
|
226
|
+
submit() {
|
|
227
|
+
this.$refs.tableForm.submit();
|
|
228
|
+
},
|
|
229
|
+
reset() {
|
|
230
|
+
this.$refs.tableForm.resetForm(false);
|
|
231
|
+
},
|
|
232
|
+
getSlotName(item) {
|
|
233
|
+
return item.replace("-form", "");
|
|
234
|
+
},
|
|
235
|
+
handleChange() {
|
|
236
|
+
this.crud.setVal();
|
|
237
|
+
},
|
|
238
|
+
handleTabClick(tab, event) {
|
|
239
|
+
this.crud.$emit("tab-click", tab, event);
|
|
240
|
+
},
|
|
241
|
+
handleFullScreen() {
|
|
242
|
+
if (this.fullscreen) {
|
|
243
|
+
this.fullscreen = false;
|
|
244
|
+
} else {
|
|
245
|
+
this.fullscreen = true;
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
handleError(error) {
|
|
249
|
+
this.crud.$emit("error", error);
|
|
250
|
+
},
|
|
251
|
+
handleSubmit(form, hide) {
|
|
252
|
+
if (this.isAdd) {
|
|
253
|
+
this.rowSave(hide);
|
|
254
|
+
} else if (this.isEdit) {
|
|
255
|
+
this.rowUpdate(hide);
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
initFun() {
|
|
259
|
+
["clearValidate", "validate", "resetForm", "validateField"].forEach(
|
|
260
|
+
(ele) => {
|
|
261
|
+
this.crud[ele] = this.$refs.tableForm[ele];
|
|
262
|
+
}
|
|
263
|
+
);
|
|
264
|
+
},
|
|
265
|
+
// 保存
|
|
266
|
+
rowSave(hide) {
|
|
267
|
+
this.crud.$emit(
|
|
268
|
+
"row-save",
|
|
269
|
+
filterParams(this.crud.tableForm, ["$"]),
|
|
270
|
+
this.closeDialog,
|
|
271
|
+
hide
|
|
272
|
+
);
|
|
273
|
+
},
|
|
274
|
+
// 更新
|
|
275
|
+
rowUpdate(hide) {
|
|
276
|
+
this.crud.$emit(
|
|
277
|
+
"row-update",
|
|
278
|
+
filterParams(this.crud.tableForm, ["$"]),
|
|
279
|
+
this.crud.tableIndex,
|
|
280
|
+
this.closeDialog,
|
|
281
|
+
hide
|
|
282
|
+
);
|
|
283
|
+
},
|
|
284
|
+
closeDialog(row, index) {
|
|
285
|
+
row = this.deepClone(row);
|
|
286
|
+
const callback = () => {
|
|
287
|
+
if (this.isEdit) {
|
|
288
|
+
let { parentList, index } = this.crud.findData(row[this.crud.rowKey]);
|
|
289
|
+
if (parentList) {
|
|
290
|
+
const oldRow = parentList.splice(index, 1)[0];
|
|
291
|
+
row[this.crud.childrenKey] = oldRow[this.crud.childrenKey];
|
|
292
|
+
parentList.splice(index, 0, row);
|
|
293
|
+
}
|
|
294
|
+
} else if (this.isAdd) {
|
|
295
|
+
let { item } = this.crud.findData(row[this.crud.rowParentKey]);
|
|
296
|
+
if (item) {
|
|
297
|
+
if (!item[this.crud.childrenKey]) {
|
|
298
|
+
item[this.crud.childrenKey] = [];
|
|
299
|
+
}
|
|
300
|
+
if (this.crud.tableOption.lazy) {
|
|
301
|
+
item[this.crud.hasChildrenKey] = true;
|
|
302
|
+
}
|
|
303
|
+
item[this.crud.childrenKey].push(row);
|
|
304
|
+
} else {
|
|
305
|
+
this.crud.list.push(row);
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
};
|
|
309
|
+
if (row) callback();
|
|
310
|
+
this.hide();
|
|
311
|
+
},
|
|
312
|
+
// 隐藏表单
|
|
313
|
+
hide(done) {
|
|
314
|
+
const callback = () => {
|
|
315
|
+
done && done();
|
|
316
|
+
this.crud.tableIndex = -1;
|
|
317
|
+
this.crud.tableForm = {};
|
|
318
|
+
this.crud.setVal();
|
|
319
|
+
this.boxVisible = false;
|
|
320
|
+
};
|
|
321
|
+
if (typeof this.crud.beforeClose === "function") {
|
|
322
|
+
this.crud.beforeClose(callback, this.boxType);
|
|
323
|
+
} else {
|
|
324
|
+
callback();
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
// 显示表单
|
|
328
|
+
show(type) {
|
|
329
|
+
this.boxType = type;
|
|
330
|
+
const callback = (fn) => {
|
|
331
|
+
this.fullscreen = this.crud.tableOption.dialogFullscreen;
|
|
332
|
+
this.boxVisible = true;
|
|
333
|
+
this.loading = false;
|
|
334
|
+
this.$nextTick(() => {
|
|
335
|
+
this.initFun();
|
|
336
|
+
fn && fn();
|
|
337
|
+
});
|
|
338
|
+
};
|
|
339
|
+
const loading = () => {
|
|
340
|
+
callback(() => {
|
|
341
|
+
this.loading = true;
|
|
342
|
+
});
|
|
343
|
+
};
|
|
344
|
+
if (typeof this.crud.beforeOpen === "function") {
|
|
345
|
+
this.crud.beforeOpen(callback, this.boxType, loading);
|
|
346
|
+
} else {
|
|
347
|
+
callback();
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
},
|
|
351
|
+
});
|
|
352
|
+
</script>
|
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div :class="b()" :style="styleName">
|
|
3
|
+
<div :class="b('hide')">
|
|
4
|
+
<slot></slot>
|
|
5
|
+
</div>
|
|
6
|
+
<el-checkbox-group
|
|
7
|
+
v-if="data.length !== 0"
|
|
8
|
+
v-model="checkList"
|
|
9
|
+
@change="checkListChange"
|
|
10
|
+
>
|
|
11
|
+
<el-row>
|
|
12
|
+
<el-col
|
|
13
|
+
v-for="(row, index) in data"
|
|
14
|
+
@click.stop="handleRowClick(row, index)"
|
|
15
|
+
@dblclick.stop="handleRowDblClick(row, index)"
|
|
16
|
+
:span="crud.tableOption.gridSpan || span"
|
|
17
|
+
:md="crud.tableOption.gridSpan || span"
|
|
18
|
+
:sm="crud.tableOption.gridSpan || span"
|
|
19
|
+
:xs="crud.tableOption.gridXsSpan || xsSpan"
|
|
20
|
+
:class="getRowClass(row, index)"
|
|
21
|
+
:key="index"
|
|
22
|
+
>
|
|
23
|
+
<div
|
|
24
|
+
:class="b('content')"
|
|
25
|
+
:style="[getGradientColor(row, index), getRowStyle(row, index)]"
|
|
26
|
+
>
|
|
27
|
+
<div
|
|
28
|
+
v-for="(item, columnIndex) in column"
|
|
29
|
+
:class="[
|
|
30
|
+
b('item'),
|
|
31
|
+
item.type || item.prop,
|
|
32
|
+
getClass(row, index, item),
|
|
33
|
+
]"
|
|
34
|
+
:style="getCellStyle(row, index, item, columnIndex)"
|
|
35
|
+
@click.stop="handleCellClick(row, item)"
|
|
36
|
+
@dblclick.stop="handleCellDblClick(row, item)"
|
|
37
|
+
:key="columnIndex"
|
|
38
|
+
>
|
|
39
|
+
<span v-if="item.type == 'selection'">
|
|
40
|
+
<el-checkbox
|
|
41
|
+
:value="index"
|
|
42
|
+
:label="index"
|
|
43
|
+
:disabled="isDisabled(row, index)"
|
|
44
|
+
@click.stop
|
|
45
|
+
> </el-checkbox
|
|
46
|
+
>
|
|
47
|
+
</span>
|
|
48
|
+
<template v-else>
|
|
49
|
+
<template
|
|
50
|
+
v-for="(comp, compIndex) in item.header &&
|
|
51
|
+
item.header({ row: row, $index: index, column: item })"
|
|
52
|
+
:key="compIndex"
|
|
53
|
+
>
|
|
54
|
+
<component
|
|
55
|
+
:class="[b('label'), item.labelClassName]"
|
|
56
|
+
:is="comp"
|
|
57
|
+
></component>
|
|
58
|
+
</template>
|
|
59
|
+
<template
|
|
60
|
+
v-for="(comp, compIndex) in item.default &&
|
|
61
|
+
item.default({ row: row, $index: index, column: item })"
|
|
62
|
+
:key="compIndex"
|
|
63
|
+
>
|
|
64
|
+
<component
|
|
65
|
+
placement="top"
|
|
66
|
+
:is="
|
|
67
|
+
item.overHidden || item.showOverflowTooltip
|
|
68
|
+
? 'elTooltip'
|
|
69
|
+
: 'div'
|
|
70
|
+
"
|
|
71
|
+
:class="[b('value'), item.className]"
|
|
72
|
+
:content="row[item.prop]"
|
|
73
|
+
>
|
|
74
|
+
<component :is="comp"></component>
|
|
75
|
+
</component>
|
|
76
|
+
</template>
|
|
77
|
+
</template>
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
</el-col>
|
|
81
|
+
</el-row>
|
|
82
|
+
</el-checkbox-group>
|
|
83
|
+
<template v-else>
|
|
84
|
+
<slot name="empty" v-if="$slots.empty"></slot>
|
|
85
|
+
<el-empty
|
|
86
|
+
v-else
|
|
87
|
+
:image-size="100"
|
|
88
|
+
:description="crud.tableOption.emptyText || t('crud.emptyText')"
|
|
89
|
+
></el-empty>
|
|
90
|
+
</template>
|
|
91
|
+
</div>
|
|
92
|
+
</template>
|
|
93
|
+
|
|
94
|
+
<script>
|
|
95
|
+
import create from "../../../../core/create.mjs";
|
|
96
|
+
import locale from "../../../../core/locale.mjs";
|
|
97
|
+
export default create({
|
|
98
|
+
name: "crud__grid",
|
|
99
|
+
inject: ["crud"],
|
|
100
|
+
mixins: [locale],
|
|
101
|
+
provide() {
|
|
102
|
+
return {
|
|
103
|
+
dynamic: this,
|
|
104
|
+
};
|
|
105
|
+
},
|
|
106
|
+
props: {
|
|
107
|
+
rowStyle: Function,
|
|
108
|
+
cellStyle: Function,
|
|
109
|
+
cellClassName: Function,
|
|
110
|
+
rowClassName: Function,
|
|
111
|
+
height: [String, Number],
|
|
112
|
+
data: Array,
|
|
113
|
+
},
|
|
114
|
+
data() {
|
|
115
|
+
return {
|
|
116
|
+
checkList: [],
|
|
117
|
+
span: 8,
|
|
118
|
+
xsSpan: 12,
|
|
119
|
+
id: "crud-grid",
|
|
120
|
+
column: [],
|
|
121
|
+
};
|
|
122
|
+
},
|
|
123
|
+
computed: {
|
|
124
|
+
styleName() {
|
|
125
|
+
return {
|
|
126
|
+
height: this.crud.tableHeight + "px",
|
|
127
|
+
};
|
|
128
|
+
},
|
|
129
|
+
},
|
|
130
|
+
methods: {
|
|
131
|
+
doLayout() {},
|
|
132
|
+
//表格筛选逻辑
|
|
133
|
+
handleFilterMethod(params) {
|
|
134
|
+
const { value, row, column } = params;
|
|
135
|
+
if (typeof column.filterMethod === "function") {
|
|
136
|
+
return column.filterMethod(value, row, column);
|
|
137
|
+
} else {
|
|
138
|
+
return row[column.prop] == value;
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
//表格筛选字典
|
|
142
|
+
handleFilters(column) {
|
|
143
|
+
if (Array.isArray(column.filters))
|
|
144
|
+
return column.filters.map((ele) => ({
|
|
145
|
+
text: ele.label,
|
|
146
|
+
value: ele.value,
|
|
147
|
+
}));
|
|
148
|
+
if (column.filters !== true) return undefined;
|
|
149
|
+
let DIC = this.crud.DIC[column.prop] || [];
|
|
150
|
+
let list = [];
|
|
151
|
+
if (!this.validatenull(DIC)) {
|
|
152
|
+
DIC.forEach((ele) => {
|
|
153
|
+
const props = column.props || this.crud.tableOption.props || {};
|
|
154
|
+
list.push({
|
|
155
|
+
text: ele[props.label || DIC_PROPS.label],
|
|
156
|
+
value: ele[props.value || DIC_PROPS.value],
|
|
157
|
+
});
|
|
158
|
+
});
|
|
159
|
+
} else {
|
|
160
|
+
this.crud.cellForm.list.forEach((ele) => {
|
|
161
|
+
if (!list.map((item) => item.text).includes(ele[column.prop])) {
|
|
162
|
+
list.push({
|
|
163
|
+
text: ele[column.prop],
|
|
164
|
+
value: ele[column.prop],
|
|
165
|
+
});
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
}
|
|
169
|
+
return list;
|
|
170
|
+
},
|
|
171
|
+
getColumnProp(column, type, params) {
|
|
172
|
+
let obj = column || {};
|
|
173
|
+
if (type === "filterMethod") return this.handleFilterMethod(params);
|
|
174
|
+
if (this.crud.isMobile && ["fixed"].includes(type)) return false;
|
|
175
|
+
let result = obj?.[type];
|
|
176
|
+
if (type == "width" && result == 0) {
|
|
177
|
+
return undefined;
|
|
178
|
+
}
|
|
179
|
+
if (type == "filters") return this.handleFilters(column);
|
|
180
|
+
if (type == "hide") return obj?.hide !== true;
|
|
181
|
+
else return result;
|
|
182
|
+
},
|
|
183
|
+
isDisabled(row, index) {
|
|
184
|
+
return typeof this.crud.tableOption.selectable === "function"
|
|
185
|
+
? !this.crud.tableOption.selectable(row, index)
|
|
186
|
+
: false;
|
|
187
|
+
},
|
|
188
|
+
clearSelection() {
|
|
189
|
+
this.checkList = [];
|
|
190
|
+
this.checkListChange(this.checkList);
|
|
191
|
+
},
|
|
192
|
+
toggleAllSelection() {
|
|
193
|
+
if (this.checkList.length === this.crud.data.length) {
|
|
194
|
+
this.checkList = [];
|
|
195
|
+
} else {
|
|
196
|
+
this.checkList = this.crud.data.map((ele, index) => index);
|
|
197
|
+
}
|
|
198
|
+
this.checkListChange(this.checkList);
|
|
199
|
+
},
|
|
200
|
+
toggleRowSelection(data, selected) {
|
|
201
|
+
let index = this.crud.data.findIndex(
|
|
202
|
+
(ele) => JSON.stringify(ele) == JSON.stringify(data)
|
|
203
|
+
);
|
|
204
|
+
if (selected && index != -1) {
|
|
205
|
+
this.checkList.push(index);
|
|
206
|
+
} else {
|
|
207
|
+
let checkIndex = this.checkList.findIndex((ele) => ele == index);
|
|
208
|
+
this.checkList.splice(checkIndex, 1);
|
|
209
|
+
}
|
|
210
|
+
this.checkListChange(this.checkList);
|
|
211
|
+
},
|
|
212
|
+
checkListChange(val) {
|
|
213
|
+
let result = [];
|
|
214
|
+
const data = this.crud.data;
|
|
215
|
+
val.forEach((ele) => {
|
|
216
|
+
result.push(data[ele]);
|
|
217
|
+
});
|
|
218
|
+
this.$emit("selection-change", result);
|
|
219
|
+
},
|
|
220
|
+
handleRowDblClick(row, index) {
|
|
221
|
+
this.$emit("row-dblclick", row, index);
|
|
222
|
+
},
|
|
223
|
+
handleRowClick(row, index) {
|
|
224
|
+
this.$emit("row-click", row, index);
|
|
225
|
+
},
|
|
226
|
+
handleCellDblClick(row, column) {
|
|
227
|
+
this.$emit("cell-dblclick", row, column);
|
|
228
|
+
},
|
|
229
|
+
handleCellClick(row, column) {
|
|
230
|
+
this.$emit("cell-click", row, column);
|
|
231
|
+
},
|
|
232
|
+
getGradientColor(row, index) {
|
|
233
|
+
let styles = {};
|
|
234
|
+
if (typeof this.crud.tableOption.gridBackground == "function") {
|
|
235
|
+
styles.background = this.crud.tableOption.gridBackground(row, index);
|
|
236
|
+
} else if (this.crud.tableOption.gridBackgroundImage) {
|
|
237
|
+
styles.backgroundImage = `url(${this.crud.tableOption.gridBackgroundImage})`;
|
|
238
|
+
} else {
|
|
239
|
+
styles.background =
|
|
240
|
+
this.crud.tableOption.gridBackground ||
|
|
241
|
+
"linear-gradient(to bottom, rgba(88, 159, 248, 0.1), white)";
|
|
242
|
+
}
|
|
243
|
+
return styles;
|
|
244
|
+
},
|
|
245
|
+
getCellStyle(row, index, column, columnIndex) {
|
|
246
|
+
if (this.cellStyle)
|
|
247
|
+
return this.cellStyle({ row, rowIndex: index, column, columnIndex });
|
|
248
|
+
},
|
|
249
|
+
getRowStyle(row, index) {
|
|
250
|
+
if (this.rowStyle) return this.rowStyle({ row, rowIndex: index });
|
|
251
|
+
},
|
|
252
|
+
getRowClass(row, index) {
|
|
253
|
+
if (this.rowClassName) return this.rowClassName({ row, rowIndex: index });
|
|
254
|
+
},
|
|
255
|
+
getClass(row, index, column) {
|
|
256
|
+
let list = [];
|
|
257
|
+
let firstIndex = this.crud.columnOption.findIndex(
|
|
258
|
+
(item) => item.hide !== true
|
|
259
|
+
);
|
|
260
|
+
const columnOption = this.crud.columnOption || [];
|
|
261
|
+
if (this.cellClassName)
|
|
262
|
+
list.push(this.cellClassName({ row, rowIndex: index, column }));
|
|
263
|
+
if (column.prop == (columnOption[firstIndex || 0] || {}).prop)
|
|
264
|
+
list.push("title");
|
|
265
|
+
if (column.row) list.push("row");
|
|
266
|
+
if (column.showOverflowTooltip) list.push("overHidden");
|
|
267
|
+
return list;
|
|
268
|
+
},
|
|
269
|
+
},
|
|
270
|
+
});
|
|
271
|
+
</script>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<template></template>
|
|
2
|
+
|
|
3
|
+
<script>
|
|
4
|
+
export default {
|
|
5
|
+
props: {
|
|
6
|
+
className: String,
|
|
7
|
+
labeClassName: String,
|
|
8
|
+
showOverflowTooltip: Boolean,
|
|
9
|
+
gridRow: Boolean,
|
|
10
|
+
prop: String,
|
|
11
|
+
type: String,
|
|
12
|
+
label: String,
|
|
13
|
+
},
|
|
14
|
+
computed: {
|
|
15
|
+
parent() {
|
|
16
|
+
let parent = this.$parent;
|
|
17
|
+
while (parent.$parent && !parent.id) {
|
|
18
|
+
parent = parent.$parent;
|
|
19
|
+
}
|
|
20
|
+
return parent;
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
mounted() {
|
|
24
|
+
this.parent.column.push({
|
|
25
|
+
className: this.className,
|
|
26
|
+
labeClassName: this.labeClassName,
|
|
27
|
+
showOverflowTooltip: this.showOverflowTooltip,
|
|
28
|
+
row: this.gridRow,
|
|
29
|
+
label: this.label,
|
|
30
|
+
prop: this.prop,
|
|
31
|
+
type: this.type,
|
|
32
|
+
header: this.$slots.header,
|
|
33
|
+
default: this.$slots.default,
|
|
34
|
+
});
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
</script>
|
|
38
|
+
|
|
39
|
+
<style></style>
|