eoss-ui 0.4.29 → 0.4.31
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 +80 -77
- package/lib/button.js +80 -77
- package/lib/checkbox-group.js +80 -77
- package/lib/config/api.js +2 -0
- package/lib/data-table-form.js +80 -77
- package/lib/data-table.js +80 -77
- package/lib/date-picker.js +80 -77
- package/lib/dialog.js +80 -77
- package/lib/eoss-ui.common.js +276 -261
- package/lib/flow-group.js +85 -79
- package/lib/flow-list.js +83 -80
- package/lib/flow.js +176 -164
- package/lib/form.js +81 -78
- package/lib/handle-user.js +81 -78
- package/lib/handler.js +81 -78
- package/lib/index.js +1 -1
- package/lib/input-number.js +80 -77
- package/lib/input.js +80 -77
- package/lib/login.js +84 -81
- package/lib/main.js +95 -92
- package/lib/mainComp.js +95 -92
- package/lib/nav.js +80 -77
- package/lib/notify.js +85 -82
- package/lib/page.js +80 -77
- package/lib/player.js +80 -77
- package/lib/qr-code.js +80 -77
- package/lib/radio-group.js +80 -77
- package/lib/select-ganged.js +80 -77
- package/lib/select.js +80 -77
- package/lib/selector-panel.js +98 -95
- package/lib/selector.js +81 -78
- package/lib/sizer.js +82 -79
- package/lib/steps.js +80 -77
- package/lib/switch.js +80 -77
- package/lib/table-form.js +80 -77
- package/lib/tabs.js +80 -77
- package/lib/tips.js +81 -78
- package/lib/tree-group.js +80 -77
- package/lib/tree.js +81 -78
- package/lib/upload.js +96 -93
- package/lib/wujie.js +80 -77
- package/lib/wxlogin.js +80 -77
- package/package.json +1 -1
- package/packages/flow/src/component/CommonOpinions.vue +19 -12
- package/packages/flow/src/main.vue +6 -3
- package/packages/flow-group/src/main.vue +3 -0
- package/src/config/api.js +12 -5
- package/src/index.js +1 -1
- package/CHANGELOG.md +0 -929
|
@@ -525,6 +525,7 @@ export default {
|
|
|
525
525
|
}
|
|
526
526
|
},
|
|
527
527
|
handleSuccess() {
|
|
528
|
+
console.log(132)
|
|
528
529
|
if (this.closeDialog && this.esDialog) {
|
|
529
530
|
this.esDialog.handleClose();
|
|
530
531
|
}
|
|
@@ -537,6 +538,8 @@ export default {
|
|
|
537
538
|
this.$emit('success');
|
|
538
539
|
},
|
|
539
540
|
handleSave(id, event) {
|
|
541
|
+
console.log(13222)
|
|
542
|
+
|
|
540
543
|
if (this.closeDialog && this.esDialog) {
|
|
541
544
|
this.esDialog.handleClose();
|
|
542
545
|
}
|
package/src/config/api.js
CHANGED
|
@@ -8,7 +8,8 @@ export const switchUserTo = '/sso2/signIn/auth/switchTo'; // 切换登录用户;
|
|
|
8
8
|
export const changeImg = '/sso2/signIn/auth/changeImg'; // 获取图片验证码
|
|
9
9
|
export const getLoginCode = '/sso2/signIn/auth/getLoginCode'; // 登录获取短信、邮箱验证码
|
|
10
10
|
export const doCodeLogin = '/sso2/signIn/auth/doCodeLogin'; // 短信、邮箱验证码登录
|
|
11
|
-
export const updateCode =
|
|
11
|
+
export const updateCode =
|
|
12
|
+
'/sso2/signIn/assembly/getSmsModifyPassVerificationCode'; // 获取短信验证码(修改密码)
|
|
12
13
|
export const getModifyPassCode = '/sso2/signIn/assembly/getModifyPassCode'; // 获取修改密码的短信、邮箱验证码
|
|
13
14
|
export const codeModifyPass = '/sso2/signIn/assembly/codeModifyPass'; // 验证码重置密码
|
|
14
15
|
export const authCenter = '/sso2/authCenter/login'; // 单点登录认证中心
|
|
@@ -33,7 +34,8 @@ export const sysMsgPage = '/main2/notify/sysMsgPage'; // 获取系统消息
|
|
|
33
34
|
export const ignoreSysMsg = '/main2/notify/ignoreSysMsg'; // 忽略系统消息
|
|
34
35
|
export const ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消息
|
|
35
36
|
// 附件相关
|
|
36
|
-
export const getAdjunctProperties =
|
|
37
|
+
export const getAdjunctProperties =
|
|
38
|
+
'/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
|
|
37
39
|
export const uploads = '/main2/mecpfileManagement/upload'; // 上传接口
|
|
38
40
|
export const uploadOnlyOne = '/main2/mecpfileManagement/uploadOnlyOne'; // 上传接口(覆盖之前文件)
|
|
39
41
|
export const getAdjunctFileInfos =
|
|
@@ -98,8 +100,10 @@ export const getNodeInfo = '/oa/task/taskHandle/getNodeInfo.dhtml';
|
|
|
98
100
|
// 系统消息
|
|
99
101
|
// 通知方式
|
|
100
102
|
export const findCodeValues = '/bpm/bpmCommon/findCodeValues';
|
|
103
|
+
export const findSysParam = '/bpm/bpmCommon/findSysParam';
|
|
101
104
|
export const findSysCodes =
|
|
102
105
|
'/oa/task/taskHandle/getDefaultNotificationType.dhtml';
|
|
106
|
+
|
|
103
107
|
// 获取通知消息
|
|
104
108
|
export const getNotificationMsg =
|
|
105
109
|
'/oa/task/taskHandle/getNotificationMsg.dhtml';
|
|
@@ -150,7 +154,8 @@ export const wss = window.wss || '/main2/ws';
|
|
|
150
154
|
// 订阅
|
|
151
155
|
export const topic = '/user/topic/all';
|
|
152
156
|
// 流程预设
|
|
153
|
-
export const getPresetCustomInfo =
|
|
157
|
+
export const getPresetCustomInfo =
|
|
158
|
+
'/oa/task/taskHandle/getPresetCustomInfo.dhtml';
|
|
154
159
|
// 办理人预设
|
|
155
160
|
export const getPresetNodeInfo = '/oa/task/taskHandle/getPresetNodeInfo.dhtml';
|
|
156
161
|
// 获取转办页面数据
|
|
@@ -164,7 +169,8 @@ export const deletePresetInfo = '/bpm/task/taskHandle/deletePresetInfo.dhtml';
|
|
|
164
169
|
// 流程列表
|
|
165
170
|
export const historyListJson = '/oa/pendedhistoryManager/historyListJson.dhtml';
|
|
166
171
|
// 获取流程列表配置
|
|
167
|
-
export const pendedhistoryListJson =
|
|
172
|
+
export const pendedhistoryListJson =
|
|
173
|
+
'/oa/pendedhistoryManager/pendedhistoryListJson';
|
|
168
174
|
// 获取催办列表
|
|
169
175
|
export const pressListJson = '/oa/wfUrgeRecord/listJson.dhtml';
|
|
170
176
|
// 删除流程列表节点
|
|
@@ -196,7 +202,8 @@ export const taskUnionSeal = '/bpm/task/taskHandle/taskUnionSeal.dhtml';
|
|
|
196
202
|
// 报送两办
|
|
197
203
|
export const toTwoOfficesDispatch = '/bpm/bpmBackend/toTwoOfficesDispatch';
|
|
198
204
|
// 报送两办提交
|
|
199
|
-
export const twoOfficesDispatch =
|
|
205
|
+
export const twoOfficesDispatch =
|
|
206
|
+
'/bpm/task/taskHandle/twoOfficesDispatch.dhtml';
|
|
200
207
|
|
|
201
208
|
// notifySend 消息发送
|
|
202
209
|
export const sendList = '/notify2/notifySendRecord/listJson';
|