新增查看页面
This commit is contained in:
22
web-vue/packages/biz/api/biz/myWork.ts
Normal file
22
web-vue/packages/biz/api/biz/myWork.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
||||
* No deletion without permission, or be held responsible to law.
|
||||
* @author gaoxq
|
||||
*/
|
||||
import { defHttp } from '@jeesite/core/utils/http/axios';
|
||||
import { useGlobSetting } from '@jeesite/core/hooks/setting';
|
||||
import { BasicModel } from '@jeesite/core/api/model/baseModel';
|
||||
const { adminPath } = useGlobSetting();
|
||||
|
||||
export interface MyWorkInfo extends BasicModel<MyWorkInfo> {
|
||||
notifyNums?: number;
|
||||
notifyAllNums?: number;
|
||||
projectNums?: number;
|
||||
projectAllNums?: number;
|
||||
calendarNums?: number;
|
||||
calendarAllNums?: number;
|
||||
teamNums?: number;
|
||||
}
|
||||
|
||||
export const bizMyWorkInfoList = () =>
|
||||
defHttp.get<MyWorkInfo>({ url: adminPath + '/biz/myWork/list'});
|
||||
Reference in New Issue
Block a user