You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
848 B
TypeScript
29 lines
848 B
TypeScript
/*
|
|
* @Author: donghao donghao@supervision.ltd
|
|
* @Date: 2024-01-25 09:54:36
|
|
* @LastEditors: donghao donghao@supervision.ltd
|
|
* @LastEditTime: 2024-01-25 13:20:48
|
|
* @FilePath: \general-ai-platform-web\mock\pools\modelImage.ts
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
*/
|
|
/**模型镜像-选择模型 */
|
|
// 模型镜像列表
|
|
export const mockGetModelImageListData = {
|
|
data: {
|
|
list: [
|
|
{
|
|
id: 1,
|
|
createTime: '2023-12-28T10:53:15.871746+08:00',
|
|
updateTime: '2023-12-28T10:53:15.871746+08:00',
|
|
name: 'ubuntu基础1',
|
|
path: '192.168.10.60:5000/ubuntu:v1',
|
|
startCode: '',
|
|
remark: '',
|
|
},
|
|
],
|
|
total: 1,
|
|
page: 1,
|
|
pageSize: 10,
|
|
},
|
|
};
|