eoss-ui 0.5.89 → 0.5.91
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/lib/button-group.js +9 -3
- package/lib/button.js +9 -3
- package/lib/checkbox-group.js +9 -3
- package/lib/data-table-form.js +9 -3
- package/lib/data-table.js +9 -3
- package/lib/date-picker.js +9 -3
- package/lib/dialog.js +9 -3
- package/lib/eoss-ui.common.js +4745 -4472
- package/lib/flow-group.js +9 -3
- package/lib/flow-list.js +9 -3
- package/lib/flow.js +9 -3
- package/lib/form.js +4500 -4242
- package/lib/handle-user.js +9 -3
- package/lib/handler.js +206 -195
- package/lib/icon.js +9 -3
- package/lib/index.js +1 -1
- package/lib/input-number.js +9 -3
- package/lib/input.js +9 -3
- package/lib/login.js +24 -8
- package/lib/main.js +21 -15
- package/lib/nav.js +9 -3
- package/lib/page.js +9 -3
- package/lib/pagination.js +9 -3
- package/lib/player.js +9 -3
- package/lib/qr-code.js +9 -3
- package/lib/radio-group.js +9 -3
- package/lib/retrial-auth.js +9 -3
- package/lib/select-ganged.js +9 -3
- package/lib/select.js +9 -3
- package/lib/selector-panel.js +9 -3
- package/lib/selector.js +9 -3
- package/lib/sizer.js +9 -3
- package/lib/steps.js +9 -3
- package/lib/switch.js +9 -3
- package/lib/table-form.js +9 -3
- package/lib/tabs.js +9 -3
- package/lib/tips.js +9 -3
- package/lib/tree-group.js +9 -3
- package/lib/tree.js +9 -3
- package/lib/upload.js +9 -3
- package/lib/utils/util.js +9 -3
- package/lib/wujie.js +9 -3
- package/lib/wxlogin.js +9 -3
- package/package.json +1 -1
- package/packages/.DS_Store +0 -0
- package/packages/form/src/main.vue +1863 -1759
- package/packages/handler/src/main.vue +95 -97
- package/packages/login/src/main.vue +18 -7
- package/packages/main/src/main.vue +2 -1
- package/packages/main/src/simplicity/index.vue +2 -1
- package/src/.DS_Store +0 -0
- package/src/index.js +157 -157
- package/src/utils/util.js +426 -238
- package/CHANGELOG.md +0 -929
|
@@ -1,108 +1,105 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<ul class="es-handler">
|
|
3
|
-
<li
|
|
4
|
-
v-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
:class="{ 'es-pointer': onlineList }"
|
|
26
|
-
@click.stop="onlineList ? handleClick({ type: 'online' }) : ''"
|
|
27
|
-
>{{ online }}</span
|
|
28
|
-
>人在线</span
|
|
29
|
-
>
|
|
30
|
-
</div>
|
|
31
|
-
<div>今 天:{{ date }}</div>
|
|
32
|
-
</div>
|
|
33
|
-
<el-popover
|
|
34
|
-
v-else-if="item.type === 'system'"
|
|
35
|
-
placement="bottom"
|
|
36
|
-
trigger="hover"
|
|
37
|
-
ref="system"
|
|
38
|
-
:popper-class="
|
|
39
|
-
system.length > 4
|
|
40
|
-
? 'es-popper-sub-system is-width'
|
|
41
|
-
: 'es-popper-sub-system'
|
|
42
|
-
"
|
|
43
|
-
@show="showPopper = true"
|
|
44
|
-
@hide="showPopper = false"
|
|
45
|
-
>
|
|
46
|
-
<el-scrollbar :max-height="maxHeight" v-if="system.length">
|
|
47
|
-
<ul class="es-sub-system">
|
|
48
|
-
<li
|
|
49
|
-
v-for="ele in system"
|
|
50
|
-
class="es-sub-system-item"
|
|
51
|
-
:class="{
|
|
52
|
-
'es-disabled':
|
|
53
|
-
(application && !ele.hasPermission) ||
|
|
54
|
-
(ele.extendData && ele.extendData.businessStatus == 0)
|
|
55
|
-
}"
|
|
56
|
-
:key="ele.id"
|
|
57
|
-
:title="ele.text"
|
|
58
|
-
@click.stop="handleSelect({ node: ele })"
|
|
3
|
+
<li v-for="(item, index) in lists" :key="index" class="es-handler-item">
|
|
4
|
+
<template v-if="!item.hide">
|
|
5
|
+
<es-handle-user
|
|
6
|
+
v-if="item.type === 'user'"
|
|
7
|
+
class="es-handler-user"
|
|
8
|
+
:data="item"
|
|
9
|
+
:userModel="userModel"
|
|
10
|
+
:job-scrollbar="jobScrollbar"
|
|
11
|
+
@visible-change="handleVisibleChange"
|
|
12
|
+
@click="handleClick"
|
|
13
|
+
@change="handleChange"
|
|
14
|
+
></es-handle-user>
|
|
15
|
+
<div v-else-if="item.type === 'date'" class="es-handler-date">
|
|
16
|
+
<div>
|
|
17
|
+
{{ time }}
|
|
18
|
+
<span v-if="show"
|
|
19
|
+
>当前<span
|
|
20
|
+
class="es-online-num"
|
|
21
|
+
:class="{ 'es-pointer': onlineList }"
|
|
22
|
+
@click.stop="onlineList ? handleClick({ type: 'online' }) : ''"
|
|
23
|
+
>{{ online }}</span
|
|
24
|
+
>人在线</span
|
|
59
25
|
>
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
26
|
+
</div>
|
|
27
|
+
<div>今 天:{{ date }}</div>
|
|
28
|
+
</div>
|
|
29
|
+
<el-popover
|
|
30
|
+
v-else-if="item.type === 'system'"
|
|
31
|
+
placement="bottom"
|
|
32
|
+
trigger="hover"
|
|
33
|
+
ref="system"
|
|
34
|
+
:popper-class="
|
|
35
|
+
system.length > 4
|
|
36
|
+
? 'es-popper-sub-system is-width'
|
|
37
|
+
: 'es-popper-sub-system'
|
|
38
|
+
"
|
|
39
|
+
@show="showPopper = true"
|
|
40
|
+
@hide="showPopper = false"
|
|
41
|
+
>
|
|
42
|
+
<el-scrollbar :max-height="maxHeight" v-if="system.length">
|
|
43
|
+
<ul class="es-sub-system">
|
|
44
|
+
<li
|
|
45
|
+
v-for="ele in system"
|
|
46
|
+
class="es-sub-system-item"
|
|
47
|
+
:class="{
|
|
48
|
+
'es-disabled':
|
|
49
|
+
(application && !ele.hasPermission) ||
|
|
50
|
+
(ele.extendData && ele.extendData.businessStatus == 0)
|
|
51
|
+
}"
|
|
52
|
+
:key="ele.id"
|
|
53
|
+
:title="ele.text"
|
|
54
|
+
@click.stop="handleSelect({ node: ele })"
|
|
55
|
+
>
|
|
56
|
+
<el-badge
|
|
57
|
+
:is-dot="typeof ele.tips === 'boolean'"
|
|
58
|
+
:hidden="!ele.tips"
|
|
59
|
+
:max="99"
|
|
60
|
+
:value="typeof ele.tips !== 'boolean' ? ele.tips : 0"
|
|
61
|
+
><i
|
|
62
|
+
:class="[
|
|
63
|
+
unicode(ele.icons) ? ele.icons : 'es-icon',
|
|
64
|
+
'es-sub-system-icon',
|
|
65
|
+
{ 'es-icon-yingyong': !ele.icons }
|
|
66
|
+
]"
|
|
67
|
+
v-html="unicode(ele.icons) ? '' : ele.icons"
|
|
68
|
+
></i
|
|
69
|
+
></el-badge>
|
|
70
|
+
<div class="es-sub-system-title">{{ ele.text }}</div>
|
|
71
|
+
</li>
|
|
72
|
+
</ul>
|
|
73
|
+
</el-scrollbar>
|
|
74
|
+
<div
|
|
75
|
+
slot="reference"
|
|
76
|
+
class="es-handler-icon"
|
|
77
|
+
:title="item.title"
|
|
78
|
+
:class="item.icon"
|
|
79
|
+
></div>
|
|
80
|
+
</el-popover>
|
|
81
|
+
<el-badge
|
|
82
|
+
class="es-badge"
|
|
83
|
+
v-else-if="item.type === 'notice'"
|
|
84
|
+
:value="notice"
|
|
85
|
+
:max="99"
|
|
86
|
+
:hidden="notice === 0"
|
|
87
|
+
>
|
|
88
|
+
<div
|
|
89
|
+
class="es-handler-icon"
|
|
90
|
+
:title="item.title"
|
|
91
|
+
:class="item.icon"
|
|
92
|
+
@click.stop="handleClick(item)"
|
|
93
|
+
></div>
|
|
94
|
+
</el-badge>
|
|
92
95
|
<div
|
|
96
|
+
v-else
|
|
93
97
|
class="es-handler-icon"
|
|
94
98
|
:title="item.title"
|
|
95
99
|
:class="item.icon"
|
|
96
100
|
@click.stop="handleClick(item)"
|
|
97
101
|
></div>
|
|
98
|
-
</
|
|
99
|
-
<div
|
|
100
|
-
v-else
|
|
101
|
-
class="es-handler-icon"
|
|
102
|
-
:title="item.title"
|
|
103
|
-
:class="item.icon"
|
|
104
|
-
@click.stop="handleClick(item)"
|
|
105
|
-
></div>
|
|
102
|
+
</template>
|
|
106
103
|
</li>
|
|
107
104
|
</ul>
|
|
108
105
|
</template>
|
|
@@ -317,7 +314,8 @@ export default {
|
|
|
317
314
|
'menus',
|
|
318
315
|
'useCaseCodes',
|
|
319
316
|
'mainConfig',
|
|
320
|
-
'jump'
|
|
317
|
+
'jump',
|
|
318
|
+
'showLaunch'
|
|
321
319
|
]);
|
|
322
320
|
if (this.onQuit && typeof this.onQuit === 'function') {
|
|
323
321
|
this.onQuit();
|
|
@@ -641,11 +641,20 @@ export default {
|
|
|
641
641
|
}
|
|
642
642
|
},
|
|
643
643
|
warnInfo() {
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
644
|
+
if (this.warning === false && !this.warningText) {
|
|
645
|
+
return false;
|
|
646
|
+
}
|
|
647
|
+
if (
|
|
648
|
+
this.warningText &&
|
|
649
|
+
this.warningText !== 'true' &&
|
|
650
|
+
this.warningText !== true
|
|
651
|
+
) {
|
|
652
|
+
return this.warningText;
|
|
653
|
+
}
|
|
654
|
+
if (this.warning && typeof this.warning === 'string') {
|
|
655
|
+
return this.warning;
|
|
656
|
+
}
|
|
657
|
+
return '本系统为非涉密系统,禁止上传和处理任何涉密文件';
|
|
649
658
|
},
|
|
650
659
|
switchs() {
|
|
651
660
|
return Array.isArray(this.loginModel)
|
|
@@ -803,6 +812,7 @@ export default {
|
|
|
803
812
|
checkCode: '',
|
|
804
813
|
showAssistance: false,
|
|
805
814
|
doAssistance: null,
|
|
815
|
+
warningText: '',
|
|
806
816
|
safes: {
|
|
807
817
|
paste: (event) => {
|
|
808
818
|
event.preventDefault();
|
|
@@ -835,7 +845,8 @@ export default {
|
|
|
835
845
|
'deviceUnique',
|
|
836
846
|
'userId',
|
|
837
847
|
'userName',
|
|
838
|
-
'useCaseCodes'
|
|
848
|
+
'useCaseCodes',
|
|
849
|
+
'showLaunch'
|
|
839
850
|
]);
|
|
840
851
|
},
|
|
841
852
|
created() {
|
|
@@ -1482,7 +1493,7 @@ export default {
|
|
|
1482
1493
|
Authorization: results.token,
|
|
1483
1494
|
deviceUnique: results.deviceUnique,
|
|
1484
1495
|
userId: results.userId,
|
|
1485
|
-
userName: results.
|
|
1496
|
+
userName: results.userName,
|
|
1486
1497
|
useCaseCodes: results.resourceCodes
|
|
1487
1498
|
}
|
|
1488
1499
|
});
|
package/src/.DS_Store
ADDED
|
Binary file
|
package/src/index.js
CHANGED
|
@@ -1,112 +1,112 @@
|
|
|
1
1
|
/* Automatically generated by './build/bin/build-entry.js' */
|
|
2
2
|
|
|
3
|
-
import Button from '../packages/button/index.js';
|
|
4
|
-
import ButtonGroup from '../packages/button-group/index.js';
|
|
5
|
-
import Calendar from '../packages/calendar/index.js';
|
|
6
|
-
import Card from '../packages/card/index.js';
|
|
7
|
-
import Cascader from '../packages/cascader/index.js';
|
|
8
|
-
import CheckboxGroup from '../packages/checkbox-group/index.js';
|
|
9
|
-
import Clients from '../packages/clients/index.js';
|
|
10
|
-
import DataTable from '../packages/data-table/index.js';
|
|
11
|
-
import DataTableForm from '../packages/data-table-form/index.js';
|
|
12
|
-
import DatePicker from '../packages/date-picker/index.js';
|
|
13
|
-
import Dialog from '../packages/dialog/index.js';
|
|
14
|
-
import Enterprise from '../packages/enterprise/index.js';
|
|
15
|
-
import ErrorPage from '../packages/error-page/index.js';
|
|
16
|
-
import Form from '../packages/form/index.js';
|
|
17
|
-
import Flow from '../packages/flow/index.js';
|
|
18
|
-
import FlowGroup from '../packages/flow-group/index.js';
|
|
19
|
-
import FlowList from '../packages/flow-list/index.js';
|
|
20
|
-
import HandleUser from '../packages/handle-user/index.js';
|
|
21
|
-
import Handler from '../packages/handler/index.js';
|
|
22
|
-
import Icon from '../packages/icon/index.js';
|
|
23
|
-
import Icons from '../packages/icons/index.js';
|
|
24
|
-
import Input from '../packages/input/index.js';
|
|
25
|
-
import InputNumber from '../packages/input-number/index.js';
|
|
26
|
-
import Label from '../packages/label/index.js';
|
|
27
|
-
import Layout from '../packages/layout/index.js';
|
|
28
|
-
import Login from '../packages/login/index.js';
|
|
29
|
-
import Main from '../packages/main/index.js';
|
|
30
|
-
import Menu from '../packages/menu/index.js';
|
|
31
|
-
import Nav from '../packages/nav/index.js';
|
|
32
|
-
import Notify from '../packages/notify/index.js';
|
|
33
|
-
import Pagination from '../packages/pagination/index.js';
|
|
34
|
-
import Page from '../packages/page/index.js';
|
|
35
|
-
import Player from '../packages/player/index.js';
|
|
36
|
-
import QrCode from '../packages/qr-code/index.js';
|
|
37
|
-
import RadioGroup from '../packages/radio-group/index.js';
|
|
38
|
-
import RetrialAuth from '../packages/retrial-auth/index.js';
|
|
39
|
-
import Select from '../packages/select/index.js';
|
|
40
|
-
import SelectGanged from '../packages/select-ganged/index.js';
|
|
41
|
-
import Selector from '../packages/selector/index.js';
|
|
42
|
-
import SelectorPanel from '../packages/selector-panel/index.js';
|
|
43
|
-
import Sizer from '../packages/sizer/index.js';
|
|
44
|
-
import Steps from '../packages/steps/index.js';
|
|
45
|
-
import Switch from '../packages/switch/index.js';
|
|
46
|
-
import Tabs from '../packages/tabs/index.js';
|
|
47
|
-
import TabsPanel from '../packages/tabs-panel/index.js';
|
|
48
|
-
import Tips from '../packages/tips/index.js';
|
|
49
|
-
import Tree from '../packages/tree/index.js';
|
|
50
|
-
import TreeGroup from '../packages/tree-group/index.js';
|
|
51
|
-
import Toolbar from '../packages/toolbar/index.js';
|
|
52
|
-
import TableForm from '../packages/table-form/index.js';
|
|
53
|
-
import Upload from '../packages/upload/index.js';
|
|
54
|
-
import Wujie from '../packages/wujie/index.js';
|
|
3
|
+
import Button from '../packages/button/index.js';
|
|
4
|
+
import ButtonGroup from '../packages/button-group/index.js';
|
|
5
|
+
import Calendar from '../packages/calendar/index.js';
|
|
6
|
+
import Card from '../packages/card/index.js';
|
|
7
|
+
import Cascader from '../packages/cascader/index.js';
|
|
8
|
+
import CheckboxGroup from '../packages/checkbox-group/index.js';
|
|
9
|
+
import Clients from '../packages/clients/index.js';
|
|
10
|
+
import DataTable from '../packages/data-table/index.js';
|
|
11
|
+
import DataTableForm from '../packages/data-table-form/index.js';
|
|
12
|
+
import DatePicker from '../packages/date-picker/index.js';
|
|
13
|
+
import Dialog from '../packages/dialog/index.js';
|
|
14
|
+
import Enterprise from '../packages/enterprise/index.js';
|
|
15
|
+
import ErrorPage from '../packages/error-page/index.js';
|
|
16
|
+
import Form from '../packages/form/index.js';
|
|
17
|
+
import Flow from '../packages/flow/index.js';
|
|
18
|
+
import FlowGroup from '../packages/flow-group/index.js';
|
|
19
|
+
import FlowList from '../packages/flow-list/index.js';
|
|
20
|
+
import HandleUser from '../packages/handle-user/index.js';
|
|
21
|
+
import Handler from '../packages/handler/index.js';
|
|
22
|
+
import Icon from '../packages/icon/index.js';
|
|
23
|
+
import Icons from '../packages/icons/index.js';
|
|
24
|
+
import Input from '../packages/input/index.js';
|
|
25
|
+
import InputNumber from '../packages/input-number/index.js';
|
|
26
|
+
import Label from '../packages/label/index.js';
|
|
27
|
+
import Layout from '../packages/layout/index.js';
|
|
28
|
+
import Login from '../packages/login/index.js';
|
|
29
|
+
import Main from '../packages/main/index.js';
|
|
30
|
+
import Menu from '../packages/menu/index.js';
|
|
31
|
+
import Nav from '../packages/nav/index.js';
|
|
32
|
+
import Notify from '../packages/notify/index.js';
|
|
33
|
+
import Pagination from '../packages/pagination/index.js';
|
|
34
|
+
import Page from '../packages/page/index.js';
|
|
35
|
+
import Player from '../packages/player/index.js';
|
|
36
|
+
import QrCode from '../packages/qr-code/index.js';
|
|
37
|
+
import RadioGroup from '../packages/radio-group/index.js';
|
|
38
|
+
import RetrialAuth from '../packages/retrial-auth/index.js';
|
|
39
|
+
import Select from '../packages/select/index.js';
|
|
40
|
+
import SelectGanged from '../packages/select-ganged/index.js';
|
|
41
|
+
import Selector from '../packages/selector/index.js';
|
|
42
|
+
import SelectorPanel from '../packages/selector-panel/index.js';
|
|
43
|
+
import Sizer from '../packages/sizer/index.js';
|
|
44
|
+
import Steps from '../packages/steps/index.js';
|
|
45
|
+
import Switch from '../packages/switch/index.js';
|
|
46
|
+
import Tabs from '../packages/tabs/index.js';
|
|
47
|
+
import TabsPanel from '../packages/tabs-panel/index.js';
|
|
48
|
+
import Tips from '../packages/tips/index.js';
|
|
49
|
+
import Tree from '../packages/tree/index.js';
|
|
50
|
+
import TreeGroup from '../packages/tree-group/index.js';
|
|
51
|
+
import Toolbar from '../packages/toolbar/index.js';
|
|
52
|
+
import TableForm from '../packages/table-form/index.js';
|
|
53
|
+
import Upload from '../packages/upload/index.js';
|
|
54
|
+
import Wujie from '../packages/wujie/index.js';
|
|
55
55
|
import Wxlogin from '../packages/wxlogin/index.js';
|
|
56
56
|
|
|
57
57
|
const components = [
|
|
58
|
-
Button,
|
|
59
|
-
ButtonGroup,
|
|
60
|
-
Calendar,
|
|
61
|
-
Card,
|
|
62
|
-
Cascader,
|
|
63
|
-
CheckboxGroup,
|
|
64
|
-
Clients,
|
|
65
|
-
DataTable,
|
|
66
|
-
DataTableForm,
|
|
67
|
-
DatePicker,
|
|
68
|
-
Dialog,
|
|
69
|
-
Enterprise,
|
|
70
|
-
ErrorPage,
|
|
71
|
-
Form,
|
|
72
|
-
Flow,
|
|
73
|
-
FlowGroup,
|
|
74
|
-
FlowList,
|
|
75
|
-
HandleUser,
|
|
76
|
-
Handler,
|
|
77
|
-
Icon,
|
|
78
|
-
Icons,
|
|
79
|
-
Input,
|
|
80
|
-
InputNumber,
|
|
81
|
-
Label,
|
|
82
|
-
Layout,
|
|
83
|
-
Login,
|
|
84
|
-
Main,
|
|
85
|
-
Menu,
|
|
86
|
-
Nav,
|
|
87
|
-
Notify,
|
|
88
|
-
Pagination,
|
|
89
|
-
Page,
|
|
90
|
-
Player,
|
|
91
|
-
QrCode,
|
|
92
|
-
RadioGroup,
|
|
93
|
-
RetrialAuth,
|
|
94
|
-
Select,
|
|
95
|
-
SelectGanged,
|
|
96
|
-
Selector,
|
|
97
|
-
SelectorPanel,
|
|
98
|
-
Sizer,
|
|
99
|
-
Steps,
|
|
100
|
-
Switch,
|
|
101
|
-
Tabs,
|
|
102
|
-
TabsPanel,
|
|
103
|
-
Tips,
|
|
104
|
-
Tree,
|
|
105
|
-
TreeGroup,
|
|
106
|
-
Toolbar,
|
|
107
|
-
TableForm,
|
|
108
|
-
Upload,
|
|
109
|
-
Wujie,
|
|
58
|
+
Button,
|
|
59
|
+
ButtonGroup,
|
|
60
|
+
Calendar,
|
|
61
|
+
Card,
|
|
62
|
+
Cascader,
|
|
63
|
+
CheckboxGroup,
|
|
64
|
+
Clients,
|
|
65
|
+
DataTable,
|
|
66
|
+
DataTableForm,
|
|
67
|
+
DatePicker,
|
|
68
|
+
Dialog,
|
|
69
|
+
Enterprise,
|
|
70
|
+
ErrorPage,
|
|
71
|
+
Form,
|
|
72
|
+
Flow,
|
|
73
|
+
FlowGroup,
|
|
74
|
+
FlowList,
|
|
75
|
+
HandleUser,
|
|
76
|
+
Handler,
|
|
77
|
+
Icon,
|
|
78
|
+
Icons,
|
|
79
|
+
Input,
|
|
80
|
+
InputNumber,
|
|
81
|
+
Label,
|
|
82
|
+
Layout,
|
|
83
|
+
Login,
|
|
84
|
+
Main,
|
|
85
|
+
Menu,
|
|
86
|
+
Nav,
|
|
87
|
+
Notify,
|
|
88
|
+
Pagination,
|
|
89
|
+
Page,
|
|
90
|
+
Player,
|
|
91
|
+
QrCode,
|
|
92
|
+
RadioGroup,
|
|
93
|
+
RetrialAuth,
|
|
94
|
+
Select,
|
|
95
|
+
SelectGanged,
|
|
96
|
+
Selector,
|
|
97
|
+
SelectorPanel,
|
|
98
|
+
Sizer,
|
|
99
|
+
Steps,
|
|
100
|
+
Switch,
|
|
101
|
+
Tabs,
|
|
102
|
+
TabsPanel,
|
|
103
|
+
Tips,
|
|
104
|
+
Tree,
|
|
105
|
+
TreeGroup,
|
|
106
|
+
Toolbar,
|
|
107
|
+
TableForm,
|
|
108
|
+
Upload,
|
|
109
|
+
Wujie,
|
|
110
110
|
Wxlogin
|
|
111
111
|
];
|
|
112
112
|
|
|
@@ -121,59 +121,59 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
export default {
|
|
124
|
-
version: '0.5.
|
|
124
|
+
version: '0.5.91',
|
|
125
125
|
install,
|
|
126
|
-
Button,
|
|
127
|
-
ButtonGroup,
|
|
128
|
-
Calendar,
|
|
129
|
-
Card,
|
|
130
|
-
Cascader,
|
|
131
|
-
CheckboxGroup,
|
|
132
|
-
Clients,
|
|
133
|
-
DataTable,
|
|
134
|
-
DataTableForm,
|
|
135
|
-
DatePicker,
|
|
136
|
-
Dialog,
|
|
137
|
-
Enterprise,
|
|
138
|
-
ErrorPage,
|
|
139
|
-
Form,
|
|
140
|
-
Flow,
|
|
141
|
-
FlowGroup,
|
|
142
|
-
FlowList,
|
|
143
|
-
HandleUser,
|
|
144
|
-
Handler,
|
|
145
|
-
Icon,
|
|
146
|
-
Icons,
|
|
147
|
-
Input,
|
|
148
|
-
InputNumber,
|
|
149
|
-
Label,
|
|
150
|
-
Layout,
|
|
151
|
-
Login,
|
|
152
|
-
Main,
|
|
153
|
-
Menu,
|
|
154
|
-
Nav,
|
|
155
|
-
Notify,
|
|
156
|
-
Pagination,
|
|
157
|
-
Page,
|
|
158
|
-
Player,
|
|
159
|
-
QrCode,
|
|
160
|
-
RadioGroup,
|
|
161
|
-
RetrialAuth,
|
|
162
|
-
Select,
|
|
163
|
-
SelectGanged,
|
|
164
|
-
Selector,
|
|
165
|
-
SelectorPanel,
|
|
166
|
-
Sizer,
|
|
167
|
-
Steps,
|
|
168
|
-
Switch,
|
|
169
|
-
Tabs,
|
|
170
|
-
TabsPanel,
|
|
171
|
-
Tips,
|
|
172
|
-
Tree,
|
|
173
|
-
TreeGroup,
|
|
174
|
-
Toolbar,
|
|
175
|
-
TableForm,
|
|
176
|
-
Upload,
|
|
177
|
-
Wujie,
|
|
126
|
+
Button,
|
|
127
|
+
ButtonGroup,
|
|
128
|
+
Calendar,
|
|
129
|
+
Card,
|
|
130
|
+
Cascader,
|
|
131
|
+
CheckboxGroup,
|
|
132
|
+
Clients,
|
|
133
|
+
DataTable,
|
|
134
|
+
DataTableForm,
|
|
135
|
+
DatePicker,
|
|
136
|
+
Dialog,
|
|
137
|
+
Enterprise,
|
|
138
|
+
ErrorPage,
|
|
139
|
+
Form,
|
|
140
|
+
Flow,
|
|
141
|
+
FlowGroup,
|
|
142
|
+
FlowList,
|
|
143
|
+
HandleUser,
|
|
144
|
+
Handler,
|
|
145
|
+
Icon,
|
|
146
|
+
Icons,
|
|
147
|
+
Input,
|
|
148
|
+
InputNumber,
|
|
149
|
+
Label,
|
|
150
|
+
Layout,
|
|
151
|
+
Login,
|
|
152
|
+
Main,
|
|
153
|
+
Menu,
|
|
154
|
+
Nav,
|
|
155
|
+
Notify,
|
|
156
|
+
Pagination,
|
|
157
|
+
Page,
|
|
158
|
+
Player,
|
|
159
|
+
QrCode,
|
|
160
|
+
RadioGroup,
|
|
161
|
+
RetrialAuth,
|
|
162
|
+
Select,
|
|
163
|
+
SelectGanged,
|
|
164
|
+
Selector,
|
|
165
|
+
SelectorPanel,
|
|
166
|
+
Sizer,
|
|
167
|
+
Steps,
|
|
168
|
+
Switch,
|
|
169
|
+
Tabs,
|
|
170
|
+
TabsPanel,
|
|
171
|
+
Tips,
|
|
172
|
+
Tree,
|
|
173
|
+
TreeGroup,
|
|
174
|
+
Toolbar,
|
|
175
|
+
TableForm,
|
|
176
|
+
Upload,
|
|
177
|
+
Wujie,
|
|
178
178
|
Wxlogin
|
|
179
179
|
};
|