@smallwei/avue 3.8.2 → 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 -35880
- 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.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 +20 -10
- package/types/index.d.ts +139 -47
- package/types/shims-aliases.d.ts +4 -0
- package/lib/avue.js.map +0 -1
- package/lib/locale/format.js +0 -44
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import packages from '../core/packages';
|
|
2
|
+
|
|
3
|
+
export default (
|
|
4
|
+
column: Record<string, any>,
|
|
5
|
+
dicData: Record<string, any>,
|
|
6
|
+
defaultForm: Record<string, any>,
|
|
7
|
+
run: boolean
|
|
8
|
+
) => {
|
|
9
|
+
if (!run) return;
|
|
10
|
+
const win = window as any;
|
|
11
|
+
if (!win.Mock) {
|
|
12
|
+
packages.logs('mock');
|
|
13
|
+
return;
|
|
14
|
+
}
|
|
15
|
+
const mockjs = win.Mock;
|
|
16
|
+
const Random = (mockjs || {}).Random;
|
|
17
|
+
const form: Record<string, any> = {};
|
|
18
|
+
|
|
19
|
+
function createName({ en }: Record<string, any>) {
|
|
20
|
+
if (en) {
|
|
21
|
+
return Random.name(true);
|
|
22
|
+
}
|
|
23
|
+
return Random.cname();
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function createImage({ size, text, base64 }: Record<string, any>) {
|
|
27
|
+
const imageSize = size || Random.natural(200, 400);
|
|
28
|
+
const textColor = text ? '#000000' : Random.color();
|
|
29
|
+
const bgColor = text ? '#ffffff' : Random.color();
|
|
30
|
+
|
|
31
|
+
if (base64) {
|
|
32
|
+
return Random.dataImage(imageSize, text);
|
|
33
|
+
}
|
|
34
|
+
return Random.image(imageSize, bgColor, textColor, 'png', text || Random.name());
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function createId({ uuid }: Record<string, any>) {
|
|
38
|
+
if (uuid) {
|
|
39
|
+
return mockjs.mock('@guid');
|
|
40
|
+
}
|
|
41
|
+
return mockjs.mock('@id');
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
function createTel() {
|
|
45
|
+
return mockjs.mock(/^1[3-9]\d{9}$/);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function createNumber({ max, min, precision }: Record<string, any>) {
|
|
49
|
+
if (precision) {
|
|
50
|
+
const number = Random.float(min, max, precision) + '';
|
|
51
|
+
const index = number.indexOf('.') + 1;
|
|
52
|
+
return Number(number.substring(0, index + precision));
|
|
53
|
+
}
|
|
54
|
+
return Random.integer(min, max);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function createUrl({ header }: Record<string, any>) {
|
|
58
|
+
let url = Random.url();
|
|
59
|
+
const index = url.indexOf('://');
|
|
60
|
+
if (header === false) {
|
|
61
|
+
url = url.substring(index + 3);
|
|
62
|
+
} else {
|
|
63
|
+
url = 'http://' + url.substring(index + 3);
|
|
64
|
+
}
|
|
65
|
+
return url;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function createDatetime({ format, now }: Record<string, any>) {
|
|
69
|
+
if (now) {
|
|
70
|
+
return Random.now(format);
|
|
71
|
+
}
|
|
72
|
+
return Random.datetime(format);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
function createText({ min, max }: Record<string, any>) {
|
|
76
|
+
return Random.csentence(min, max);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
function createCounty() {
|
|
80
|
+
return Random.county(true);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
function createDic({ dic, props, columnType, multiple }: Record<string, any>) {
|
|
84
|
+
const value = props.value || 'value';
|
|
85
|
+
const len = dic.length;
|
|
86
|
+
if (len === 0) return;
|
|
87
|
+
if (['checkbox'].includes(columnType) || multiple) {
|
|
88
|
+
const number = createNumber({
|
|
89
|
+
min: 1,
|
|
90
|
+
max: len,
|
|
91
|
+
});
|
|
92
|
+
const result: any[] = [];
|
|
93
|
+
for (let i = 0; i < number; i++) {
|
|
94
|
+
let flag = true;
|
|
95
|
+
while (flag) {
|
|
96
|
+
const numbers = createNumber({
|
|
97
|
+
min: 0,
|
|
98
|
+
max: len - 1,
|
|
99
|
+
});
|
|
100
|
+
const values = dic[numbers][value];
|
|
101
|
+
if (!result.includes(values)) {
|
|
102
|
+
result.push(values);
|
|
103
|
+
flag = false;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
return result;
|
|
108
|
+
}
|
|
109
|
+
const number = createNumber({
|
|
110
|
+
min: 0,
|
|
111
|
+
max: len - 1,
|
|
112
|
+
});
|
|
113
|
+
return dic[number][value];
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
function create() {
|
|
117
|
+
Object.keys(column).forEach((index) => {
|
|
118
|
+
const ele = column[index];
|
|
119
|
+
const isObject = typeof ele.mock === 'object';
|
|
120
|
+
const params = isObject ? ele.mock || {} : {};
|
|
121
|
+
params.dic = dicData[ele.prop] || [];
|
|
122
|
+
params.props = ele.props || {};
|
|
123
|
+
params.columnType = ele.type;
|
|
124
|
+
params.multiple = ele.multiple;
|
|
125
|
+
|
|
126
|
+
const dataGenerator: Record<string, (params: Record<string, any>) => any> = {
|
|
127
|
+
name: createName,
|
|
128
|
+
number: createNumber,
|
|
129
|
+
datetime: createDatetime,
|
|
130
|
+
word: createText,
|
|
131
|
+
tel: createTel,
|
|
132
|
+
id: createId,
|
|
133
|
+
image: createImage,
|
|
134
|
+
url: createUrl,
|
|
135
|
+
county: createCounty,
|
|
136
|
+
dic: createDic,
|
|
137
|
+
};
|
|
138
|
+
if (isObject && dataGenerator[params.type]) {
|
|
139
|
+
if (params.array) {
|
|
140
|
+
form[ele.prop] = Array.from({ length: params.array }, () => dataGenerator[params.type](params));
|
|
141
|
+
} else {
|
|
142
|
+
form[ele.prop] = dataGenerator[params.type](params);
|
|
143
|
+
}
|
|
144
|
+
} else if (ele.mock instanceof Function) {
|
|
145
|
+
form[ele.prop] = ele.mock(defaultForm, mockjs);
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
}
|
|
149
|
+
create();
|
|
150
|
+
return form;
|
|
151
|
+
};
|
|
@@ -0,0 +1,403 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.validData = exports.clearVal = exports.blankVal = exports.arraySort = exports.getPasswordChar = exports.findNode = exports.findArray = exports.filterParams = exports.getDicValue = exports.detailDataType = exports.setPx = exports.getColumn = exports.deepClone = exports.isJson = exports.getObjType = exports.loadScript = exports.uuid = exports.isMediaType = void 0;
|
|
7
|
+
exports.getFixed = getFixed;
|
|
8
|
+
exports.getAsVal = getAsVal;
|
|
9
|
+
exports.setAsVal = setAsVal;
|
|
10
|
+
exports.downFile = downFile;
|
|
11
|
+
exports.extend = extend;
|
|
12
|
+
exports.createObj = createObj;
|
|
13
|
+
exports.dataURLtoFile = dataURLtoFile;
|
|
14
|
+
exports.findObject = findObject;
|
|
15
|
+
exports.randomId = randomId;
|
|
16
|
+
const validate_js_1 = require("./validate.js");
|
|
17
|
+
const variable_js_1 = require("../global/variable.js");
|
|
18
|
+
const get_1 = __importDefault(require("lodash/get"));
|
|
19
|
+
const set_1 = __importDefault(require("lodash/set"));
|
|
20
|
+
const cloneDeep_1 = __importDefault(require("lodash/cloneDeep"));
|
|
21
|
+
const isMediaType = (url, type) => {
|
|
22
|
+
if ((0, validate_js_1.validatenull)(url))
|
|
23
|
+
return;
|
|
24
|
+
if (variable_js_1.typeList.audio.test(url) || variable_js_1.typeList.audio.test(type) || type == 'audio') {
|
|
25
|
+
return 'audio';
|
|
26
|
+
}
|
|
27
|
+
else if (variable_js_1.typeList.video.test(url) || variable_js_1.typeList.video.test(type) || type == 'video') {
|
|
28
|
+
return 'video';
|
|
29
|
+
}
|
|
30
|
+
else if (variable_js_1.typeList.img.test(url) || variable_js_1.typeList.img.test(type) || type == 'img') {
|
|
31
|
+
return 'img';
|
|
32
|
+
}
|
|
33
|
+
return;
|
|
34
|
+
};
|
|
35
|
+
exports.isMediaType = isMediaType;
|
|
36
|
+
const uuid = () => {
|
|
37
|
+
const s = [];
|
|
38
|
+
const hexDigits = '0123456789abcdef';
|
|
39
|
+
for (let i = 0; i < 36; i++) {
|
|
40
|
+
s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
|
|
41
|
+
}
|
|
42
|
+
s[14] = '4';
|
|
43
|
+
s[19] = hexDigits.substr(((s[19] & 0x3) | 0x8), 1);
|
|
44
|
+
s[8] = s[13] = s[18] = s[23] = '-';
|
|
45
|
+
return s.join('');
|
|
46
|
+
};
|
|
47
|
+
exports.uuid = uuid;
|
|
48
|
+
function getFixed(val = 0, len = 2) {
|
|
49
|
+
return Number(val.toFixed(len));
|
|
50
|
+
}
|
|
51
|
+
function getAsVal(obj, bind = '') {
|
|
52
|
+
const result = (0, exports.deepClone)(obj);
|
|
53
|
+
if ((0, validate_js_1.validatenull)(bind))
|
|
54
|
+
return result;
|
|
55
|
+
return (0, get_1.default)(obj, bind);
|
|
56
|
+
}
|
|
57
|
+
function setAsVal(obj, bind = '', value) {
|
|
58
|
+
(0, set_1.default)(obj, bind, value);
|
|
59
|
+
return obj;
|
|
60
|
+
}
|
|
61
|
+
const loadScript = (type = 'js', url, dom = 'body') => {
|
|
62
|
+
let flag = false;
|
|
63
|
+
return new Promise((resolve) => {
|
|
64
|
+
const head = dom == 'head' ? document.getElementsByTagName('head')[0] : document.body;
|
|
65
|
+
for (let i = 0; i < head.children.length; i++) {
|
|
66
|
+
const ele = head.children[i];
|
|
67
|
+
if ((ele.src || '').indexOf(url) !== -1) {
|
|
68
|
+
flag = true;
|
|
69
|
+
resolve();
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
if (flag)
|
|
73
|
+
return;
|
|
74
|
+
let script;
|
|
75
|
+
if (type === 'js') {
|
|
76
|
+
script = document.createElement('script');
|
|
77
|
+
script.type = 'text/javascript';
|
|
78
|
+
script.src = url || '';
|
|
79
|
+
}
|
|
80
|
+
else {
|
|
81
|
+
script = document.createElement('link');
|
|
82
|
+
script.rel = 'stylesheet';
|
|
83
|
+
script.type = 'text/css';
|
|
84
|
+
script.href = url || '';
|
|
85
|
+
}
|
|
86
|
+
head.appendChild(script);
|
|
87
|
+
script.onload = function () {
|
|
88
|
+
resolve();
|
|
89
|
+
};
|
|
90
|
+
});
|
|
91
|
+
};
|
|
92
|
+
exports.loadScript = loadScript;
|
|
93
|
+
function downFile(url, saveName) {
|
|
94
|
+
if (typeof url === 'object' && url instanceof Blob) {
|
|
95
|
+
url = URL.createObjectURL(url);
|
|
96
|
+
}
|
|
97
|
+
const aLink = document.createElement('a');
|
|
98
|
+
aLink.href = url;
|
|
99
|
+
aLink.download = saveName || '';
|
|
100
|
+
let event;
|
|
101
|
+
if (window.MouseEvent) {
|
|
102
|
+
event = new MouseEvent('click');
|
|
103
|
+
}
|
|
104
|
+
else {
|
|
105
|
+
event = document.createEvent('MouseEvents');
|
|
106
|
+
event.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
|
|
107
|
+
}
|
|
108
|
+
aLink.dispatchEvent(event);
|
|
109
|
+
}
|
|
110
|
+
function extend(...args) {
|
|
111
|
+
let target = args[0] || {};
|
|
112
|
+
let deep = false;
|
|
113
|
+
const arr = Array.prototype.slice.call(args);
|
|
114
|
+
let i = 1;
|
|
115
|
+
let options;
|
|
116
|
+
let src;
|
|
117
|
+
let key;
|
|
118
|
+
let copy;
|
|
119
|
+
let isArray = false;
|
|
120
|
+
if (typeof target === 'boolean') {
|
|
121
|
+
deep = target;
|
|
122
|
+
i++;
|
|
123
|
+
target = args[1];
|
|
124
|
+
}
|
|
125
|
+
for (; i < arr.length; i++) {
|
|
126
|
+
if ((options = arr[i]) != null) {
|
|
127
|
+
for (key in options) {
|
|
128
|
+
copy = options[key];
|
|
129
|
+
src = target[key];
|
|
130
|
+
if (deep &&
|
|
131
|
+
(Object.prototype.toString.call(copy) === '[object Object]' ||
|
|
132
|
+
(isArray = Object.prototype.toString.call(copy) == '[object Array]'))) {
|
|
133
|
+
if (isArray) {
|
|
134
|
+
src = Object.prototype.toString.call(src) === '[object Array]' ? src : [];
|
|
135
|
+
}
|
|
136
|
+
else {
|
|
137
|
+
src = Object.prototype.toString.call(src) === '[object Object]' ? src : {};
|
|
138
|
+
}
|
|
139
|
+
target[key] = extend(deep, src, copy);
|
|
140
|
+
}
|
|
141
|
+
else if (copy !== undefined && copy !== src) {
|
|
142
|
+
target[key] = copy;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
return target;
|
|
148
|
+
}
|
|
149
|
+
function createObj(obj, bind) {
|
|
150
|
+
const list = bind.split('.');
|
|
151
|
+
const first = list.splice(0, 1)[0];
|
|
152
|
+
const deep = {};
|
|
153
|
+
deep[first] = {};
|
|
154
|
+
if (list.length >= 2) {
|
|
155
|
+
let start = '{';
|
|
156
|
+
let end = '}';
|
|
157
|
+
let result = '';
|
|
158
|
+
list.forEach((ele) => {
|
|
159
|
+
result = `${result}${start}"${ele}":`;
|
|
160
|
+
});
|
|
161
|
+
result = `${result}""`;
|
|
162
|
+
for (let i = 0; i < list.length; i++) {
|
|
163
|
+
result = `${result}${end}`;
|
|
164
|
+
}
|
|
165
|
+
deep[first] = JSON.parse(result);
|
|
166
|
+
}
|
|
167
|
+
obj = extend(true, obj, deep);
|
|
168
|
+
return obj;
|
|
169
|
+
}
|
|
170
|
+
function dataURLtoFile(dataurl, filename) {
|
|
171
|
+
var _a;
|
|
172
|
+
const arr = dataurl.split(',');
|
|
173
|
+
const mime = ((_a = arr[0].match(/:(.*?);/)) === null || _a === void 0 ? void 0 : _a[1]) || '';
|
|
174
|
+
const bstr = atob(arr[1]);
|
|
175
|
+
let n = bstr.length;
|
|
176
|
+
const u8arr = new Uint8Array(n);
|
|
177
|
+
while (n--) {
|
|
178
|
+
u8arr[n] = bstr.charCodeAt(n);
|
|
179
|
+
}
|
|
180
|
+
return new File([u8arr], filename, { type: mime });
|
|
181
|
+
}
|
|
182
|
+
function findObject(list = [], value, prop = 'prop') {
|
|
183
|
+
const props = { value: prop };
|
|
184
|
+
let result = (0, exports.findNode)(list, props, value);
|
|
185
|
+
if (result)
|
|
186
|
+
return result;
|
|
187
|
+
for (const ele of list) {
|
|
188
|
+
const column = ele.column ||
|
|
189
|
+
(ele.children && variable_js_1.CHILDREN_LIST.includes(ele.type) ? ele.children.column : null);
|
|
190
|
+
if (column) {
|
|
191
|
+
result = (0, exports.findNode)(column, props, value);
|
|
192
|
+
if (result)
|
|
193
|
+
return result;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
return result;
|
|
197
|
+
}
|
|
198
|
+
function randomId() {
|
|
199
|
+
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
|
|
200
|
+
const maxPos = chars.length;
|
|
201
|
+
let id = '';
|
|
202
|
+
for (let i = 0; i < 16; i++) {
|
|
203
|
+
id += chars.charAt(Math.floor(Math.random() * maxPos));
|
|
204
|
+
}
|
|
205
|
+
return id;
|
|
206
|
+
}
|
|
207
|
+
const getObjType = (obj) => {
|
|
208
|
+
const map = {
|
|
209
|
+
'[object Boolean]': 'boolean',
|
|
210
|
+
'[object Number]': 'number',
|
|
211
|
+
'[object String]': 'string',
|
|
212
|
+
'[object Function]': 'function',
|
|
213
|
+
'[object Array]': 'array',
|
|
214
|
+
'[object Date]': 'date',
|
|
215
|
+
'[object RegExp]': 'regExp',
|
|
216
|
+
'[object Undefined]': 'undefined',
|
|
217
|
+
'[object Null]': 'null',
|
|
218
|
+
'[object Object]': 'object',
|
|
219
|
+
};
|
|
220
|
+
if (obj instanceof Element) {
|
|
221
|
+
return 'element';
|
|
222
|
+
}
|
|
223
|
+
return map[Object.prototype.toString.call(obj)];
|
|
224
|
+
};
|
|
225
|
+
exports.getObjType = getObjType;
|
|
226
|
+
const isJson = (str) => {
|
|
227
|
+
if (Array.isArray(str)) {
|
|
228
|
+
return str[0] instanceof Object;
|
|
229
|
+
}
|
|
230
|
+
else if (str instanceof Object) {
|
|
231
|
+
return true;
|
|
232
|
+
}
|
|
233
|
+
return false;
|
|
234
|
+
};
|
|
235
|
+
exports.isJson = isJson;
|
|
236
|
+
const deepClone = (data) => {
|
|
237
|
+
return (0, cloneDeep_1.default)(data);
|
|
238
|
+
};
|
|
239
|
+
exports.deepClone = deepClone;
|
|
240
|
+
const getColumn = (column) => {
|
|
241
|
+
let columnList = [];
|
|
242
|
+
if (Array.isArray(column)) {
|
|
243
|
+
columnList = column;
|
|
244
|
+
}
|
|
245
|
+
else {
|
|
246
|
+
for (const o in column) {
|
|
247
|
+
column[o].prop = o;
|
|
248
|
+
columnList.push(column[o]);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
return columnList;
|
|
252
|
+
};
|
|
253
|
+
exports.getColumn = getColumn;
|
|
254
|
+
const setPx = (val, defval = '') => {
|
|
255
|
+
if ((0, validate_js_1.validatenull)(val))
|
|
256
|
+
val = defval;
|
|
257
|
+
if ((0, validate_js_1.validatenull)(val))
|
|
258
|
+
return '';
|
|
259
|
+
val = val + '';
|
|
260
|
+
if (val.indexOf('%') === -1) {
|
|
261
|
+
val = val + 'px';
|
|
262
|
+
}
|
|
263
|
+
return val;
|
|
264
|
+
};
|
|
265
|
+
exports.setPx = setPx;
|
|
266
|
+
const detailDataType = (value, type) => {
|
|
267
|
+
if ((0, validate_js_1.validatenull)(value))
|
|
268
|
+
return value;
|
|
269
|
+
if (type === 'number') {
|
|
270
|
+
return Number(value);
|
|
271
|
+
}
|
|
272
|
+
else if (type === 'string') {
|
|
273
|
+
return value + '';
|
|
274
|
+
}
|
|
275
|
+
else {
|
|
276
|
+
return value;
|
|
277
|
+
}
|
|
278
|
+
};
|
|
279
|
+
exports.detailDataType = detailDataType;
|
|
280
|
+
const getDicValue = (list, value, props = {}) => {
|
|
281
|
+
if ((0, validate_js_1.validatenull)(list))
|
|
282
|
+
return value;
|
|
283
|
+
const isArray = Array.isArray(value);
|
|
284
|
+
value = isArray ? value : [value];
|
|
285
|
+
const result = [];
|
|
286
|
+
const labelKey = props[variable_js_1.DIC_PROPS.label] || variable_js_1.DIC_PROPS.label;
|
|
287
|
+
const groupsKey = props[variable_js_1.DIC_PROPS.groups] || variable_js_1.DIC_PROPS.groups;
|
|
288
|
+
let dic = (0, exports.deepClone)(list);
|
|
289
|
+
dic.forEach((ele) => {
|
|
290
|
+
if (ele[groupsKey]) {
|
|
291
|
+
dic = dic.concat(ele[groupsKey]);
|
|
292
|
+
delete ele[groupsKey];
|
|
293
|
+
}
|
|
294
|
+
});
|
|
295
|
+
value.forEach((val) => {
|
|
296
|
+
if (Array.isArray(val)) {
|
|
297
|
+
const arrayResult = [];
|
|
298
|
+
val.forEach((arrayVal) => {
|
|
299
|
+
const obj = (0, exports.findNode)(dic, props, arrayVal) || {};
|
|
300
|
+
arrayResult.push(obj[labelKey] || arrayVal);
|
|
301
|
+
});
|
|
302
|
+
result.push(arrayResult);
|
|
303
|
+
}
|
|
304
|
+
else {
|
|
305
|
+
const obj = (0, exports.findNode)(dic, props, val) || {};
|
|
306
|
+
result.push(obj[labelKey] || val);
|
|
307
|
+
}
|
|
308
|
+
});
|
|
309
|
+
return isArray ? result : result.join('');
|
|
310
|
+
};
|
|
311
|
+
exports.getDicValue = getDicValue;
|
|
312
|
+
const filterParams = (form, list = ['', '$'], deep = true) => {
|
|
313
|
+
const data = deep ? (0, exports.deepClone)(form) : form;
|
|
314
|
+
for (const o in data) {
|
|
315
|
+
if (list.includes('')) {
|
|
316
|
+
if ((0, validate_js_1.validatenull)(data[o]))
|
|
317
|
+
delete data[o];
|
|
318
|
+
}
|
|
319
|
+
if (list.includes('$')) {
|
|
320
|
+
if (o.indexOf('$') !== -1)
|
|
321
|
+
delete data[o];
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
return data;
|
|
325
|
+
};
|
|
326
|
+
exports.filterParams = filterParams;
|
|
327
|
+
const findArray = (list = [], value, valueKey = variable_js_1.DIC_PROPS.value, index = false) => {
|
|
328
|
+
if (index) {
|
|
329
|
+
return list.findIndex((ele) => ele[valueKey] == value);
|
|
330
|
+
}
|
|
331
|
+
return list.find((ele) => ele[valueKey] == value);
|
|
332
|
+
};
|
|
333
|
+
exports.findArray = findArray;
|
|
334
|
+
const findNode = (list = [], props = {}, value) => {
|
|
335
|
+
const valueKey = props.value || variable_js_1.DIC_PROPS.value;
|
|
336
|
+
const childrenKey = props.children || variable_js_1.DIC_PROPS.children;
|
|
337
|
+
for (const ele of list) {
|
|
338
|
+
if (ele[valueKey] === value) {
|
|
339
|
+
return ele;
|
|
340
|
+
}
|
|
341
|
+
const children = ele[childrenKey];
|
|
342
|
+
if (Array.isArray(children)) {
|
|
343
|
+
const node = (0, exports.findNode)(children, props, value);
|
|
344
|
+
if (node)
|
|
345
|
+
return node;
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
return undefined;
|
|
349
|
+
};
|
|
350
|
+
exports.findNode = findNode;
|
|
351
|
+
const getPasswordChar = (result = '', char) => {
|
|
352
|
+
const len = result.toString().length;
|
|
353
|
+
result = '';
|
|
354
|
+
for (let i = 0; i < len; i++) {
|
|
355
|
+
result = result + char;
|
|
356
|
+
}
|
|
357
|
+
return result;
|
|
358
|
+
};
|
|
359
|
+
exports.getPasswordChar = getPasswordChar;
|
|
360
|
+
const arraySort = (list = [], prop, callback) => {
|
|
361
|
+
return list
|
|
362
|
+
.filter((ele) => !(0, validate_js_1.validatenull)(ele[prop]))
|
|
363
|
+
.sort((a, b) => callback(a, b))
|
|
364
|
+
.concat(list.filter((ele) => (0, validate_js_1.validatenull)(ele[prop])));
|
|
365
|
+
};
|
|
366
|
+
exports.arraySort = arraySort;
|
|
367
|
+
const blankVal = (value) => {
|
|
368
|
+
if ((0, validate_js_1.validatenull)(value))
|
|
369
|
+
return value;
|
|
370
|
+
const type = (0, exports.getObjType)(value);
|
|
371
|
+
if (type === 'array')
|
|
372
|
+
value = [];
|
|
373
|
+
else if (type === 'object')
|
|
374
|
+
value = {};
|
|
375
|
+
else if (['number', 'boolean'].includes(type))
|
|
376
|
+
value = undefined;
|
|
377
|
+
else
|
|
378
|
+
value = '';
|
|
379
|
+
return value;
|
|
380
|
+
};
|
|
381
|
+
exports.blankVal = blankVal;
|
|
382
|
+
const clearVal = (obj, propList, list = []) => {
|
|
383
|
+
if (!obj)
|
|
384
|
+
return {};
|
|
385
|
+
propList.forEach((ele) => {
|
|
386
|
+
if (list.includes(ele))
|
|
387
|
+
return;
|
|
388
|
+
else if (ele.includes('$'))
|
|
389
|
+
delete obj[ele];
|
|
390
|
+
else if (!(0, validate_js_1.validatenull)(obj[ele])) {
|
|
391
|
+
obj[ele] = (0, exports.blankVal)(obj[ele]);
|
|
392
|
+
}
|
|
393
|
+
});
|
|
394
|
+
return obj;
|
|
395
|
+
};
|
|
396
|
+
exports.clearVal = clearVal;
|
|
397
|
+
const validData = (val, dafult) => {
|
|
398
|
+
if (typeof val === 'boolean') {
|
|
399
|
+
return val;
|
|
400
|
+
}
|
|
401
|
+
return !(0, validate_js_1.validatenull)(val) ? val : dafult;
|
|
402
|
+
};
|
|
403
|
+
exports.validData = validData;
|