parent
081be29323
commit
956a36378b
@ -0,0 +1,6 @@
|
|||||||
|
import { request, verifyResponse } from '@/utils';
|
||||||
|
|
||||||
|
export const apiThanks = async () => {
|
||||||
|
const res = await request('/luoo-user/my/thanks');
|
||||||
|
return verifyResponse(res);
|
||||||
|
};
|
@ -0,0 +1,3 @@
|
|||||||
|
export * from './about';
|
||||||
|
export * from './journal';
|
||||||
|
// export * from './music';
|
@ -0,0 +1,5 @@
|
|||||||
|
declare interface FetchResponse<T> {
|
||||||
|
code: number;
|
||||||
|
message: string;
|
||||||
|
data: T;
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
declare interface TagName {
|
||||||
|
/** ID */
|
||||||
|
id: string;
|
||||||
|
/** 是否显示 */
|
||||||
|
isShow: number;
|
||||||
|
/** 等级 */
|
||||||
|
level: number;
|
||||||
|
/** 中文名称 */
|
||||||
|
nameCh: string;
|
||||||
|
/** 英文名称 */
|
||||||
|
nameEn: string;
|
||||||
|
/** 父类别ID */
|
||||||
|
parentId: string;
|
||||||
|
/** 状态 */
|
||||||
|
state: number;
|
||||||
|
}
|
Loading…
Reference in new issue