first commit

This commit is contained in:
2026-02-26 09:32:03 +08:00
commit 36a8e4c51b
845 changed files with 116474 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
/* eslint-disable */
// @ts-ignore
import request from '@/http/vue-query';
import type { CustomRequestOptions } from '@/http/types';
import * as API from './types';
/** 获取列表 POST /app/marketActivity/list */
export async function appMarketActivityListPost({
options,
}: {
options?: CustomRequestOptions;
}) {
return request<API.RListMarketingActivityVo>('/app/marketActivity/list', {
method: 'POST',
...(options || {}),
});
}