AIManage/src/views/model/index.vue

212 lines
5.8 KiB
Vue
Raw Normal View History

2024-06-18 01:04:33 +08:00
<!-- 用户管理 -->
2024-06-17 23:47:02 +08:00
<template>
2024-06-18 01:04:33 +08:00
<div class="app-container">
<div class="search-container">
<el-button type="primary" @click="doUploadModel" ><i-ep-plus />上传模型</el-button>
<el-form ref="queryFormRef" :model="queryParams" :inline="true" style="flex-grow: 1;text-align: right;">
<el-form-item label="" prop="keywords">
<el-input v-model="queryParams.keywords" placeholder="请输入模型名称" clearable style="width: 200px"
@keyup.enter="handleQuery" />
</el-form-item>
<el-form-item>
<el-button type="primary" @click="handleQuery"><i-ep-search />搜索</el-button>
<el-button @click="resetQuery">
<i-ep-refresh />
重置</el-button>
</el-form-item>
</el-form>
</div>
2024-06-17 23:47:02 +08:00
2024-06-18 01:04:33 +08:00
<el-card shadow="never" class="table-container">
<el-table v-loading="loading" :data="tableData" stripe @selection-change="handleSelectionChange">
<el-table-column label="模型名称" align="left" prop="name" width="300"/>
<el-table-column label="网络名称" align="left" prop="netName" />
<el-table-column label="模型类型" align="left" prop="modelType" />
<el-table-column label="版本" align="left" prop="ver" />
<el-table-column label="说明" width="300" align="left" prop="desc" />
<el-table-column label="上传时间" width="120" align="left" prop="upTime" />
<el-table-column label="上传用户" width="100" align="left" prop="upUser" />
<el-table-column label="操作" fixed="right" width="250">
<template #default="scope">
<el-button text type="primary" size="small"
2024-06-19 00:20:35 +08:00
@click="doShowModelDetail(scope.row)"><i-ep-edit />查看</el-button>
2024-06-18 01:04:33 +08:00
<el-button text type="primary" size="small"
2024-06-20 23:49:38 +08:00
@click="doUploadModel()"><i-ep-link/>互联</el-button>
2024-06-18 01:04:33 +08:00
<el-button text type="primary" size="small" @click="handleDelete(scope.row)"><i-ep-delete />删除</el-button>
</template>
</el-table-column>
</el-table>
</el-card>
<el-card class="card-footer">
<pagination v-if="total > 0" v-model:total="total" v-model:page="queryParams.pageNum"
v-model:limit="queryParams.pageSize" @pagination="handleQuery" />
</el-card>
2024-06-17 23:47:02 +08:00
</div>
</template>
2024-06-18 01:04:33 +08:00
<script setup lang="ts">
defineOptions({
name: "calculateIndex",
inheritAttrs: false,
});
import { UserQuery } from "@/api/user/model";
const queryFormRef = ref(ElForm); // 查询表单
const router = useRouter();
const loading = ref(false); // 加载状态
const removeIds = ref([]); // 删除用户ID集合 用于批量删除
const queryParams = reactive<UserQuery>({
pageNum: 1,
pageSize: 10,
});
const dateTimeRange = ref("");
const total = ref(100); // 数据总数
watch(dateTimeRange, (newVal) => {
if (newVal) {
queryParams.startTime = newVal[0];
queryParams.endTime = newVal[1];
}
});
const tableData = [
{
id:"1",
name: "模型名称模型名称模型名称查看",
netName: "VIT",
modelType: "图像分类",
desc:'进行10种类型 的目标分类模型查看',
ver: "1.0",
upTime: "2024-02-02",
upUser:'USER'
},
{
2024-06-19 00:20:35 +08:00
id:"2",
2024-06-18 01:04:33 +08:00
name: "模型名称模型名称模型名称查看",
netName: "Mobile-VIT",
modelType: "图像分类",
ver: "1.0",
desc:'进行10种类型 的目标分类模型查看',
upTime: "2024-02-02",
upUser:'USER'
},
{
2024-06-19 00:20:35 +08:00
id:"3",
2024-06-18 01:04:33 +08:00
name: "模型名称模型名称模型名称查看",
netName: "VIT",
modelType: "图像分类",
ver: "1.0",
desc:'进行人员检测的模型',
upTime: "2024-02-02",
upUser:'USER'
},
{
2024-06-19 00:20:35 +08:00
id:"4",
2024-06-18 01:04:33 +08:00
name: "模型名称模型名称模型名称查看",
netName: "Mobile-VIT",
modelType: "图像分类",
ver: "1.0",
desc:'进行10种类型 的目标分类模型查看',
upTime: "2024-02-02",
upUser:'USER'
},
{
2024-06-19 00:20:35 +08:00
id:"5",
2024-06-18 01:04:33 +08:00
name: "模型名称模型名称模型名称查看",
netName: "VIT",
modelType: "图像分类",
ver: "1.0",
desc:'进行人员检测的模型',
upTime: "2024-02-02",
upUser:'USER'
}
];
/** 查询 */
function handleQuery() {
loading.value = true;
ElMessage.success("查询成功");
loading.value = false;
}
function doUploadModel(){
router.replace({ path: "/modelMgr/uploadModel" });
}
/** 重置查询 */
function resetQuery() {
queryFormRef.value.resetFields();
dateTimeRange.value = "";
queryParams.pageNum = 1;
queryParams.deptId = undefined;
queryParams.startTime = undefined;
queryParams.endTime = undefined;
handleQuery();
}
/** 行选中 */
function handleSelectionChange(selection: any) {
removeIds.value = selection.map((item: any) => item.id);
}
/** 删除数据 */
function handleDelete(row: { [key: string]: any }) {
ElMessageBox.confirm("确认删除算子?", "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(function () {
ElMessage.success("删除成功");
});
}
2024-06-19 00:20:35 +08:00
const doShowModelDetail=(row:any)=>{
2024-06-21 00:42:29 +08:00
router.replace({path:"/modelMgr/modelDetail",query:{id:row.id,from:'model'}})
2024-06-19 00:20:35 +08:00
}
2024-06-18 01:04:33 +08:00
/**
* 打开弹窗
*
* @param type 弹窗类型 用户表单user-form | 用户导入user-import
* @param id 用户ID
*/
async function openDialog(type: string, id?: number) {
router.replace({ path: "/operatorLibrary/calculateEdit" });
}
/** 下载导入模板 */
function downloadTemplate() {
ElMessage.success("下载模板成功");
}
/** 导出用户 */
function handleExport() {
ElMessage.success("导出成功");
}
onMounted(() => {
//handleQuery();
});
2024-06-17 23:47:02 +08:00
</script>
2024-06-18 01:04:33 +08:00
<style scoped lang='scss'>
.search-container{
display:flex;
}
.card-footer{
position: fixed;
width: calc(100% - 215px);
bottom: 0px;
:deep(.el-card__body){
padding:0px;
.el-pagination{
justify-content: end;
}
}
}
</style>