mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-17 18:46:36 +08:00
commit:升级到vue3,更新最近工作流技术栈,支持sa-token
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
import { BaseController } from '@/api/BaseController';
|
||||
import { RequestOption } from '@/common/http/types';
|
||||
import { ANY_OBJECT } from '@/types/generic';
|
||||
import { TableData } from '@/common/types/table';
|
||||
import { API_CONTEXT } from '../config';
|
||||
|
||||
export default class FlowEntryVariableController extends BaseController {
|
||||
static list(params: ANY_OBJECT, httpOptions?: RequestOption) {
|
||||
return this.post<TableData<ANY_OBJECT>>(
|
||||
API_CONTEXT + '/flow/flowEntryVariable/list',
|
||||
params,
|
||||
httpOptions,
|
||||
);
|
||||
}
|
||||
|
||||
static add(params: ANY_OBJECT, httpOptions?: RequestOption) {
|
||||
return this.post(API_CONTEXT + '/flow/flowEntryVariable/add', params, httpOptions);
|
||||
}
|
||||
|
||||
static update(params: ANY_OBJECT, httpOptions?: RequestOption) {
|
||||
return this.post(API_CONTEXT + '/flow/flowEntryVariable/update', params, httpOptions);
|
||||
}
|
||||
|
||||
static delete(params: ANY_OBJECT, httpOptions?: RequestOption) {
|
||||
return this.post(API_CONTEXT + '/flow/flowEntryVariable/delete', params, httpOptions);
|
||||
}
|
||||
|
||||
static view(params: ANY_OBJECT, httpOptions?: RequestOption) {
|
||||
return this.get<ANY_OBJECT>(API_CONTEXT + '/flow/flowEntryVariable/view', params, httpOptions);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user