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.
Files changed (52) hide show
  1. package/lib/button-group.js +103 -101
  2. package/lib/button.js +103 -101
  3. package/lib/calogin.js +103 -101
  4. package/lib/checkbox-group.js +104 -102
  5. package/lib/config/api.js +2 -1
  6. package/lib/data-table-form.js +104 -102
  7. package/lib/data-table.js +105 -103
  8. package/lib/date-picker.js +103 -101
  9. package/lib/dialog.js +103 -101
  10. package/lib/eoss-ui.common.js +383 -301
  11. package/lib/flow-group.js +103 -101
  12. package/lib/flow-list.js +109 -107
  13. package/lib/flow.js +258 -186
  14. package/lib/form.js +103 -101
  15. package/lib/handle-user.js +104 -102
  16. package/lib/handler.js +104 -102
  17. package/lib/icon.js +104 -102
  18. package/lib/index.js +1 -1
  19. package/lib/input-number.js +103 -101
  20. package/lib/input.js +103 -101
  21. package/lib/login.js +109 -107
  22. package/lib/main.js +136 -134
  23. package/lib/nav.js +103 -101
  24. package/lib/notify.js +106 -104
  25. package/lib/page.js +103 -101
  26. package/lib/pagination.js +103 -101
  27. package/lib/player.js +103 -101
  28. package/lib/qr-code.js +103 -101
  29. package/lib/radio-group.js +104 -102
  30. package/lib/retrial-auth.js +106 -104
  31. package/lib/select-ganged.js +104 -102
  32. package/lib/select.js +104 -102
  33. package/lib/selector-panel.js +121 -119
  34. package/lib/selector.js +122 -110
  35. package/lib/sizer.js +105 -103
  36. package/lib/steps.js +103 -101
  37. package/lib/switch.js +103 -101
  38. package/lib/table-form.js +103 -101
  39. package/lib/tabs.js +103 -101
  40. package/lib/tips.js +104 -102
  41. package/lib/tree-group.js +103 -101
  42. package/lib/tree.js +104 -102
  43. package/lib/upload.js +113 -111
  44. package/lib/wujie.js +103 -101
  45. package/lib/wxlogin.js +103 -101
  46. package/package.json +1 -1
  47. package/packages/flow/src/main.vue +7 -2
  48. package/packages/flow/src/processForm.vue +12 -3
  49. package/packages/flow/src/reset.vue +33 -10
  50. package/packages/selector/src/main.vue +15 -9
  51. package/src/config/api.js +25 -12
  52. 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 = flowPendingPrefix + '/task/taskHandle/taskRead.dhtml';
165
+ export const taskReadHtml =
166
+ flowPendingPrefix + '/task/taskHandle/taskRead.dhtml';
166
167
  // 驳回并办结
167
- export const rejectAndEnd = flowPendingPrefix + '/task/taskHandle/rejectAndEnd.dhtml';
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 = flowPendingPrefix + '/task/taskHandle/taskTransfer.dhtml';
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 = flowPendingPrefix + '/task/taskHandle/deletePresetInfo.dhtml';
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 = flowPendingPrefix + '/task/taskHandle/isCanStartSubFlow.dhtml';
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 = flowPendingPrefix + '/task/taskHandle/taskUnionExamine.dhtml';
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 = flowPendingPrefix + '/task/taskHandle/taskTakeAdvice.dhtml';
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 = flowPendingPrefix + '/task/taskHandle/taskStartDraft.dhtml';
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 = flowPendingPrefix + '/task/taskHandle/taskUnionSeal.dhtml';
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 = flowPendingPrefix + '/task/taskHandle/resetProcess.dhtml';
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 = flowPendingPrefix + '/task/taskHandle/taskContinuation.dhtml';
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 = '/bpm/bpmBackend/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';
package/src/index.js CHANGED
@@ -125,7 +125,7 @@ if (typeof window !== 'undefined' && window.Vue) {
125
125
  }
126
126
 
127
127
  export default {
128
- version: '0.6.89',
128
+ version: '0.6.91',
129
129
  install,
130
130
  Button,
131
131
  ButtonGroup,