mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-07-18 04:45:07 +08:00
【增加】Image task 增加关联接口调用
This commit is contained in:
@ -14,7 +14,6 @@
|
||||
import {ImageApi, ImageDetailVO} from '@/api/ai/image';
|
||||
import ImageDetailDrawer from './ImageDetailDrawer.vue'
|
||||
import ImageTaskCard from './ImageTaskCard.vue'
|
||||
import {Delete, Download, More} from "@element-plus/icons-vue";
|
||||
import {bool} from "vue-types";
|
||||
|
||||
const imageList = ref<ImageDetailVO[]>([]) // image 列表
|
||||
@ -45,7 +44,8 @@ const handlerDrawerOpen = async () => {
|
||||
* 获取 - image 列表
|
||||
*/
|
||||
const getImageList = async () => {
|
||||
imageList.value = await ImageApi.getImageList({pageNo: 1, pageSize: 20})
|
||||
const { list } = await ImageApi.getImageList({pageNo: 1, pageSize: 20})
|
||||
imageList.value = list
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user