@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,117 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<el-mention v-model="text"
|
|
3
|
+
:class="b()"
|
|
4
|
+
@click="handleClick"
|
|
5
|
+
@focus="handleFocus"
|
|
6
|
+
@blur="handleBlur"
|
|
7
|
+
:placeholder="placeholder"
|
|
8
|
+
:size="size"
|
|
9
|
+
:prefix="prefix"
|
|
10
|
+
:options="options"
|
|
11
|
+
:loading="loading"
|
|
12
|
+
:split="split"
|
|
13
|
+
:whole="whole"
|
|
14
|
+
:check-is-whole="checkIsWhole"
|
|
15
|
+
@search="remote?handleRemoteMethod:undefined"
|
|
16
|
+
:clearable="clearableVal"
|
|
17
|
+
:readonly="readonly"
|
|
18
|
+
:disabled="disabled">
|
|
19
|
+
<template #prepend
|
|
20
|
+
v-if="prepend"><span @click="prependClick(text)">{{prepend}}</span>
|
|
21
|
+
</template>
|
|
22
|
+
<template #append
|
|
23
|
+
v-if="append">
|
|
24
|
+
<span @click="appendClick(text)">{{append}}</span>
|
|
25
|
+
</template>
|
|
26
|
+
<template #label="{ item }">
|
|
27
|
+
<slot :item="item"
|
|
28
|
+
:label="labelKey"
|
|
29
|
+
:value="valueKey"
|
|
30
|
+
v-if="$slots.default">
|
|
31
|
+
</slot>
|
|
32
|
+
<span v-else>{{ item.label }}</span>
|
|
33
|
+
</template>
|
|
34
|
+
</el-mention>
|
|
35
|
+
</template>
|
|
36
|
+
|
|
37
|
+
<script>
|
|
38
|
+
import create from "../../../core/create.mjs";
|
|
39
|
+
import props from "../../core/common/props.mjs";
|
|
40
|
+
import event from "../../core/common/event.mjs";
|
|
41
|
+
import { sendDic } from "../../../core/dic.mjs";
|
|
42
|
+
export default create({
|
|
43
|
+
name: "mention",
|
|
44
|
+
mixins: [props(), event()],
|
|
45
|
+
data () {
|
|
46
|
+
return {
|
|
47
|
+
created: false,
|
|
48
|
+
loading: false,
|
|
49
|
+
netDic: [],
|
|
50
|
+
};
|
|
51
|
+
},
|
|
52
|
+
props: {
|
|
53
|
+
split: {
|
|
54
|
+
type: String,
|
|
55
|
+
default: ','
|
|
56
|
+
},
|
|
57
|
+
remote: Boolean,
|
|
58
|
+
prependClick: {
|
|
59
|
+
type: Function,
|
|
60
|
+
default: () => { }
|
|
61
|
+
},
|
|
62
|
+
prepend: {
|
|
63
|
+
type: String
|
|
64
|
+
},
|
|
65
|
+
appendClick: {
|
|
66
|
+
type: Function,
|
|
67
|
+
default: () => { }
|
|
68
|
+
},
|
|
69
|
+
append: {
|
|
70
|
+
type: String
|
|
71
|
+
},
|
|
72
|
+
prefix: String,
|
|
73
|
+
whole: Boolean,
|
|
74
|
+
checkIsWhole: Function
|
|
75
|
+
},
|
|
76
|
+
created () { },
|
|
77
|
+
mounted () { },
|
|
78
|
+
computed: {
|
|
79
|
+
options () {
|
|
80
|
+
return this.netDic.map(ele => {
|
|
81
|
+
return {
|
|
82
|
+
label: ele[this.labelKey],
|
|
83
|
+
value: ele[this.valueKey],
|
|
84
|
+
}
|
|
85
|
+
})
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
watch: {
|
|
89
|
+
dic: {
|
|
90
|
+
handler (val) {
|
|
91
|
+
this.netDic = val;
|
|
92
|
+
},
|
|
93
|
+
immediate: true
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
methods: {
|
|
97
|
+
handleModelValue (val) {
|
|
98
|
+
if (!this.validatenull(this.text)) {
|
|
99
|
+
if (this.remote && !this.created) {
|
|
100
|
+
this.created = true
|
|
101
|
+
this.handleRemoteMethod(this.text)
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
handleRemoteMethod (query) {
|
|
106
|
+
this.loading = true
|
|
107
|
+
sendDic({
|
|
108
|
+
column: this.column,
|
|
109
|
+
value: query,
|
|
110
|
+
}, this).then(res => {
|
|
111
|
+
this.loading = false;
|
|
112
|
+
this.netDic = res;
|
|
113
|
+
});
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
});
|
|
117
|
+
</script>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div :class="b()">
|
|
3
|
+
<el-radio-group v-model="text"
|
|
4
|
+
:size="size"
|
|
5
|
+
@click="handleClick"
|
|
6
|
+
:disabled="disabled">
|
|
7
|
+
<component :is="componentName"
|
|
8
|
+
v-for="(item,index) in dic"
|
|
9
|
+
:value="item[valueKey]"
|
|
10
|
+
:border="border"
|
|
11
|
+
:readonly="readonly"
|
|
12
|
+
:disabled="item[disabledKey]"
|
|
13
|
+
:key="index">{{item[labelKey]}}</component>
|
|
14
|
+
</el-radio-group>
|
|
15
|
+
</div>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script>
|
|
19
|
+
import create from "../../../core/create.mjs";
|
|
20
|
+
import props from "../../core/common/props.mjs";
|
|
21
|
+
import event from "../../core/common/event.mjs";
|
|
22
|
+
export default create({
|
|
23
|
+
name: "radio",
|
|
24
|
+
mixins: [props(), event()],
|
|
25
|
+
data () {
|
|
26
|
+
return {
|
|
27
|
+
name: 'radio',
|
|
28
|
+
};
|
|
29
|
+
},
|
|
30
|
+
props: {
|
|
31
|
+
modelValue: {}
|
|
32
|
+
},
|
|
33
|
+
watch: {},
|
|
34
|
+
created () { },
|
|
35
|
+
mounted () { },
|
|
36
|
+
methods: {}
|
|
37
|
+
});
|
|
38
|
+
</script>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<el-rate v-model="text"
|
|
3
|
+
@click="handleClick"
|
|
4
|
+
:max="max"
|
|
5
|
+
:readonly="readonly"
|
|
6
|
+
:texts="texts"
|
|
7
|
+
:show-text="showText"
|
|
8
|
+
:icon-classes="iconClasses"
|
|
9
|
+
:void-icon-class="voidIconClass"
|
|
10
|
+
:disabled="disabled"
|
|
11
|
+
:colors="colors"></el-rate>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<script>
|
|
15
|
+
import create from "../../../core/create.mjs";
|
|
16
|
+
import props from "../../core/common/props.mjs";
|
|
17
|
+
import event from "../../core/common/event.mjs";
|
|
18
|
+
export default create({
|
|
19
|
+
name: "rate",
|
|
20
|
+
mixins: [props(), event()],
|
|
21
|
+
props: {
|
|
22
|
+
colors: {
|
|
23
|
+
type: Array
|
|
24
|
+
},
|
|
25
|
+
max: {
|
|
26
|
+
type: Number,
|
|
27
|
+
default: 5
|
|
28
|
+
},
|
|
29
|
+
iconClasses: {
|
|
30
|
+
type: Array
|
|
31
|
+
},
|
|
32
|
+
texts: {
|
|
33
|
+
type: Array
|
|
34
|
+
},
|
|
35
|
+
showText: {
|
|
36
|
+
type: Boolean,
|
|
37
|
+
default: false
|
|
38
|
+
},
|
|
39
|
+
voidIconClass: {
|
|
40
|
+
type: String
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
data () {
|
|
44
|
+
return {};
|
|
45
|
+
},
|
|
46
|
+
watch: {},
|
|
47
|
+
created () { },
|
|
48
|
+
mounted () { },
|
|
49
|
+
methods: {}
|
|
50
|
+
});
|
|
51
|
+
</script>
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<el-row :class="[b(),{'avue--card':isCard}]"
|
|
3
|
+
:span="24">
|
|
4
|
+
<el-col :span="column.span || 24"
|
|
5
|
+
v-for="(column,index) in columnOption"
|
|
6
|
+
:key="column.prop"
|
|
7
|
+
:class="b('item')">
|
|
8
|
+
<p :class="b('title')">{{column.label}}:</p>
|
|
9
|
+
<div :class="b('content')">
|
|
10
|
+
<slot :name="column.prop"
|
|
11
|
+
:dic="DIC[column.prop]"
|
|
12
|
+
v-if="mainSlot.includes(column.prop)"></slot>
|
|
13
|
+
<span v-else
|
|
14
|
+
:class="[b('tags'),{'avue-search__tags--active':getActive(item,column)}]"
|
|
15
|
+
@click="handleClick(column,item)"
|
|
16
|
+
v-for="item in DIC[column.prop]"
|
|
17
|
+
:key="getKey(item,column.props,valueKey)">{{getKey(item,column.props,labelKey)}}</span>
|
|
18
|
+
</div>
|
|
19
|
+
</el-col>
|
|
20
|
+
</el-row>
|
|
21
|
+
</template>
|
|
22
|
+
|
|
23
|
+
<script>
|
|
24
|
+
import create from "../../../core/create.mjs";
|
|
25
|
+
import { DIC_PROPS } from '../../../global/variable.mjs'
|
|
26
|
+
import init from "../../core/common/init.mjs";
|
|
27
|
+
export default create({
|
|
28
|
+
name: "search",
|
|
29
|
+
mixins: [init()],
|
|
30
|
+
props: {
|
|
31
|
+
modelValue: {
|
|
32
|
+
type: Object,
|
|
33
|
+
default: () => {
|
|
34
|
+
return {}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
watch: {
|
|
39
|
+
modelValue: {
|
|
40
|
+
handler (val) {
|
|
41
|
+
this.setVal(val)
|
|
42
|
+
},
|
|
43
|
+
deep: true
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
computed: {
|
|
47
|
+
form: {
|
|
48
|
+
get () {
|
|
49
|
+
return this.modelValue
|
|
50
|
+
},
|
|
51
|
+
set (val) {
|
|
52
|
+
this.setVal(val)
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
props () {
|
|
56
|
+
return this.parentOption.props || {}
|
|
57
|
+
},
|
|
58
|
+
labelKey () {
|
|
59
|
+
return DIC_PROPS.label
|
|
60
|
+
},
|
|
61
|
+
valueKey () {
|
|
62
|
+
return DIC_PROPS.value
|
|
63
|
+
},
|
|
64
|
+
mainSlot () {
|
|
65
|
+
let result = [];
|
|
66
|
+
this.propOption.forEach(item => {
|
|
67
|
+
if (this.$slots[item.prop]) result.push(item.prop)
|
|
68
|
+
})
|
|
69
|
+
return result
|
|
70
|
+
},
|
|
71
|
+
isCard () {
|
|
72
|
+
return this.parentOption.card;
|
|
73
|
+
},
|
|
74
|
+
parentOption () {
|
|
75
|
+
return this.tableOption;
|
|
76
|
+
},
|
|
77
|
+
propOption () {
|
|
78
|
+
return this.columnOption;
|
|
79
|
+
},
|
|
80
|
+
columnOption () {
|
|
81
|
+
return this.parentOption.column;
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
mounted () {
|
|
85
|
+
this.dataFormat();
|
|
86
|
+
},
|
|
87
|
+
methods: {
|
|
88
|
+
setVal (val) {
|
|
89
|
+
this.$emit('update:modelValue', val)
|
|
90
|
+
this.$emit("change", val);
|
|
91
|
+
},
|
|
92
|
+
getKey (item = {}, props = {}, key) {
|
|
93
|
+
return item[props[key] || this.props[key] || key];
|
|
94
|
+
},
|
|
95
|
+
dataFormat () {
|
|
96
|
+
this.columnOption.forEach(ele => {
|
|
97
|
+
const prop = ele.prop;
|
|
98
|
+
if (this.validatenull(this.form[prop])) {
|
|
99
|
+
this.form[prop] = ele.multiple === false ? '' : []
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
},
|
|
103
|
+
getActive (item, column) {
|
|
104
|
+
const value = this.getKey(item, column.props, this.valueKey);
|
|
105
|
+
if (column.multiple === false) {
|
|
106
|
+
return this.form[column.prop] === value;
|
|
107
|
+
} else {
|
|
108
|
+
return this.form[column.prop].includes(value);
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
handleClick (column, item) {
|
|
112
|
+
const value = this.getKey(item, column.props, this.valueKey);
|
|
113
|
+
//单选
|
|
114
|
+
if (column.multiple === false) {
|
|
115
|
+
this.form[column.prop] = value;
|
|
116
|
+
} else {
|
|
117
|
+
// 多选
|
|
118
|
+
const index = this.form[column.prop].indexOf(value);
|
|
119
|
+
if (index === -1) {
|
|
120
|
+
this.form[column.prop].push(value);
|
|
121
|
+
} else {
|
|
122
|
+
this.form[column.prop].splice(index, 1);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
});
|
|
128
|
+
</script>
|
|
129
|
+
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<component
|
|
3
|
+
:is="componentName"
|
|
4
|
+
ref="main"
|
|
5
|
+
:class="b()"
|
|
6
|
+
v-model="text"
|
|
7
|
+
:size="size"
|
|
8
|
+
:options="netDic"
|
|
9
|
+
:props="props"
|
|
10
|
+
:loading="loading"
|
|
11
|
+
:loading-text="loadingText"
|
|
12
|
+
:value-on-clear="valueOnClear"
|
|
13
|
+
:multiple="multiple"
|
|
14
|
+
:filterable="remote ? true : filterable"
|
|
15
|
+
:remote="remote"
|
|
16
|
+
:readonly="readonly"
|
|
17
|
+
:no-match-text="noMatchText"
|
|
18
|
+
:no-data-text="noDataText"
|
|
19
|
+
:remote-method="remote ? handleRemoteMethod : undefined"
|
|
20
|
+
:popper-class="popperClass"
|
|
21
|
+
:popper-append-to-body="popperAppendToBody"
|
|
22
|
+
:collapse-tags="tags || collapseTags"
|
|
23
|
+
:collapse-tags-tooltip="collapseTagsTooltip"
|
|
24
|
+
:max-collapse-tags="maxCollapseTags"
|
|
25
|
+
:clearable="clearableVal"
|
|
26
|
+
:placeholder="placeholder"
|
|
27
|
+
@focus="handleFocus"
|
|
28
|
+
@blur="handleBlur"
|
|
29
|
+
@click="handleClick"
|
|
30
|
+
@remove-tag="handleremoveTag"
|
|
31
|
+
:multiple-limit="limit"
|
|
32
|
+
:allow-create="allowCreate"
|
|
33
|
+
:default-first-option="defaultFirstOption"
|
|
34
|
+
:disabled="disabled"
|
|
35
|
+
>
|
|
36
|
+
<template #="scope">
|
|
37
|
+
<template v-if="virtualize">
|
|
38
|
+
<slot
|
|
39
|
+
:label="labelKey"
|
|
40
|
+
:value="valueKey"
|
|
41
|
+
:item="scope.item"
|
|
42
|
+
v-if="$slots.default"
|
|
43
|
+
>
|
|
44
|
+
</slot>
|
|
45
|
+
<template v-else>
|
|
46
|
+
<span>{{ getLabelText(scope.item) }}</span>
|
|
47
|
+
<span v-if="scope.item[descKey]" :class="b('desc')">{{
|
|
48
|
+
scope.item[descKey]
|
|
49
|
+
}}</span>
|
|
50
|
+
</template>
|
|
51
|
+
</template>
|
|
52
|
+
<template v-else>
|
|
53
|
+
<template v-if="isGroup">
|
|
54
|
+
<el-option-group
|
|
55
|
+
v-for="(item, index) in netDic"
|
|
56
|
+
:key="index"
|
|
57
|
+
:label="getLabelText(item)"
|
|
58
|
+
>
|
|
59
|
+
<el-option
|
|
60
|
+
v-for="(citem, cindex) in item[groupsKey]"
|
|
61
|
+
:key="citem[valueKey]"
|
|
62
|
+
:class="citem[classNameKey]"
|
|
63
|
+
:disabled="citem[disabledKey]"
|
|
64
|
+
:label="getLabelText(citem)"
|
|
65
|
+
:value="citem[valueKey]"
|
|
66
|
+
>
|
|
67
|
+
<template #>
|
|
68
|
+
<slot
|
|
69
|
+
:label="labelKey"
|
|
70
|
+
:value="valueKey"
|
|
71
|
+
:item="citem"
|
|
72
|
+
v-if="$slots.default"
|
|
73
|
+
>
|
|
74
|
+
</slot>
|
|
75
|
+
<template v-else>
|
|
76
|
+
<span>{{ getLabelText(citem) }}</span>
|
|
77
|
+
<span v-if="citem[descKey]" :class="b('desc')">{{
|
|
78
|
+
citem[descKey]
|
|
79
|
+
}}</span>
|
|
80
|
+
</template>
|
|
81
|
+
</template>
|
|
82
|
+
</el-option>
|
|
83
|
+
</el-option-group>
|
|
84
|
+
</template>
|
|
85
|
+
<template v-else>
|
|
86
|
+
<div :class="b('check')">
|
|
87
|
+
<el-checkbox
|
|
88
|
+
v-if="all && multiple"
|
|
89
|
+
v-model="checked"
|
|
90
|
+
:disabled="disabled"
|
|
91
|
+
:indeterminate="indeterminate"
|
|
92
|
+
@change="checkChange"
|
|
93
|
+
>{{ t('check.checkAll') }}</el-checkbox
|
|
94
|
+
>
|
|
95
|
+
</div>
|
|
96
|
+
|
|
97
|
+
<el-option
|
|
98
|
+
v-for="(item, index) in netDic"
|
|
99
|
+
:key="item[valueKey]"
|
|
100
|
+
:class="item[classNameKey]"
|
|
101
|
+
:disabled="item[disabledKey]"
|
|
102
|
+
:label="getLabelText(item)"
|
|
103
|
+
:value="item[valueKey]"
|
|
104
|
+
>
|
|
105
|
+
<template #>
|
|
106
|
+
<slot
|
|
107
|
+
:label="labelKey"
|
|
108
|
+
:value="valueKey"
|
|
109
|
+
:item="item"
|
|
110
|
+
v-if="$slots.default"
|
|
111
|
+
>
|
|
112
|
+
</slot>
|
|
113
|
+
<template v-else>
|
|
114
|
+
<span>{{ getLabelText(item) }}</span>
|
|
115
|
+
<span v-if="item[descKey]" :class="b('desc')">{{
|
|
116
|
+
item[descKey]
|
|
117
|
+
}}</span>
|
|
118
|
+
</template>
|
|
119
|
+
</template>
|
|
120
|
+
</el-option>
|
|
121
|
+
</template>
|
|
122
|
+
</template>
|
|
123
|
+
</template>
|
|
124
|
+
</component>
|
|
125
|
+
</template>
|
|
126
|
+
|
|
127
|
+
<script>
|
|
128
|
+
import packages from "../../../core/packages.mjs";
|
|
129
|
+
import create from "../../../core/create.mjs";
|
|
130
|
+
import props from "../../core/common/props.mjs";
|
|
131
|
+
import event from "../../core/common/event.mjs";
|
|
132
|
+
import locale from "../../../core/locale.mjs";
|
|
133
|
+
import { sendDic } from "../../../core/dic.mjs";
|
|
134
|
+
import { DIC_SPLIT } from "../../../global/variable.mjs";
|
|
135
|
+
export default create({
|
|
136
|
+
name: "select",
|
|
137
|
+
mixins: [props(), event(), locale],
|
|
138
|
+
data() {
|
|
139
|
+
return {
|
|
140
|
+
checked: false,
|
|
141
|
+
indeterminate: false,
|
|
142
|
+
create: false,
|
|
143
|
+
netDic: [],
|
|
144
|
+
loading: false,
|
|
145
|
+
};
|
|
146
|
+
},
|
|
147
|
+
props: {
|
|
148
|
+
virtualize: Boolean,
|
|
149
|
+
valueOnClear: {
|
|
150
|
+
type: [String, Number, Boolean, Function],
|
|
151
|
+
default: undefined,
|
|
152
|
+
},
|
|
153
|
+
loadingText: {
|
|
154
|
+
type: String,
|
|
155
|
+
},
|
|
156
|
+
noMatchText: {
|
|
157
|
+
type: String,
|
|
158
|
+
},
|
|
159
|
+
noDataText: {
|
|
160
|
+
type: String,
|
|
161
|
+
},
|
|
162
|
+
drag: {
|
|
163
|
+
type: Boolean,
|
|
164
|
+
default: false,
|
|
165
|
+
},
|
|
166
|
+
remote: {
|
|
167
|
+
type: Boolean,
|
|
168
|
+
default: false,
|
|
169
|
+
},
|
|
170
|
+
tags: {
|
|
171
|
+
type: Boolean,
|
|
172
|
+
default: false,
|
|
173
|
+
},
|
|
174
|
+
removeTag: Function,
|
|
175
|
+
collapseTags: Boolean,
|
|
176
|
+
collapseTagsTooltip: Boolean,
|
|
177
|
+
maxCollapseTags: Number,
|
|
178
|
+
limit: {
|
|
179
|
+
type: Number,
|
|
180
|
+
default: 0,
|
|
181
|
+
},
|
|
182
|
+
filterable: {
|
|
183
|
+
type: Boolean,
|
|
184
|
+
default: false,
|
|
185
|
+
},
|
|
186
|
+
allowCreate: {
|
|
187
|
+
type: Boolean,
|
|
188
|
+
default: false,
|
|
189
|
+
},
|
|
190
|
+
defaultFirstOption: {
|
|
191
|
+
type: Boolean,
|
|
192
|
+
default: false,
|
|
193
|
+
},
|
|
194
|
+
all: {
|
|
195
|
+
type: Boolean,
|
|
196
|
+
default: false,
|
|
197
|
+
},
|
|
198
|
+
popperAppendToBody: {
|
|
199
|
+
type: Boolean,
|
|
200
|
+
default: true,
|
|
201
|
+
},
|
|
202
|
+
},
|
|
203
|
+
watch: {
|
|
204
|
+
dic: {
|
|
205
|
+
handler(val) {
|
|
206
|
+
this.netDic = val;
|
|
207
|
+
},
|
|
208
|
+
immediate: true,
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
computed: {
|
|
212
|
+
classNameKey() {
|
|
213
|
+
return this.props.className || "className";
|
|
214
|
+
},
|
|
215
|
+
componentName() {
|
|
216
|
+
return "elSelect" + (this.virtualize ? "V2" : "");
|
|
217
|
+
},
|
|
218
|
+
},
|
|
219
|
+
mounted() {
|
|
220
|
+
if (this.drag) {
|
|
221
|
+
this.setSort();
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
methods: {
|
|
225
|
+
handleModelValue(val) {
|
|
226
|
+
if (!this.validatenull(this.text)) {
|
|
227
|
+
if (this.remote && !this.created) {
|
|
228
|
+
this.created = true;
|
|
229
|
+
this.handleRemoteMethod(
|
|
230
|
+
this.multiple ? this.text.join(DIC_SPLIT) : this.text
|
|
231
|
+
);
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
if (this.multiple) {
|
|
235
|
+
if (this.text.length == 0) {
|
|
236
|
+
this.checked = false;
|
|
237
|
+
this.indeterminate = false;
|
|
238
|
+
} else if (this.text.length == this.netDic.length) {
|
|
239
|
+
this.checked = true;
|
|
240
|
+
this.indeterminate = false;
|
|
241
|
+
} else {
|
|
242
|
+
this.indeterminate = true;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
setSort() {
|
|
247
|
+
if (!window.Sortable) {
|
|
248
|
+
packages.logs("Sortable");
|
|
249
|
+
return;
|
|
250
|
+
}
|
|
251
|
+
const el = this.$refs.main.$el.querySelectorAll(
|
|
252
|
+
".el-select__selection"
|
|
253
|
+
)[0];
|
|
254
|
+
this.sortable = window.Sortable.create(el, {
|
|
255
|
+
animation: 100,
|
|
256
|
+
onEnd: (evt) => {
|
|
257
|
+
const targetRow = this.modelValue.splice(evt.oldIndex, 1)[0];
|
|
258
|
+
this.modelValue.splice(evt.newIndex, 0, targetRow);
|
|
259
|
+
},
|
|
260
|
+
});
|
|
261
|
+
},
|
|
262
|
+
handleRemoteMethod(query) {
|
|
263
|
+
this.loading = true;
|
|
264
|
+
sendDic(
|
|
265
|
+
{
|
|
266
|
+
column: this.column,
|
|
267
|
+
value: query,
|
|
268
|
+
},
|
|
269
|
+
this
|
|
270
|
+
).then((res) => {
|
|
271
|
+
this.loading = false;
|
|
272
|
+
this.netDic = res;
|
|
273
|
+
});
|
|
274
|
+
},
|
|
275
|
+
checkChange(val) {
|
|
276
|
+
this.text = [];
|
|
277
|
+
this.checked = val;
|
|
278
|
+
this.indeterminate = false;
|
|
279
|
+
if (val) {
|
|
280
|
+
this.text = this.netDic
|
|
281
|
+
.filter((ele) => !ele[this.disabledKey])
|
|
282
|
+
.map((ele) => ele[this.valueKey]);
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
handleremoveTag(tagValue) {
|
|
286
|
+
if (this.removeTag && typeof this.removeTag === 'function') {
|
|
287
|
+
this.removeTag(tagValue);
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
},
|
|
291
|
+
});
|
|
292
|
+
</script>
|