浏览代码

【增加】ImageDetail mock

cherishsince 1 年之前
父节点
当前提交
51e28065ee
共有 1 个文件被更改,包括 15 次插入4 次删除
  1. 15 4
      src/api/ai/image/index.ts

+ 15 - 4
src/api/ai/image/index.ts

@@ -15,10 +15,21 @@ export interface ImageDetailVO {
 }
 
 // AI API 密钥 API
-export const ApiKeyApi = {
-  // 查询 API 密钥分页
-  getApiKeyPage: async (params: any) => {
-    return await request.get({ url: `/ai/api-key/page`, params })
+export const ImageApi = {
+  // 获取 image 详细信息
+  getImageDetail: async (id: number) => {
+    // return await request.get({ url: `/ai/api-key/page?`, params })
+    return {
+      id: 1,
+      prompt: '童话里的小屋是什么样子?',
+      status: 'todo',
+      errorMessage: 'error 未登录',
+      type: 'qinxi',
+      taskId: 111,
+      imageUrl: 'https://img.bigpt8.com/uploads/thumbnail/20240509/b7802797e5f709f35a451a1591d4d495.png',
+      platform: 'dr',
+      model: 'dr'
+    } as ImageDetailVO
   },
 
 }