eoss-ui 0.6.45 → 0.6.46
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 +22 -17
- package/lib/button.js +22 -17
- package/lib/checkbox-group.js +22 -17
- package/lib/config/api.js +4 -1
- package/lib/data-table-form.js +22 -17
- package/lib/data-table.js +22 -17
- package/lib/date-picker.js +22 -17
- package/lib/dialog.js +22 -17
- package/lib/enable-drag.js +4 -13
- package/lib/eoss-ui.common.js +783 -158
- package/lib/flow-group.js +22 -17
- package/lib/flow-list.js +22 -17
- package/lib/flow.js +468 -32
- package/lib/form.js +43 -47
- package/lib/handle-user.js +22 -17
- package/lib/handler.js +46 -25
- package/lib/icon.js +22 -17
- package/lib/index.js +1 -1
- package/lib/input-number.js +22 -17
- package/lib/input.js +22 -17
- package/lib/login.js +22 -17
- package/lib/main.js +228 -53
- package/lib/nav.js +22 -17
- package/lib/notify.js +22 -17
- package/lib/page.js +22 -17
- package/lib/pagination.js +22 -17
- package/lib/player.js +22 -17
- package/lib/qr-code.js +22 -17
- package/lib/radio-group.js +22 -17
- package/lib/retrial-auth.js +22 -17
- package/lib/select-ganged.js +22 -17
- package/lib/select.js +22 -17
- package/lib/selector-panel.js +22 -17
- package/lib/selector.js +22 -17
- package/lib/sizer.js +22 -17
- package/lib/steps.js +22 -17
- package/lib/switch.js +22 -17
- package/lib/table-form.js +47 -22
- package/lib/tabs.js +22 -17
- package/lib/tips.js +22 -17
- package/lib/tree-group.js +22 -17
- package/lib/tree.js +22 -17
- package/lib/upload.js +32 -26
- package/lib/wujie.js +22 -17
- package/lib/wxlogin.js +22 -17
- package/package.json +2 -2
- package/packages/enable-drag/src/main.vue +1 -8
- package/packages/flow/src/main.vue +20 -8
- package/packages/flow/src/supervise.vue +138 -0
- package/packages/form/src/main.vue +3 -4
- package/packages/form/src/table.vue +6 -0
- package/packages/handler/src/main.vue +18 -1
- package/packages/main/src/default/index.vue +231 -67
- package/packages/main/src/simplicity/index.vue +9 -4
- package/packages/upload/src/main.vue +1 -0
- package/src/config/api.js +4 -1
- package/src/index.js +160 -160
- package/packages/.DS_Store +0 -0
- package/packages/data-table/.DS_Store +0 -0
- package/packages/data-table-form/.DS_Store +0 -0
- package/packages/error-page/.DS_Store +0 -0
- package/packages/flow/.DS_Store +0 -0
- package/packages/form/.DS_Store +0 -0
- package/packages/login/.DS_Store +0 -0
- package/packages/main/.DS_Store +0 -0
- package/packages/main/src/.DS_Store +0 -0
- package/packages/selector/.DS_Store +0 -0
- package/packages/selector-panel/.DS_Store +0 -0
- package/packages/sizer/.DS_Store +0 -0
- package/packages/tabs/.DS_Store +0 -0
- package/packages/theme-chalk/src/.DS_Store +0 -0
- package/packages/upload/.DS_Store +0 -0
- package/src/.DS_Store +0 -0
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
<img :src="_aiConfig.icon"
|
|
92
92
|
class="es-simplicity-ai-icon"
|
|
93
93
|
@click="handlerSetDrawer(_aiConfig, 'ai')"
|
|
94
|
-
|
|
94
|
+
/>
|
|
95
95
|
</div>
|
|
96
96
|
</div>
|
|
97
97
|
<div class="es-simplicity-main">
|
|
@@ -855,7 +855,7 @@ export default {
|
|
|
855
855
|
}
|
|
856
856
|
}
|
|
857
857
|
if (results[i].singleLogout) {
|
|
858
|
-
this.singleLogout = results[i].singleLogout;
|
|
858
|
+
this.singleLogout = results[i].singleLogout.split(',');
|
|
859
859
|
}
|
|
860
860
|
if (results[i].userInfoContents) {
|
|
861
861
|
this.userInfoContents = results[i].userInfoContents;
|
|
@@ -1809,11 +1809,16 @@ export default {
|
|
|
1809
1809
|
.then(() => {
|
|
1810
1810
|
let iframes = document.getElementsByTagName('iframe');
|
|
1811
1811
|
for (let i = 0; i < iframes.length; i++) {
|
|
1812
|
-
iframes[i]
|
|
1812
|
+
let src = iframes[i] ? iframes[i].src : null;
|
|
1813
|
+
let origin = util.win.location.origin;
|
|
1814
|
+
if (src && util.startWith(src, 'http') && src.indexOf(origin) === -1) {
|
|
1815
|
+
iframes[i] && iframes[i].contentWindow.postMessage('logout', '*');
|
|
1816
|
+
}
|
|
1817
|
+
break;
|
|
1813
1818
|
}
|
|
1814
1819
|
if (this.singleLogout) {
|
|
1815
1820
|
for (let i = 0; i < this.singleLogout.length; i++) {
|
|
1816
|
-
let iframe = document.
|
|
1821
|
+
let iframe = document.createElement('iframe');
|
|
1817
1822
|
iframe.style.display = 'none';
|
|
1818
1823
|
iframe.src = this.singleLogout[i];
|
|
1819
1824
|
document.body.appendChild(iframe);
|
package/src/config/api.js
CHANGED
|
@@ -205,7 +205,10 @@ export const toTaskTakeAdvice = '/bpm/bpmBackend/toTaskTakeAdvice';
|
|
|
205
205
|
export const taskTakeAdvice = '/bpm/task/taskHandle/taskTakeAdvice.dhtml';
|
|
206
206
|
// 稿件递送
|
|
207
207
|
export const toTaskStartDraft = '/bpm/bpmBackend/totaskStartDraft';
|
|
208
|
-
|
|
208
|
+
// 获取督办页面信息
|
|
209
|
+
export const toTaskSupervise = '/bpm/bpmBackend/toTaskSupervise';
|
|
210
|
+
// 督办提交
|
|
211
|
+
export const toTaskSuperviseSub = '/bpm/bpmBackend/taskSupervise';
|
|
209
212
|
// 稿件递送提交接口
|
|
210
213
|
// export const taskStartDraft = flowPendingPrefix + '/task/taskHandle/taskStartDraft.dhtml';
|
|
211
214
|
export const taskStartDraft = '/archives/task/taskHandle/taskStartDraft.dhtml';
|
package/src/index.js
CHANGED
|
@@ -1,114 +1,114 @@
|
|
|
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 EnableDrag from '../packages/enable-drag/index.js';
|
|
15
|
-
import Enterprise from '../packages/enterprise/index.js';
|
|
16
|
-
import ErrorPage from '../packages/error-page/index.js';
|
|
17
|
-
import Form from '../packages/form/index.js';
|
|
18
|
-
import Flow from '../packages/flow/index.js';
|
|
19
|
-
import FlowGroup from '../packages/flow-group/index.js';
|
|
20
|
-
import FlowList from '../packages/flow-list/index.js';
|
|
21
|
-
import HandleUser from '../packages/handle-user/index.js';
|
|
22
|
-
import Handler from '../packages/handler/index.js';
|
|
23
|
-
import Icon from '../packages/icon/index.js';
|
|
24
|
-
import Icons from '../packages/icons/index.js';
|
|
25
|
-
import Input from '../packages/input/index.js';
|
|
26
|
-
import InputNumber from '../packages/input-number/index.js';
|
|
27
|
-
import Label from '../packages/label/index.js';
|
|
28
|
-
import Layout from '../packages/layout/index.js';
|
|
29
|
-
import Login from '../packages/login/index.js';
|
|
30
|
-
import Main from '../packages/main/index.js';
|
|
31
|
-
import Menu from '../packages/menu/index.js';
|
|
32
|
-
import Nav from '../packages/nav/index.js';
|
|
33
|
-
import Notify from '../packages/notify/index.js';
|
|
34
|
-
import Pagination from '../packages/pagination/index.js';
|
|
35
|
-
import Page from '../packages/page/index.js';
|
|
36
|
-
import Player from '../packages/player/index.js';
|
|
37
|
-
import QrCode from '../packages/qr-code/index.js';
|
|
38
|
-
import RadioGroup from '../packages/radio-group/index.js';
|
|
39
|
-
import RetrialAuth from '../packages/retrial-auth/index.js';
|
|
40
|
-
import Select from '../packages/select/index.js';
|
|
41
|
-
import SelectGanged from '../packages/select-ganged/index.js';
|
|
42
|
-
import Selector from '../packages/selector/index.js';
|
|
43
|
-
import SelectorPanel from '../packages/selector-panel/index.js';
|
|
44
|
-
import Sizer from '../packages/sizer/index.js';
|
|
45
|
-
import Steps from '../packages/steps/index.js';
|
|
46
|
-
import Switch from '../packages/switch/index.js';
|
|
47
|
-
import Tabs from '../packages/tabs/index.js';
|
|
48
|
-
import TabsPanel from '../packages/tabs-panel/index.js';
|
|
49
|
-
import Tips from '../packages/tips/index.js';
|
|
50
|
-
import Tree from '../packages/tree/index.js';
|
|
51
|
-
import TreeGroup from '../packages/tree-group/index.js';
|
|
52
|
-
import Toolbar from '../packages/toolbar/index.js';
|
|
53
|
-
import TableForm from '../packages/table-form/index.js';
|
|
54
|
-
import Upload from '../packages/upload/index.js';
|
|
55
|
-
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 EnableDrag from '../packages/enable-drag/index.js';
|
|
15
|
+
import Enterprise from '../packages/enterprise/index.js';
|
|
16
|
+
import ErrorPage from '../packages/error-page/index.js';
|
|
17
|
+
import Form from '../packages/form/index.js';
|
|
18
|
+
import Flow from '../packages/flow/index.js';
|
|
19
|
+
import FlowGroup from '../packages/flow-group/index.js';
|
|
20
|
+
import FlowList from '../packages/flow-list/index.js';
|
|
21
|
+
import HandleUser from '../packages/handle-user/index.js';
|
|
22
|
+
import Handler from '../packages/handler/index.js';
|
|
23
|
+
import Icon from '../packages/icon/index.js';
|
|
24
|
+
import Icons from '../packages/icons/index.js';
|
|
25
|
+
import Input from '../packages/input/index.js';
|
|
26
|
+
import InputNumber from '../packages/input-number/index.js';
|
|
27
|
+
import Label from '../packages/label/index.js';
|
|
28
|
+
import Layout from '../packages/layout/index.js';
|
|
29
|
+
import Login from '../packages/login/index.js';
|
|
30
|
+
import Main from '../packages/main/index.js';
|
|
31
|
+
import Menu from '../packages/menu/index.js';
|
|
32
|
+
import Nav from '../packages/nav/index.js';
|
|
33
|
+
import Notify from '../packages/notify/index.js';
|
|
34
|
+
import Pagination from '../packages/pagination/index.js';
|
|
35
|
+
import Page from '../packages/page/index.js';
|
|
36
|
+
import Player from '../packages/player/index.js';
|
|
37
|
+
import QrCode from '../packages/qr-code/index.js';
|
|
38
|
+
import RadioGroup from '../packages/radio-group/index.js';
|
|
39
|
+
import RetrialAuth from '../packages/retrial-auth/index.js';
|
|
40
|
+
import Select from '../packages/select/index.js';
|
|
41
|
+
import SelectGanged from '../packages/select-ganged/index.js';
|
|
42
|
+
import Selector from '../packages/selector/index.js';
|
|
43
|
+
import SelectorPanel from '../packages/selector-panel/index.js';
|
|
44
|
+
import Sizer from '../packages/sizer/index.js';
|
|
45
|
+
import Steps from '../packages/steps/index.js';
|
|
46
|
+
import Switch from '../packages/switch/index.js';
|
|
47
|
+
import Tabs from '../packages/tabs/index.js';
|
|
48
|
+
import TabsPanel from '../packages/tabs-panel/index.js';
|
|
49
|
+
import Tips from '../packages/tips/index.js';
|
|
50
|
+
import Tree from '../packages/tree/index.js';
|
|
51
|
+
import TreeGroup from '../packages/tree-group/index.js';
|
|
52
|
+
import Toolbar from '../packages/toolbar/index.js';
|
|
53
|
+
import TableForm from '../packages/table-form/index.js';
|
|
54
|
+
import Upload from '../packages/upload/index.js';
|
|
55
|
+
import Wujie from '../packages/wujie/index.js';
|
|
56
56
|
import Wxlogin from '../packages/wxlogin/index.js';
|
|
57
57
|
|
|
58
58
|
const components = [
|
|
59
|
-
Button,
|
|
60
|
-
ButtonGroup,
|
|
61
|
-
Calendar,
|
|
62
|
-
Card,
|
|
63
|
-
Cascader,
|
|
64
|
-
CheckboxGroup,
|
|
65
|
-
Clients,
|
|
66
|
-
DataTable,
|
|
67
|
-
DataTableForm,
|
|
68
|
-
DatePicker,
|
|
69
|
-
Dialog,
|
|
70
|
-
EnableDrag,
|
|
71
|
-
Enterprise,
|
|
72
|
-
ErrorPage,
|
|
73
|
-
Form,
|
|
74
|
-
Flow,
|
|
75
|
-
FlowGroup,
|
|
76
|
-
FlowList,
|
|
77
|
-
HandleUser,
|
|
78
|
-
Handler,
|
|
79
|
-
Icon,
|
|
80
|
-
Icons,
|
|
81
|
-
Input,
|
|
82
|
-
InputNumber,
|
|
83
|
-
Label,
|
|
84
|
-
Layout,
|
|
85
|
-
Login,
|
|
86
|
-
Main,
|
|
87
|
-
Menu,
|
|
88
|
-
Nav,
|
|
89
|
-
Notify,
|
|
90
|
-
Pagination,
|
|
91
|
-
Page,
|
|
92
|
-
Player,
|
|
93
|
-
QrCode,
|
|
94
|
-
RadioGroup,
|
|
95
|
-
RetrialAuth,
|
|
96
|
-
Select,
|
|
97
|
-
SelectGanged,
|
|
98
|
-
Selector,
|
|
99
|
-
SelectorPanel,
|
|
100
|
-
Sizer,
|
|
101
|
-
Steps,
|
|
102
|
-
Switch,
|
|
103
|
-
Tabs,
|
|
104
|
-
TabsPanel,
|
|
105
|
-
Tips,
|
|
106
|
-
Tree,
|
|
107
|
-
TreeGroup,
|
|
108
|
-
Toolbar,
|
|
109
|
-
TableForm,
|
|
110
|
-
Upload,
|
|
111
|
-
Wujie,
|
|
59
|
+
Button,
|
|
60
|
+
ButtonGroup,
|
|
61
|
+
Calendar,
|
|
62
|
+
Card,
|
|
63
|
+
Cascader,
|
|
64
|
+
CheckboxGroup,
|
|
65
|
+
Clients,
|
|
66
|
+
DataTable,
|
|
67
|
+
DataTableForm,
|
|
68
|
+
DatePicker,
|
|
69
|
+
Dialog,
|
|
70
|
+
EnableDrag,
|
|
71
|
+
Enterprise,
|
|
72
|
+
ErrorPage,
|
|
73
|
+
Form,
|
|
74
|
+
Flow,
|
|
75
|
+
FlowGroup,
|
|
76
|
+
FlowList,
|
|
77
|
+
HandleUser,
|
|
78
|
+
Handler,
|
|
79
|
+
Icon,
|
|
80
|
+
Icons,
|
|
81
|
+
Input,
|
|
82
|
+
InputNumber,
|
|
83
|
+
Label,
|
|
84
|
+
Layout,
|
|
85
|
+
Login,
|
|
86
|
+
Main,
|
|
87
|
+
Menu,
|
|
88
|
+
Nav,
|
|
89
|
+
Notify,
|
|
90
|
+
Pagination,
|
|
91
|
+
Page,
|
|
92
|
+
Player,
|
|
93
|
+
QrCode,
|
|
94
|
+
RadioGroup,
|
|
95
|
+
RetrialAuth,
|
|
96
|
+
Select,
|
|
97
|
+
SelectGanged,
|
|
98
|
+
Selector,
|
|
99
|
+
SelectorPanel,
|
|
100
|
+
Sizer,
|
|
101
|
+
Steps,
|
|
102
|
+
Switch,
|
|
103
|
+
Tabs,
|
|
104
|
+
TabsPanel,
|
|
105
|
+
Tips,
|
|
106
|
+
Tree,
|
|
107
|
+
TreeGroup,
|
|
108
|
+
Toolbar,
|
|
109
|
+
TableForm,
|
|
110
|
+
Upload,
|
|
111
|
+
Wujie,
|
|
112
112
|
Wxlogin
|
|
113
113
|
];
|
|
114
114
|
|
|
@@ -123,60 +123,60 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
export default {
|
|
126
|
-
version: '0.6.
|
|
126
|
+
version: '0.6.46',
|
|
127
127
|
install,
|
|
128
|
-
Button,
|
|
129
|
-
ButtonGroup,
|
|
130
|
-
Calendar,
|
|
131
|
-
Card,
|
|
132
|
-
Cascader,
|
|
133
|
-
CheckboxGroup,
|
|
134
|
-
Clients,
|
|
135
|
-
DataTable,
|
|
136
|
-
DataTableForm,
|
|
137
|
-
DatePicker,
|
|
138
|
-
Dialog,
|
|
139
|
-
EnableDrag,
|
|
140
|
-
Enterprise,
|
|
141
|
-
ErrorPage,
|
|
142
|
-
Form,
|
|
143
|
-
Flow,
|
|
144
|
-
FlowGroup,
|
|
145
|
-
FlowList,
|
|
146
|
-
HandleUser,
|
|
147
|
-
Handler,
|
|
148
|
-
Icon,
|
|
149
|
-
Icons,
|
|
150
|
-
Input,
|
|
151
|
-
InputNumber,
|
|
152
|
-
Label,
|
|
153
|
-
Layout,
|
|
154
|
-
Login,
|
|
155
|
-
Main,
|
|
156
|
-
Menu,
|
|
157
|
-
Nav,
|
|
158
|
-
Notify,
|
|
159
|
-
Pagination,
|
|
160
|
-
Page,
|
|
161
|
-
Player,
|
|
162
|
-
QrCode,
|
|
163
|
-
RadioGroup,
|
|
164
|
-
RetrialAuth,
|
|
165
|
-
Select,
|
|
166
|
-
SelectGanged,
|
|
167
|
-
Selector,
|
|
168
|
-
SelectorPanel,
|
|
169
|
-
Sizer,
|
|
170
|
-
Steps,
|
|
171
|
-
Switch,
|
|
172
|
-
Tabs,
|
|
173
|
-
TabsPanel,
|
|
174
|
-
Tips,
|
|
175
|
-
Tree,
|
|
176
|
-
TreeGroup,
|
|
177
|
-
Toolbar,
|
|
178
|
-
TableForm,
|
|
179
|
-
Upload,
|
|
180
|
-
Wujie,
|
|
128
|
+
Button,
|
|
129
|
+
ButtonGroup,
|
|
130
|
+
Calendar,
|
|
131
|
+
Card,
|
|
132
|
+
Cascader,
|
|
133
|
+
CheckboxGroup,
|
|
134
|
+
Clients,
|
|
135
|
+
DataTable,
|
|
136
|
+
DataTableForm,
|
|
137
|
+
DatePicker,
|
|
138
|
+
Dialog,
|
|
139
|
+
EnableDrag,
|
|
140
|
+
Enterprise,
|
|
141
|
+
ErrorPage,
|
|
142
|
+
Form,
|
|
143
|
+
Flow,
|
|
144
|
+
FlowGroup,
|
|
145
|
+
FlowList,
|
|
146
|
+
HandleUser,
|
|
147
|
+
Handler,
|
|
148
|
+
Icon,
|
|
149
|
+
Icons,
|
|
150
|
+
Input,
|
|
151
|
+
InputNumber,
|
|
152
|
+
Label,
|
|
153
|
+
Layout,
|
|
154
|
+
Login,
|
|
155
|
+
Main,
|
|
156
|
+
Menu,
|
|
157
|
+
Nav,
|
|
158
|
+
Notify,
|
|
159
|
+
Pagination,
|
|
160
|
+
Page,
|
|
161
|
+
Player,
|
|
162
|
+
QrCode,
|
|
163
|
+
RadioGroup,
|
|
164
|
+
RetrialAuth,
|
|
165
|
+
Select,
|
|
166
|
+
SelectGanged,
|
|
167
|
+
Selector,
|
|
168
|
+
SelectorPanel,
|
|
169
|
+
Sizer,
|
|
170
|
+
Steps,
|
|
171
|
+
Switch,
|
|
172
|
+
Tabs,
|
|
173
|
+
TabsPanel,
|
|
174
|
+
Tips,
|
|
175
|
+
Tree,
|
|
176
|
+
TreeGroup,
|
|
177
|
+
Toolbar,
|
|
178
|
+
TableForm,
|
|
179
|
+
Upload,
|
|
180
|
+
Wujie,
|
|
181
181
|
Wxlogin
|
|
182
182
|
};
|
package/packages/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/packages/flow/.DS_Store
DELETED
|
Binary file
|
package/packages/form/.DS_Store
DELETED
|
Binary file
|
package/packages/login/.DS_Store
DELETED
|
Binary file
|
package/packages/main/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/packages/sizer/.DS_Store
DELETED
|
Binary file
|
package/packages/tabs/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/src/.DS_Store
DELETED
|
Binary file
|