eoss-ui 0.6.89 → 0.6.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 +103 -101
- package/lib/button.js +103 -101
- package/lib/calogin.js +103 -101
- package/lib/checkbox-group.js +104 -102
- package/lib/config/api.js +2 -1
- package/lib/data-table-form.js +104 -102
- package/lib/data-table.js +105 -103
- package/lib/date-picker.js +103 -101
- package/lib/dialog.js +103 -101
- package/lib/eoss-ui.common.js +383 -301
- package/lib/flow-group.js +103 -101
- package/lib/flow-list.js +109 -107
- package/lib/flow.js +258 -186
- package/lib/form.js +103 -101
- package/lib/handle-user.js +104 -102
- package/lib/handler.js +104 -102
- package/lib/icon.js +104 -102
- package/lib/index.js +1 -1
- package/lib/input-number.js +103 -101
- package/lib/input.js +103 -101
- package/lib/login.js +109 -107
- package/lib/main.js +136 -134
- package/lib/nav.js +103 -101
- package/lib/notify.js +106 -104
- package/lib/page.js +103 -101
- package/lib/pagination.js +103 -101
- package/lib/player.js +103 -101
- package/lib/qr-code.js +103 -101
- package/lib/radio-group.js +104 -102
- package/lib/retrial-auth.js +106 -104
- package/lib/select-ganged.js +104 -102
- package/lib/select.js +104 -102
- package/lib/selector-panel.js +121 -119
- package/lib/selector.js +122 -110
- package/lib/sizer.js +105 -103
- package/lib/steps.js +103 -101
- package/lib/switch.js +103 -101
- package/lib/table-form.js +103 -101
- package/lib/tabs.js +103 -101
- package/lib/tips.js +104 -102
- package/lib/tree-group.js +103 -101
- package/lib/tree.js +104 -102
- package/lib/upload.js +113 -111
- package/lib/wujie.js +103 -101
- package/lib/wxlogin.js +103 -101
- package/package.json +1 -1
- package/packages/flow/src/main.vue +7 -2
- package/packages/flow/src/processForm.vue +12 -3
- package/packages/flow/src/reset.vue +33 -10
- package/packages/selector/src/main.vue +15 -9
- package/src/config/api.js +25 -12
- package/src/index.js +1 -1
package/src/config/api.js
CHANGED
|
@@ -162,9 +162,11 @@ export const toStartTaskRead = '/bpm/bpmBackend/toStartTaskRead';
|
|
|
162
162
|
// 获取分阅办理页面
|
|
163
163
|
export const toStartTaskReadIndex = '/bpm/bpmBackend/toTaskReadIndex';
|
|
164
164
|
// 分阅提交
|
|
165
|
-
export const taskReadHtml =
|
|
165
|
+
export const taskReadHtml =
|
|
166
|
+
flowPendingPrefix + '/task/taskHandle/taskRead.dhtml';
|
|
166
167
|
// 驳回并办结
|
|
167
|
-
export const rejectAndEnd =
|
|
168
|
+
export const rejectAndEnd =
|
|
169
|
+
flowPendingPrefix + '/task/taskHandle/rejectAndEnd.dhtml';
|
|
168
170
|
// 核稿通知
|
|
169
171
|
export const toSendMsg = '/bpm/bpmBackend/toSendMsgIndex';
|
|
170
172
|
// 核稿通知提交
|
|
@@ -192,11 +194,13 @@ export const getPresetNodeInfo =
|
|
|
192
194
|
// 获取转办页面数据
|
|
193
195
|
export const toTaskTransferIndex = '/bpm/bpmBackend/toTaskTransferIndex';
|
|
194
196
|
// 转办提交按钮
|
|
195
|
-
export const taskTransfer =
|
|
197
|
+
export const taskTransfer =
|
|
198
|
+
flowPendingPrefix + '/task/taskHandle/taskTransfer.dhtml';
|
|
196
199
|
// 流程预设列表
|
|
197
200
|
export const toPresetInfoListIndex = '/bpm/bpmBackend/toPresetInfoListIndex';
|
|
198
201
|
// 流程预设置为失效
|
|
199
|
-
export const deletePresetInfo =
|
|
202
|
+
export const deletePresetInfo =
|
|
203
|
+
flowPendingPrefix + '/task/taskHandle/deletePresetInfo.dhtml';
|
|
200
204
|
// 流程列表
|
|
201
205
|
export const historyListJson =
|
|
202
206
|
flowPendingPrefix + '/pendedhistoryManager/historyListJson.dhtml';
|
|
@@ -209,15 +213,18 @@ export const pressListJson = flowPendingPrefix + '/wfUrgeRecord/listJson.dhtml';
|
|
|
209
213
|
export const deleteFlow =
|
|
210
214
|
flowPendingPrefix + '/pendedhistoryManager/delete.dhtml';
|
|
211
215
|
// 是否允许启动子流程(必经节点)
|
|
212
|
-
export const isCanStartSubFlow =
|
|
216
|
+
export const isCanStartSubFlow =
|
|
217
|
+
flowPendingPrefix + '/task/taskHandle/isCanStartSubFlow.dhtml';
|
|
213
218
|
// 联合审核
|
|
214
219
|
export const toTaskUnionExamine = '/bpm/bpmBackend/toTaskUnionExamine';
|
|
215
220
|
// 联合审核提交
|
|
216
|
-
export const taskUnionExamine =
|
|
221
|
+
export const taskUnionExamine =
|
|
222
|
+
flowPendingPrefix + '/task/taskHandle/taskUnionExamine.dhtml';
|
|
217
223
|
// 征求意见
|
|
218
224
|
export const toTaskTakeAdvice = '/bpm/bpmBackend/toTaskTakeAdvice';
|
|
219
225
|
// 征求意见提交
|
|
220
|
-
export const taskTakeAdvice =
|
|
226
|
+
export const taskTakeAdvice =
|
|
227
|
+
flowPendingPrefix + '/task/taskHandle/taskTakeAdvice.dhtml';
|
|
221
228
|
// 稿件递送
|
|
222
229
|
export const toTaskStartDraft = '/bpm/bpmBackend/totaskStartDraft';
|
|
223
230
|
// 获取督办页面信息
|
|
@@ -226,7 +233,8 @@ export const toTaskSupervise = '/bpm/bpmBackend/toTaskSupervise';
|
|
|
226
233
|
export const toTaskSuperviseSub = '/bpm/bpmBackend/taskSupervise';
|
|
227
234
|
// 稿件递送提交接口
|
|
228
235
|
// export const taskStartDraft = flowPendingPrefix + '/task/taskHandle/taskStartDraft.dhtml';
|
|
229
|
-
export const taskStartDraft =
|
|
236
|
+
export const taskStartDraft =
|
|
237
|
+
flowPendingPrefix + '/task/taskHandle/taskStartDraft.dhtml';
|
|
230
238
|
// 复核
|
|
231
239
|
export const toTaskReview = '/bpm/bpmBackend/toTaskReview';
|
|
232
240
|
// 复核提交
|
|
@@ -235,7 +243,8 @@ export const taskReview =
|
|
|
235
243
|
// 联合用印
|
|
236
244
|
export const toTaskUnionSeal = '/bpm/bpmBackend/toTaskUnionSeal';
|
|
237
245
|
// 联合用印提交
|
|
238
|
-
export const taskUnionSeal =
|
|
246
|
+
export const taskUnionSeal =
|
|
247
|
+
flowPendingPrefix + '/task/taskHandle/taskUnionSeal.dhtml';
|
|
239
248
|
// 报送两办
|
|
240
249
|
export const toTwoOfficesDispatch = '/bpm/bpmBackend/toTwoOfficesDispatch';
|
|
241
250
|
// 报送两办提交
|
|
@@ -244,12 +253,14 @@ export const twoOfficesDispatch =
|
|
|
244
253
|
// 重设流程
|
|
245
254
|
export const toResetProcessIndex = '/bpm/bpmBackend/toResetProcessIndex';
|
|
246
255
|
// 提交重设流程
|
|
247
|
-
export const resetProcess =
|
|
256
|
+
export const resetProcess =
|
|
257
|
+
flowPendingPrefix + '/task/taskHandle/resetProcess.dhtml';
|
|
248
258
|
// 续办流程
|
|
249
259
|
export const toTaskContinuationIndex =
|
|
250
260
|
'/bpm/bpmBackend/toTaskContinuationIndex';
|
|
251
261
|
// 续办提交
|
|
252
|
-
export const taskContinuation =
|
|
262
|
+
export const taskContinuation =
|
|
263
|
+
flowPendingPrefix + '/task/taskHandle/taskContinuation.dhtml';
|
|
253
264
|
// 自由发起流程获取配置参数
|
|
254
265
|
export const getFreeStartFlowParams = '/bpm/bpmBackend/getFreeStartFlowParams';
|
|
255
266
|
// 自由发起流程提交
|
|
@@ -289,6 +300,8 @@ export const formContents =
|
|
|
289
300
|
'/lowcode/admin/online/onlineForm/getOnlineFormFromCache';
|
|
290
301
|
export const directStartTaskCircularRead =
|
|
291
302
|
'/bpm/bpmBackend/directStartTaskCircularRead';
|
|
292
|
-
export const endFlowAndStartTaskCircularRead =
|
|
303
|
+
export const endFlowAndStartTaskCircularRead =
|
|
304
|
+
'/bpm/bpmBackend/endFlowAndStartTaskCircularRead';
|
|
293
305
|
export const getNodeInfoForStart =
|
|
294
306
|
flowPendingPrefix + '/task/taskHandle/getNodeInfoForStart.dhtml';
|
|
307
|
+
export const freeStartFlow = '/bpm/bpmBackend/freeStartFlow';
|