Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a6ec43fd
authored
May 28, 2024
by
cherishsince
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【增加】Image task 增加抽屉详细信息切换
parent
0a9882e9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
24 deletions
+13
-24
src/api/ai/image/index.ts
+3
-12
src/views/ai/image/ImageTask.vue
+10
-12
No files found.
src/api/ai/image/index.ts
View file @
a6ec43fd
...
@@ -13,6 +13,8 @@ export interface ImageDetailVO {
...
@@ -13,6 +13,8 @@ export interface ImageDetailVO {
platform
:
string
// 平台
platform
:
string
// 平台
model
:
string
// 模型
model
:
string
// 模型
style
:
string
// 图像生成的风格
style
:
string
// 图像生成的风格
createTime
:
string
// 创建时间
updateTime
:
string
// 更新事件
}
}
export
interface
ImagePageReqVO
{
export
interface
ImagePageReqVO
{
...
@@ -35,18 +37,7 @@ export const ImageApi = {
...
@@ -35,18 +37,7 @@ export const ImageApi = {
},
},
// 获取 image 详细信息
// 获取 image 详细信息
getImageDetail
:
async
(
id
:
number
)
=>
{
getImageDetail
:
async
(
id
:
number
)
=>
{
// return await request.get({ url: `/ai/api-key/page?`, params })
return
await
request
.
get
({
url
:
`/ai/image/get?id=
${
id
}
`
})
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
},
},
// dall2、dall3 调用
// dall2、dall3 调用
dall
:
async
(
data
:
ImageDallReqVO
)
=>
{
dall
:
async
(
data
:
ImageDallReqVO
)
=>
{
...
...
src/views/ai/image/ImageTask.vue
View file @
a6ec43fd
...
@@ -10,7 +10,8 @@
...
@@ -10,7 +10,8 @@
</el-card>
</el-card>
<!-- 图片 detail 抽屉 -->
<!-- 图片 detail 抽屉 -->
<ImageDetailDrawer
<ImageDetailDrawer
:show=
"showTaskDetail"
:show=
"isShowImageDetail"
:id=
"showImageDetailId"
@
handler-drawer-close=
"handlerDrawerClose"
@
handler-drawer-close=
"handlerDrawerClose"
/>
/>
</template>
</template>
...
@@ -24,27 +25,21 @@ const message = useMessage() // 消息弹窗
...
@@ -24,27 +25,21 @@ const message = useMessage() // 消息弹窗
const
imageList
=
ref
<
ImageDetailVO
[]
>
([])
// image 列表
const
imageList
=
ref
<
ImageDetailVO
[]
>
([])
// image 列表
const
imageListInterval
=
ref
<
any
>
()
// image 列表定时器,刷新列表
const
imageListInterval
=
ref
<
any
>
()
// image 列表定时器,刷新列表
const
showTaskDetail
=
ref
<
bool
>
(
false
)
// 是否显示 task 详情
const
isShowImageDetail
=
ref
<
bool
>
(
false
)
// 是否显示 task 详情
const
showImageDetailId
=
ref
<
number
>
(
0
)
// 是否显示 task 详情
/**
* 图片人物 - detail
*/
const
handlerTaskDetail
=
async
()
=>
{
showTaskDetail
.
value
=
!
showTaskDetail
.
value
}
/**
/**
* 抽屉 - close
* 抽屉 - close
*/
*/
const
handlerDrawerClose
=
async
()
=>
{
const
handlerDrawerClose
=
async
()
=>
{
showTask
Detail
.
value
=
false
isShowImage
Detail
.
value
=
false
}
}
/**
/**
* 任务 - detail
* 任务 - detail
*/
*/
const
handlerDrawerOpen
=
async
()
=>
{
const
handlerDrawerOpen
=
async
()
=>
{
showTask
Detail
.
value
=
true
isShowImage
Detail
.
value
=
true
}
}
/**
/**
...
@@ -59,6 +54,9 @@ const getImageList = async () => {
...
@@ -59,6 +54,9 @@ const getImageList = async () => {
* 图片 - btn click
* 图片 - btn click
*/
*/
const
handlerImageBtnClick
=
async
(
type
,
imageDetail
:
ImageDetailVO
)
=>
{
const
handlerImageBtnClick
=
async
(
type
,
imageDetail
:
ImageDetailVO
)
=>
{
// 获取 image detail id
showImageDetailId
.
value
=
imageDetail
.
id
// 处理不用 btn
if
(
type
===
'more'
)
{
if
(
type
===
'more'
)
{
await
handlerDrawerOpen
()
await
handlerDrawerOpen
()
}
else
if
(
type
===
'delete'
)
{
}
else
if
(
type
===
'delete'
)
{
...
@@ -67,7 +65,7 @@ const handlerImageBtnClick = async (type, imageDetail: ImageDetailVO) => {
...
@@ -67,7 +65,7 @@ const handlerImageBtnClick = async (type, imageDetail: ImageDetailVO) => {
await
getImageList
()
await
getImageList
()
await
message
.
success
(
"删除成功!"
)
await
message
.
success
(
"删除成功!"
)
}
else
if
(
type
===
'download'
)
{
}
else
if
(
type
===
'download'
)
{
downloadImage
(
imageDetail
.
picUrl
)
await
downloadImage
(
imageDetail
.
picUrl
)
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment