eoss-mobiles 0.2.98 → 0.2.99
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/checkbox.js +28 -25
- package/lib/config/api.js +3 -1
- package/lib/eoss-mobile.common.js +565 -26
- package/lib/flow-btn.js +29 -26
- package/lib/flow-list.js +29 -26
- package/lib/flow.js +610 -70
- package/lib/index.js +1 -1
- package/lib/picker.js +28 -25
- package/lib/radio.js +28 -25
- package/lib/retrial-auth.js +30 -27
- package/lib/selector.js +47 -44
- package/lib/table-column.js +28 -25
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Handle.vue +64 -38
- package/packages/flow/src/components/Message.vue +90 -37
- package/packages/flow/src/components/ProcessSettings.vue +319 -0
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/flow.scss +5 -0
- package/src/config/api.js +2 -0
- package/src/index.js +1 -1
package/src/config/api.js
CHANGED
|
@@ -99,6 +99,8 @@ export const twoOfficesDispatch =
|
|
|
99
99
|
// 是否允许启动子流程(必经节点)
|
|
100
100
|
export const isCanStartSubFlow =
|
|
101
101
|
activiti + '/task/taskHandle/isCanStartSubFlow.dhtml';
|
|
102
|
+
// 流程预设获取
|
|
103
|
+
export const getPresetCustomInfo = activiti + '/task/taskHandle/getPresetCustomInfo.dhtml';
|
|
102
104
|
// 流程列表
|
|
103
105
|
export const pendedhistoryList = '/api/v1/mecpIpending/pendedhistoryList.json';
|
|
104
106
|
// 获取流程按钮
|