venus-design 1.0.80 → 1.0.82
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/dist/Approval/components/SelectRoleAndUser/index.d.ts +1 -0
- package/dist/Approval/components/SelectRoleAndUser/index.js +83 -67
- package/dist/Approval/index.js +179 -63
- package/dist/Approval/service.js +7 -1
- package/dist/Config/api.d.ts +1 -0
- package/dist/Config/api.js +257 -234
- package/dist/Config/columnFilter.d.ts +1 -1
- package/dist/Config/utils.d.ts +13 -0
- package/dist/Config/utils.js +187 -1
- package/dist/VenusForm/staticAttr.js +3 -5
- package/dist/VenusTable/index.js +1 -1
- package/dist/VenusTable/interface.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/Approval/service.js
CHANGED
|
@@ -63,6 +63,11 @@ export function editCandateGroupsOrUsers(_x6, _x7) {
|
|
|
63
63
|
/*
|
|
64
64
|
* 查询流程配置
|
|
65
65
|
*/
|
|
66
|
+
/*export async function findByOptionCode(code:string) {
|
|
67
|
+
return request(`/wfconfig/option/${code}`, {
|
|
68
|
+
method: 'get', prefix: '/workflow'
|
|
69
|
+
});
|
|
70
|
+
}*/
|
|
66
71
|
function _editCandateGroupsOrUsers() {
|
|
67
72
|
_editCandateGroupsOrUsers = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(person, instanceid) {
|
|
68
73
|
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
@@ -83,13 +88,14 @@ function _editCandateGroupsOrUsers() {
|
|
|
83
88
|
export function findByOptionCode(_x8) {
|
|
84
89
|
return _findByOptionCode.apply(this, arguments);
|
|
85
90
|
}
|
|
91
|
+
|
|
86
92
|
//查询节点人员
|
|
87
93
|
function _findByOptionCode() {
|
|
88
94
|
_findByOptionCode = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(code) {
|
|
89
95
|
return _regeneratorRuntime().wrap(function _callee4$(_context4) {
|
|
90
96
|
while (1) switch (_context4.prev = _context4.next) {
|
|
91
97
|
case 0:
|
|
92
|
-
return _context4.abrupt("return", request("/wfconfig/
|
|
98
|
+
return _context4.abrupt("return", request("/wfconfig/optionnew/".concat(code), {
|
|
93
99
|
method: 'get',
|
|
94
100
|
prefix: '/workflow'
|
|
95
101
|
}));
|
package/dist/Config/api.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare function getUserInfo(): Promise<any>;
|
|
2
2
|
export declare function getLockScreenTime(): Promise<any>;
|
|
3
|
+
export declare function getSeqNextVal(seqName: string): Promise<any>;
|
|
3
4
|
export declare function getMenuConfig(): Promise<any>;
|
|
4
5
|
export declare function addMenuConfig(data: any): Promise<any>;
|
|
5
6
|
export declare function editMenuConfig(data: any): Promise<any>;
|