eoss-ui 0.8.41 → 0.8.42
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/eoss-ui.common.js +191 -159
- package/lib/flow.js +128 -128
- package/lib/index.js +1 -1
- package/lib/main.js +5 -5
- package/lib/selector.js +52 -20
- package/package.json +1 -1
- package/packages/.DS_Store +0 -0
- package/packages/button-group/src/main.vue +346 -346
- package/packages/calogin/.DS_Store +0 -0
- package/packages/calogin/src/main.vue +412 -412
- package/packages/clients/src/main.vue +151 -151
- package/packages/date-picker/.DS_Store +0 -0
- package/packages/date-picker/src/.DS_Store +0 -0
- package/packages/dialog/.DS_Store +0 -0
- package/packages/flow/.DS_Store +0 -0
- package/packages/flow/src/.DS_Store +0 -0
- package/packages/flow/src/component/CustomPreset.vue +326 -326
- package/packages/flow/src/component/FileList.vue +97 -97
- package/packages/flow/src/component/SendMsg.vue +242 -242
- package/packages/flow/src/component/SortFlow.vue +110 -110
- package/packages/flow/src/form.vue +123 -123
- package/packages/flow/src/freeStartFlow.vue +2902 -2902
- package/packages/flow/src/processForm.vue +2032 -2032
- package/packages/flow/src/processReject.vue +323 -323
- package/packages/flow/src/table.vue +58 -58
- package/packages/flow-list/.DS_Store +0 -0
- package/packages/form/.DS_Store +0 -0
- package/packages/form/src/table.vue +1512 -1512
- package/packages/icon/.DS_Store +0 -0
- package/packages/icon/src/main.vue +104 -104
- package/packages/login/.DS_Store +0 -0
- package/packages/login/src/resetPassword.vue +557 -557
- package/packages/main/.DS_Store +0 -0
- package/packages/main/src/.DS_Store +0 -0
- package/packages/main/src/public/online.vue +89 -89
- package/packages/main/src/public/search.vue +464 -464
- package/packages/main/src/public/settings.vue +273 -273
- package/packages/main/src/simplicity/apps.vue +388 -388
- package/packages/main/src/simplicity/avatar.vue +82 -82
- package/packages/main/src/simplicity/handler.vue +158 -158
- package/packages/main/src/simplicity/menu-list.vue +135 -135
- package/packages/main/src/simplicity/message.vue +293 -293
- package/packages/main/src/simplicity/notice.vue +222 -222
- package/packages/main/src/simplicity/sub-menu.vue +276 -276
- package/packages/main/src/simplicity/user.vue +259 -259
- package/packages/main/src/simplicityTop/apps.vue +388 -388
- package/packages/main/src/simplicityTop/avatar.vue +82 -82
- package/packages/main/src/simplicityTop/handler.vue +215 -215
- package/packages/main/src/simplicityTop/lists.vue +84 -84
- package/packages/main/src/simplicityTop/menu-list.vue +135 -135
- package/packages/main/src/simplicityTop/message.vue +293 -293
- package/packages/main/src/simplicityTop/notice.vue +222 -222
- package/packages/main/src/simplicityTop/router-page.vue +45 -45
- package/packages/main/src/simplicityTop/sub-menu.vue +274 -274
- package/packages/main/src/simplicityTop/user.vue +259 -259
- package/packages/menu/.DS_Store +0 -0
- package/packages/nav/src/main.vue +351 -351
- package/packages/select/.DS_Store +0 -0
- package/packages/selector/.DS_Store +0 -0
- package/packages/selector/src/main.vue +36 -17
- package/packages/selector-panel/.DS_Store +0 -0
- package/packages/selector-panel/src/selection.vue +174 -174
- package/packages/switch/src/main.vue +170 -170
- package/packages/theme-chalk/src/.DS_Store +0 -0
- package/packages/theme-chalk/src/data-table.scss +297 -297
- package/packages/theme-chalk/src/handler.scss +148 -148
- package/packages/theme-chalk/src/icon.scss +3452 -3452
- package/packages/theme-chalk/src/login.scss +1006 -1006
- package/packages/theme-chalk/src/main.scss +664 -664
- package/packages/theme-chalk/src/menu.scss +224 -224
- package/packages/theme-chalk/src/simplicity-top.scss +1845 -1845
- package/packages/theme-chalk/src/simplicity.scss +1403 -1403
- package/packages/theme-chalk/src/upload.scss +172 -172
- package/packages/tips/src/main.vue +141 -141
- package/packages/upload/.DS_Store +0 -0
- package/packages/wujie/src/main.vue +146 -146
- package/src/.DS_Store +0 -0
- package/src/index.js +166 -166
- package/src/utils/.DS_Store +0 -0
- package/src/utils/rules.js +18 -18
|
@@ -1,146 +1,146 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<WujieVue
|
|
3
|
-
class="es-wujie"
|
|
4
|
-
v-if="show"
|
|
5
|
-
v-bind="$attrs"
|
|
6
|
-
:width="width"
|
|
7
|
-
:height="height"
|
|
8
|
-
:name="wujieName"
|
|
9
|
-
:loading="loading"
|
|
10
|
-
:sync="sync"
|
|
11
|
-
:prefix="prefix"
|
|
12
|
-
:alive="alive"
|
|
13
|
-
:props="defaultProps"
|
|
14
|
-
:replace="replace"
|
|
15
|
-
:fetch="fetch"
|
|
16
|
-
:fiber="fiber"
|
|
17
|
-
:degrade="degrade"
|
|
18
|
-
:plugins="defaultPlugins"
|
|
19
|
-
:beforeLoad="beforeLoad"
|
|
20
|
-
:beforeMount="beforeMount"
|
|
21
|
-
:afterMount="afterMount"
|
|
22
|
-
:beforeUnmount="beforeUnmount"
|
|
23
|
-
:afterUnmount="afterUnmount"
|
|
24
|
-
:activated="activated"
|
|
25
|
-
:deactivated="deactivated"
|
|
26
|
-
:loadError="loadError"
|
|
27
|
-
:attrs="attrs"
|
|
28
|
-
:url="defaultUrl"
|
|
29
|
-
></WujieVue>
|
|
30
|
-
</template>
|
|
31
|
-
<script>
|
|
32
|
-
import util from 'eoss-ui/src/utils/util.js';
|
|
33
|
-
import WujieVue from 'wujie-vue2';
|
|
34
|
-
export default {
|
|
35
|
-
name: 'EsWujie',
|
|
36
|
-
inheritAttrs: false,
|
|
37
|
-
inject: {},
|
|
38
|
-
props: {
|
|
39
|
-
width: { type: String, default: '100%' },
|
|
40
|
-
height: { type: String, default: '100%' },
|
|
41
|
-
name: { type: String, default: '' },
|
|
42
|
-
loading: { type: HTMLElement, default: undefined },
|
|
43
|
-
host: {
|
|
44
|
-
type: String,
|
|
45
|
-
default: ''
|
|
46
|
-
},
|
|
47
|
-
url: { type: String, default: '' },
|
|
48
|
-
sync: { type: Boolean, default: false },
|
|
49
|
-
prefix: { type: Object, default: undefined },
|
|
50
|
-
alive: { type: Boolean, default: false },
|
|
51
|
-
props: { type: Object, default: undefined },
|
|
52
|
-
replace: { type: Function, default: undefined },
|
|
53
|
-
fetch: { type: Function, default: undefined },
|
|
54
|
-
fiber: { type: Boolean, default: true },
|
|
55
|
-
degrade: { type: Boolean, default: false },
|
|
56
|
-
plugins: {
|
|
57
|
-
type: Array,
|
|
58
|
-
default() {
|
|
59
|
-
return [];
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
beforeLoad: { type: Function, default: null },
|
|
63
|
-
beforeMount: { type: Function, default: null },
|
|
64
|
-
afterMount: { type: Function, default: null },
|
|
65
|
-
beforeUnmount: { type: Function, default: null },
|
|
66
|
-
afterUnmount: { type: Function, default: null },
|
|
67
|
-
activated: { type: Function, default: null },
|
|
68
|
-
deactivated: { type: Function, default: null },
|
|
69
|
-
loadError: { type: Function, default: null },
|
|
70
|
-
param: Object,
|
|
71
|
-
attrs: {
|
|
72
|
-
type: Object,
|
|
73
|
-
default() {
|
|
74
|
-
return {
|
|
75
|
-
src: '#/empty'
|
|
76
|
-
};
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
show: Boolean,
|
|
80
|
-
dialog: Boolean,
|
|
81
|
-
appendTopBody: Boolean
|
|
82
|
-
},
|
|
83
|
-
data() {
|
|
84
|
-
return {
|
|
85
|
-
defaultUrl: '',
|
|
86
|
-
defaultPlugins: null
|
|
87
|
-
};
|
|
88
|
-
},
|
|
89
|
-
computed: {
|
|
90
|
-
wujieName() {
|
|
91
|
-
return this.name ? this.name : util.uuid(16);
|
|
92
|
-
},
|
|
93
|
-
defaultProps() {
|
|
94
|
-
let props = {};
|
|
95
|
-
if (this.url) {
|
|
96
|
-
let params = util.getParams({ url: this.url });
|
|
97
|
-
if (params) {
|
|
98
|
-
props = params;
|
|
99
|
-
}
|
|
100
|
-
let urls = this.url.split('?');
|
|
101
|
-
if (urls[0].indexOf('.js') > 1) {
|
|
102
|
-
if (this.dialog) {
|
|
103
|
-
props._dialog = true;
|
|
104
|
-
props._dialogId = this.wujieName;
|
|
105
|
-
}
|
|
106
|
-
props.appendTopBody = this.appendTopBody;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
return { ...props, ...this.$attrs, ...this.props };
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
watch: {
|
|
113
|
-
url: {
|
|
114
|
-
immediate: true,
|
|
115
|
-
handler(val) {
|
|
116
|
-
if (val) {
|
|
117
|
-
let urls = val.split('?');
|
|
118
|
-
let plugins = this.plugins;
|
|
119
|
-
let defaultUrl = '';
|
|
120
|
-
if (urls[0].indexOf('.js') > 1) {
|
|
121
|
-
defaultUrl = this.param
|
|
122
|
-
? util.urlJoinParams({
|
|
123
|
-
url: './primary.html',
|
|
124
|
-
param: this.param,
|
|
125
|
-
timestamp: true
|
|
126
|
-
})
|
|
127
|
-
: util.handlerUrl('./primary.html');
|
|
128
|
-
plugins.push({
|
|
129
|
-
jsBeforeLoaders: [{ src: val }]
|
|
130
|
-
});
|
|
131
|
-
} else {
|
|
132
|
-
defaultUrl = val;
|
|
133
|
-
}
|
|
134
|
-
this.defaultUrl = util.startWith(defaultUrl, 'http')
|
|
135
|
-
? defaultUrl
|
|
136
|
-
: this.host + defaultUrl;
|
|
137
|
-
this.defaultPlugins = plugins;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
},
|
|
142
|
-
created() {},
|
|
143
|
-
mounted() {},
|
|
144
|
-
methods: {}
|
|
145
|
-
};
|
|
146
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<WujieVue
|
|
3
|
+
class="es-wujie"
|
|
4
|
+
v-if="show"
|
|
5
|
+
v-bind="$attrs"
|
|
6
|
+
:width="width"
|
|
7
|
+
:height="height"
|
|
8
|
+
:name="wujieName"
|
|
9
|
+
:loading="loading"
|
|
10
|
+
:sync="sync"
|
|
11
|
+
:prefix="prefix"
|
|
12
|
+
:alive="alive"
|
|
13
|
+
:props="defaultProps"
|
|
14
|
+
:replace="replace"
|
|
15
|
+
:fetch="fetch"
|
|
16
|
+
:fiber="fiber"
|
|
17
|
+
:degrade="degrade"
|
|
18
|
+
:plugins="defaultPlugins"
|
|
19
|
+
:beforeLoad="beforeLoad"
|
|
20
|
+
:beforeMount="beforeMount"
|
|
21
|
+
:afterMount="afterMount"
|
|
22
|
+
:beforeUnmount="beforeUnmount"
|
|
23
|
+
:afterUnmount="afterUnmount"
|
|
24
|
+
:activated="activated"
|
|
25
|
+
:deactivated="deactivated"
|
|
26
|
+
:loadError="loadError"
|
|
27
|
+
:attrs="attrs"
|
|
28
|
+
:url="defaultUrl"
|
|
29
|
+
></WujieVue>
|
|
30
|
+
</template>
|
|
31
|
+
<script>
|
|
32
|
+
import util from 'eoss-ui/src/utils/util.js';
|
|
33
|
+
import WujieVue from 'wujie-vue2';
|
|
34
|
+
export default {
|
|
35
|
+
name: 'EsWujie',
|
|
36
|
+
inheritAttrs: false,
|
|
37
|
+
inject: {},
|
|
38
|
+
props: {
|
|
39
|
+
width: { type: String, default: '100%' },
|
|
40
|
+
height: { type: String, default: '100%' },
|
|
41
|
+
name: { type: String, default: '' },
|
|
42
|
+
loading: { type: HTMLElement, default: undefined },
|
|
43
|
+
host: {
|
|
44
|
+
type: String,
|
|
45
|
+
default: ''
|
|
46
|
+
},
|
|
47
|
+
url: { type: String, default: '' },
|
|
48
|
+
sync: { type: Boolean, default: false },
|
|
49
|
+
prefix: { type: Object, default: undefined },
|
|
50
|
+
alive: { type: Boolean, default: false },
|
|
51
|
+
props: { type: Object, default: undefined },
|
|
52
|
+
replace: { type: Function, default: undefined },
|
|
53
|
+
fetch: { type: Function, default: undefined },
|
|
54
|
+
fiber: { type: Boolean, default: true },
|
|
55
|
+
degrade: { type: Boolean, default: false },
|
|
56
|
+
plugins: {
|
|
57
|
+
type: Array,
|
|
58
|
+
default() {
|
|
59
|
+
return [];
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
beforeLoad: { type: Function, default: null },
|
|
63
|
+
beforeMount: { type: Function, default: null },
|
|
64
|
+
afterMount: { type: Function, default: null },
|
|
65
|
+
beforeUnmount: { type: Function, default: null },
|
|
66
|
+
afterUnmount: { type: Function, default: null },
|
|
67
|
+
activated: { type: Function, default: null },
|
|
68
|
+
deactivated: { type: Function, default: null },
|
|
69
|
+
loadError: { type: Function, default: null },
|
|
70
|
+
param: Object,
|
|
71
|
+
attrs: {
|
|
72
|
+
type: Object,
|
|
73
|
+
default() {
|
|
74
|
+
return {
|
|
75
|
+
src: '#/empty'
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
show: Boolean,
|
|
80
|
+
dialog: Boolean,
|
|
81
|
+
appendTopBody: Boolean
|
|
82
|
+
},
|
|
83
|
+
data() {
|
|
84
|
+
return {
|
|
85
|
+
defaultUrl: '',
|
|
86
|
+
defaultPlugins: null
|
|
87
|
+
};
|
|
88
|
+
},
|
|
89
|
+
computed: {
|
|
90
|
+
wujieName() {
|
|
91
|
+
return this.name ? this.name : util.uuid(16);
|
|
92
|
+
},
|
|
93
|
+
defaultProps() {
|
|
94
|
+
let props = {};
|
|
95
|
+
if (this.url) {
|
|
96
|
+
let params = util.getParams({ url: this.url });
|
|
97
|
+
if (params) {
|
|
98
|
+
props = params;
|
|
99
|
+
}
|
|
100
|
+
let urls = this.url.split('?');
|
|
101
|
+
if (urls[0].indexOf('.js') > 1) {
|
|
102
|
+
if (this.dialog) {
|
|
103
|
+
props._dialog = true;
|
|
104
|
+
props._dialogId = this.wujieName;
|
|
105
|
+
}
|
|
106
|
+
props.appendTopBody = this.appendTopBody;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
return { ...props, ...this.$attrs, ...this.props };
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
watch: {
|
|
113
|
+
url: {
|
|
114
|
+
immediate: true,
|
|
115
|
+
handler(val) {
|
|
116
|
+
if (val) {
|
|
117
|
+
let urls = val.split('?');
|
|
118
|
+
let plugins = this.plugins;
|
|
119
|
+
let defaultUrl = '';
|
|
120
|
+
if (urls[0].indexOf('.js') > 1) {
|
|
121
|
+
defaultUrl = this.param
|
|
122
|
+
? util.urlJoinParams({
|
|
123
|
+
url: './primary.html',
|
|
124
|
+
param: this.param,
|
|
125
|
+
timestamp: true
|
|
126
|
+
})
|
|
127
|
+
: util.handlerUrl('./primary.html');
|
|
128
|
+
plugins.push({
|
|
129
|
+
jsBeforeLoaders: [{ src: val }]
|
|
130
|
+
});
|
|
131
|
+
} else {
|
|
132
|
+
defaultUrl = val;
|
|
133
|
+
}
|
|
134
|
+
this.defaultUrl = util.startWith(defaultUrl, 'http')
|
|
135
|
+
? defaultUrl
|
|
136
|
+
: this.host + defaultUrl;
|
|
137
|
+
this.defaultPlugins = plugins;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
created() {},
|
|
143
|
+
mounted() {},
|
|
144
|
+
methods: {}
|
|
145
|
+
};
|
|
146
|
+
</script>
|
package/src/.DS_Store
ADDED
|
Binary file
|
package/src/index.js
CHANGED
|
@@ -1,118 +1,118 @@
|
|
|
1
1
|
/* Automatically generated by './build/bin/build-entry.js' */
|
|
2
2
|
|
|
3
|
-
import Archives from '../packages/archives/index.js';
|
|
4
|
-
import Button from '../packages/button/index.js';
|
|
5
|
-
import ButtonGroup from '../packages/button-group/index.js';
|
|
6
|
-
import Calendar from '../packages/calendar/index.js';
|
|
7
|
-
import Calogin from '../packages/calogin/index.js';
|
|
8
|
-
import Card from '../packages/card/index.js';
|
|
9
|
-
import Cascader from '../packages/cascader/index.js';
|
|
10
|
-
import CheckboxGroup from '../packages/checkbox-group/index.js';
|
|
11
|
-
import Clients from '../packages/clients/index.js';
|
|
12
|
-
import DataTable from '../packages/data-table/index.js';
|
|
13
|
-
import DataTableForm from '../packages/data-table-form/index.js';
|
|
14
|
-
import DatePicker from '../packages/date-picker/index.js';
|
|
15
|
-
import Dialog from '../packages/dialog/index.js';
|
|
16
|
-
import EnableDrag from '../packages/enable-drag/index.js';
|
|
17
|
-
import Enterprise from '../packages/enterprise/index.js';
|
|
18
|
-
import ErrorPage from '../packages/error-page/index.js';
|
|
19
|
-
import Form from '../packages/form/index.js';
|
|
20
|
-
import Flow from '../packages/flow/index.js';
|
|
21
|
-
import FlowGroup from '../packages/flow-group/index.js';
|
|
22
|
-
import FlowList from '../packages/flow-list/index.js';
|
|
23
|
-
import HandleUser from '../packages/handle-user/index.js';
|
|
24
|
-
import Handler from '../packages/handler/index.js';
|
|
25
|
-
import Icon from '../packages/icon/index.js';
|
|
26
|
-
import Icons from '../packages/icons/index.js';
|
|
27
|
-
import Input from '../packages/input/index.js';
|
|
28
|
-
import InputNumber from '../packages/input-number/index.js';
|
|
29
|
-
import Label from '../packages/label/index.js';
|
|
30
|
-
import Layout from '../packages/layout/index.js';
|
|
31
|
-
import Login from '../packages/login/index.js';
|
|
32
|
-
import Main from '../packages/main/index.js';
|
|
33
|
-
import Menu from '../packages/menu/index.js';
|
|
34
|
-
import Nav from '../packages/nav/index.js';
|
|
35
|
-
import Notify from '../packages/notify/index.js';
|
|
36
|
-
import Pagination from '../packages/pagination/index.js';
|
|
37
|
-
import Page from '../packages/page/index.js';
|
|
38
|
-
import Player from '../packages/player/index.js';
|
|
39
|
-
import QrCode from '../packages/qr-code/index.js';
|
|
40
|
-
import RadioGroup from '../packages/radio-group/index.js';
|
|
41
|
-
import RetrialAuth from '../packages/retrial-auth/index.js';
|
|
42
|
-
import Select from '../packages/select/index.js';
|
|
43
|
-
import SelectGanged from '../packages/select-ganged/index.js';
|
|
44
|
-
import Selector from '../packages/selector/index.js';
|
|
45
|
-
import SelectorPanel from '../packages/selector-panel/index.js';
|
|
46
|
-
import Sizer from '../packages/sizer/index.js';
|
|
47
|
-
import Steps from '../packages/steps/index.js';
|
|
48
|
-
import Switch from '../packages/switch/index.js';
|
|
49
|
-
import Tabs from '../packages/tabs/index.js';
|
|
50
|
-
import TabsPanel from '../packages/tabs-panel/index.js';
|
|
51
|
-
import Tips from '../packages/tips/index.js';
|
|
52
|
-
import Tree from '../packages/tree/index.js';
|
|
53
|
-
import TreeGroup from '../packages/tree-group/index.js';
|
|
54
|
-
import Toolbar from '../packages/toolbar/index.js';
|
|
55
|
-
import TableForm from '../packages/table-form/index.js';
|
|
56
|
-
import Upload from '../packages/upload/index.js';
|
|
57
|
-
import Wujie from '../packages/wujie/index.js';
|
|
3
|
+
import Archives from '../packages/archives/index.js';
|
|
4
|
+
import Button from '../packages/button/index.js';
|
|
5
|
+
import ButtonGroup from '../packages/button-group/index.js';
|
|
6
|
+
import Calendar from '../packages/calendar/index.js';
|
|
7
|
+
import Calogin from '../packages/calogin/index.js';
|
|
8
|
+
import Card from '../packages/card/index.js';
|
|
9
|
+
import Cascader from '../packages/cascader/index.js';
|
|
10
|
+
import CheckboxGroup from '../packages/checkbox-group/index.js';
|
|
11
|
+
import Clients from '../packages/clients/index.js';
|
|
12
|
+
import DataTable from '../packages/data-table/index.js';
|
|
13
|
+
import DataTableForm from '../packages/data-table-form/index.js';
|
|
14
|
+
import DatePicker from '../packages/date-picker/index.js';
|
|
15
|
+
import Dialog from '../packages/dialog/index.js';
|
|
16
|
+
import EnableDrag from '../packages/enable-drag/index.js';
|
|
17
|
+
import Enterprise from '../packages/enterprise/index.js';
|
|
18
|
+
import ErrorPage from '../packages/error-page/index.js';
|
|
19
|
+
import Form from '../packages/form/index.js';
|
|
20
|
+
import Flow from '../packages/flow/index.js';
|
|
21
|
+
import FlowGroup from '../packages/flow-group/index.js';
|
|
22
|
+
import FlowList from '../packages/flow-list/index.js';
|
|
23
|
+
import HandleUser from '../packages/handle-user/index.js';
|
|
24
|
+
import Handler from '../packages/handler/index.js';
|
|
25
|
+
import Icon from '../packages/icon/index.js';
|
|
26
|
+
import Icons from '../packages/icons/index.js';
|
|
27
|
+
import Input from '../packages/input/index.js';
|
|
28
|
+
import InputNumber from '../packages/input-number/index.js';
|
|
29
|
+
import Label from '../packages/label/index.js';
|
|
30
|
+
import Layout from '../packages/layout/index.js';
|
|
31
|
+
import Login from '../packages/login/index.js';
|
|
32
|
+
import Main from '../packages/main/index.js';
|
|
33
|
+
import Menu from '../packages/menu/index.js';
|
|
34
|
+
import Nav from '../packages/nav/index.js';
|
|
35
|
+
import Notify from '../packages/notify/index.js';
|
|
36
|
+
import Pagination from '../packages/pagination/index.js';
|
|
37
|
+
import Page from '../packages/page/index.js';
|
|
38
|
+
import Player from '../packages/player/index.js';
|
|
39
|
+
import QrCode from '../packages/qr-code/index.js';
|
|
40
|
+
import RadioGroup from '../packages/radio-group/index.js';
|
|
41
|
+
import RetrialAuth from '../packages/retrial-auth/index.js';
|
|
42
|
+
import Select from '../packages/select/index.js';
|
|
43
|
+
import SelectGanged from '../packages/select-ganged/index.js';
|
|
44
|
+
import Selector from '../packages/selector/index.js';
|
|
45
|
+
import SelectorPanel from '../packages/selector-panel/index.js';
|
|
46
|
+
import Sizer from '../packages/sizer/index.js';
|
|
47
|
+
import Steps from '../packages/steps/index.js';
|
|
48
|
+
import Switch from '../packages/switch/index.js';
|
|
49
|
+
import Tabs from '../packages/tabs/index.js';
|
|
50
|
+
import TabsPanel from '../packages/tabs-panel/index.js';
|
|
51
|
+
import Tips from '../packages/tips/index.js';
|
|
52
|
+
import Tree from '../packages/tree/index.js';
|
|
53
|
+
import TreeGroup from '../packages/tree-group/index.js';
|
|
54
|
+
import Toolbar from '../packages/toolbar/index.js';
|
|
55
|
+
import TableForm from '../packages/table-form/index.js';
|
|
56
|
+
import Upload from '../packages/upload/index.js';
|
|
57
|
+
import Wujie from '../packages/wujie/index.js';
|
|
58
58
|
import Wxlogin from '../packages/wxlogin/index.js';
|
|
59
59
|
|
|
60
60
|
const components = [
|
|
61
|
-
Archives,
|
|
62
|
-
Button,
|
|
63
|
-
ButtonGroup,
|
|
64
|
-
Calendar,
|
|
65
|
-
Calogin,
|
|
66
|
-
Card,
|
|
67
|
-
Cascader,
|
|
68
|
-
CheckboxGroup,
|
|
69
|
-
Clients,
|
|
70
|
-
DataTable,
|
|
71
|
-
DataTableForm,
|
|
72
|
-
DatePicker,
|
|
73
|
-
Dialog,
|
|
74
|
-
EnableDrag,
|
|
75
|
-
Enterprise,
|
|
76
|
-
ErrorPage,
|
|
77
|
-
Form,
|
|
78
|
-
Flow,
|
|
79
|
-
FlowGroup,
|
|
80
|
-
FlowList,
|
|
81
|
-
HandleUser,
|
|
82
|
-
Handler,
|
|
83
|
-
Icon,
|
|
84
|
-
Icons,
|
|
85
|
-
Input,
|
|
86
|
-
InputNumber,
|
|
87
|
-
Label,
|
|
88
|
-
Layout,
|
|
89
|
-
Login,
|
|
90
|
-
Main,
|
|
91
|
-
Menu,
|
|
92
|
-
Nav,
|
|
93
|
-
Notify,
|
|
94
|
-
Pagination,
|
|
95
|
-
Page,
|
|
96
|
-
Player,
|
|
97
|
-
QrCode,
|
|
98
|
-
RadioGroup,
|
|
99
|
-
RetrialAuth,
|
|
100
|
-
Select,
|
|
101
|
-
SelectGanged,
|
|
102
|
-
Selector,
|
|
103
|
-
SelectorPanel,
|
|
104
|
-
Sizer,
|
|
105
|
-
Steps,
|
|
106
|
-
Switch,
|
|
107
|
-
Tabs,
|
|
108
|
-
TabsPanel,
|
|
109
|
-
Tips,
|
|
110
|
-
Tree,
|
|
111
|
-
TreeGroup,
|
|
112
|
-
Toolbar,
|
|
113
|
-
TableForm,
|
|
114
|
-
Upload,
|
|
115
|
-
Wujie,
|
|
61
|
+
Archives,
|
|
62
|
+
Button,
|
|
63
|
+
ButtonGroup,
|
|
64
|
+
Calendar,
|
|
65
|
+
Calogin,
|
|
66
|
+
Card,
|
|
67
|
+
Cascader,
|
|
68
|
+
CheckboxGroup,
|
|
69
|
+
Clients,
|
|
70
|
+
DataTable,
|
|
71
|
+
DataTableForm,
|
|
72
|
+
DatePicker,
|
|
73
|
+
Dialog,
|
|
74
|
+
EnableDrag,
|
|
75
|
+
Enterprise,
|
|
76
|
+
ErrorPage,
|
|
77
|
+
Form,
|
|
78
|
+
Flow,
|
|
79
|
+
FlowGroup,
|
|
80
|
+
FlowList,
|
|
81
|
+
HandleUser,
|
|
82
|
+
Handler,
|
|
83
|
+
Icon,
|
|
84
|
+
Icons,
|
|
85
|
+
Input,
|
|
86
|
+
InputNumber,
|
|
87
|
+
Label,
|
|
88
|
+
Layout,
|
|
89
|
+
Login,
|
|
90
|
+
Main,
|
|
91
|
+
Menu,
|
|
92
|
+
Nav,
|
|
93
|
+
Notify,
|
|
94
|
+
Pagination,
|
|
95
|
+
Page,
|
|
96
|
+
Player,
|
|
97
|
+
QrCode,
|
|
98
|
+
RadioGroup,
|
|
99
|
+
RetrialAuth,
|
|
100
|
+
Select,
|
|
101
|
+
SelectGanged,
|
|
102
|
+
Selector,
|
|
103
|
+
SelectorPanel,
|
|
104
|
+
Sizer,
|
|
105
|
+
Steps,
|
|
106
|
+
Switch,
|
|
107
|
+
Tabs,
|
|
108
|
+
TabsPanel,
|
|
109
|
+
Tips,
|
|
110
|
+
Tree,
|
|
111
|
+
TreeGroup,
|
|
112
|
+
Toolbar,
|
|
113
|
+
TableForm,
|
|
114
|
+
Upload,
|
|
115
|
+
Wujie,
|
|
116
116
|
Wxlogin
|
|
117
117
|
];
|
|
118
118
|
|
|
@@ -127,62 +127,62 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
export default {
|
|
130
|
-
version: '0.8.
|
|
130
|
+
version: '0.8.42',
|
|
131
131
|
install,
|
|
132
|
-
Archives,
|
|
133
|
-
Button,
|
|
134
|
-
ButtonGroup,
|
|
135
|
-
Calendar,
|
|
136
|
-
Calogin,
|
|
137
|
-
Card,
|
|
138
|
-
Cascader,
|
|
139
|
-
CheckboxGroup,
|
|
140
|
-
Clients,
|
|
141
|
-
DataTable,
|
|
142
|
-
DataTableForm,
|
|
143
|
-
DatePicker,
|
|
144
|
-
Dialog,
|
|
145
|
-
EnableDrag,
|
|
146
|
-
Enterprise,
|
|
147
|
-
ErrorPage,
|
|
148
|
-
Form,
|
|
149
|
-
Flow,
|
|
150
|
-
FlowGroup,
|
|
151
|
-
FlowList,
|
|
152
|
-
HandleUser,
|
|
153
|
-
Handler,
|
|
154
|
-
Icon,
|
|
155
|
-
Icons,
|
|
156
|
-
Input,
|
|
157
|
-
InputNumber,
|
|
158
|
-
Label,
|
|
159
|
-
Layout,
|
|
160
|
-
Login,
|
|
161
|
-
Main,
|
|
162
|
-
Menu,
|
|
163
|
-
Nav,
|
|
164
|
-
Notify,
|
|
165
|
-
Pagination,
|
|
166
|
-
Page,
|
|
167
|
-
Player,
|
|
168
|
-
QrCode,
|
|
169
|
-
RadioGroup,
|
|
170
|
-
RetrialAuth,
|
|
171
|
-
Select,
|
|
172
|
-
SelectGanged,
|
|
173
|
-
Selector,
|
|
174
|
-
SelectorPanel,
|
|
175
|
-
Sizer,
|
|
176
|
-
Steps,
|
|
177
|
-
Switch,
|
|
178
|
-
Tabs,
|
|
179
|
-
TabsPanel,
|
|
180
|
-
Tips,
|
|
181
|
-
Tree,
|
|
182
|
-
TreeGroup,
|
|
183
|
-
Toolbar,
|
|
184
|
-
TableForm,
|
|
185
|
-
Upload,
|
|
186
|
-
Wujie,
|
|
132
|
+
Archives,
|
|
133
|
+
Button,
|
|
134
|
+
ButtonGroup,
|
|
135
|
+
Calendar,
|
|
136
|
+
Calogin,
|
|
137
|
+
Card,
|
|
138
|
+
Cascader,
|
|
139
|
+
CheckboxGroup,
|
|
140
|
+
Clients,
|
|
141
|
+
DataTable,
|
|
142
|
+
DataTableForm,
|
|
143
|
+
DatePicker,
|
|
144
|
+
Dialog,
|
|
145
|
+
EnableDrag,
|
|
146
|
+
Enterprise,
|
|
147
|
+
ErrorPage,
|
|
148
|
+
Form,
|
|
149
|
+
Flow,
|
|
150
|
+
FlowGroup,
|
|
151
|
+
FlowList,
|
|
152
|
+
HandleUser,
|
|
153
|
+
Handler,
|
|
154
|
+
Icon,
|
|
155
|
+
Icons,
|
|
156
|
+
Input,
|
|
157
|
+
InputNumber,
|
|
158
|
+
Label,
|
|
159
|
+
Layout,
|
|
160
|
+
Login,
|
|
161
|
+
Main,
|
|
162
|
+
Menu,
|
|
163
|
+
Nav,
|
|
164
|
+
Notify,
|
|
165
|
+
Pagination,
|
|
166
|
+
Page,
|
|
167
|
+
Player,
|
|
168
|
+
QrCode,
|
|
169
|
+
RadioGroup,
|
|
170
|
+
RetrialAuth,
|
|
171
|
+
Select,
|
|
172
|
+
SelectGanged,
|
|
173
|
+
Selector,
|
|
174
|
+
SelectorPanel,
|
|
175
|
+
Sizer,
|
|
176
|
+
Steps,
|
|
177
|
+
Switch,
|
|
178
|
+
Tabs,
|
|
179
|
+
TabsPanel,
|
|
180
|
+
Tips,
|
|
181
|
+
Tree,
|
|
182
|
+
TreeGroup,
|
|
183
|
+
Toolbar,
|
|
184
|
+
TableForm,
|
|
185
|
+
Upload,
|
|
186
|
+
Wujie,
|
|
187
187
|
Wxlogin
|
|
188
188
|
};
|
|
Binary file
|