update 优化 eslint

This commit is contained in:
疯狂的狮子Li
2024-06-28 10:18:18 +08:00
parent 27d36f7970
commit 7637582437
20 changed files with 27 additions and 34 deletions

View File

@ -25,7 +25,7 @@ export const listFormManage = (query?: FormManageQuery): AxiosPromise<FormManage
export const selectListFormManage = (): AxiosPromise<FormManageVO[]> => {
return request({
url: '/workflow/formManage/list/selectList',
method: 'get',
method: 'get'
});
};

View File

@ -22,7 +22,7 @@ export const listModel = (query: ModelQuery): AxiosPromise<ModelVO[]> => {
*/
export const getInfo = (id: string): AxiosPromise<ModelForm> => {
return request({
url: '/workflow/model/getInfo/'+id,
url: '/workflow/model/getInfo/' + id,
method: 'get'
});
};
@ -101,4 +101,4 @@ export const copyModel = (data: ModelForm): AxiosPromise<void> => {
method: 'post',
data: data
});
};
};

View File

@ -1,10 +1,10 @@
export interface ModelForm {
id: string,
id: string;
name: string;
key: string;
categoryCode: string;
xml:string,
svg:string,
xml: string;
svg: string;
description: string;
}

View File

@ -35,9 +35,4 @@ export interface NodeConfigVO {
* 表单管理
*/
wfFormManageVo: FormManageVO;
}