2024-06-17 23:13:49 +08:00
|
|
|
|
<!-- 用户管理 -->
|
|
|
|
|
<template>
|
2024-06-21 00:50:41 +08:00
|
|
|
|
<div class="app-container model-detail">
|
2024-06-17 23:13:49 +08:00
|
|
|
|
<!-- 用户新增/编辑表单 -->
|
2024-06-21 00:50:41 +08:00
|
|
|
|
<el-card>
|
|
|
|
|
<template #header><svg-icon icon-class="pause" style="width:20px;height:20px;" /> 算子基本信息 </template>
|
2024-06-17 23:13:49 +08:00
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :lg="12" :xs="24">
|
|
|
|
|
<el-form
|
|
|
|
|
ref="userFormRef"
|
|
|
|
|
:model="formData"
|
|
|
|
|
:rules="rules"
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
label-width="80px"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="算子名称" prop="username">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="formData.username"
|
|
|
|
|
:readonly="!!formData.id"
|
|
|
|
|
placeholder="请输入算子名称"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="算子版本" prop="nickname">
|
|
|
|
|
<el-input v-model="formData.nickname" placeholder="请输入算子版本" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="算子类型" prop="roleIds">
|
|
|
|
|
<el-row style="width:100%">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="formData.roleIds"
|
|
|
|
|
placeholder="请选择算子类型"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
>
|
2024-06-24 23:18:47 +08:00
|
|
|
|
<el-option label="前置处理" value="1" />
|
2024-06-17 23:13:49 +08:00
|
|
|
|
</el-select>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-select
|
2024-06-24 23:18:47 +08:00
|
|
|
|
v-model="formData.roleIds2"
|
2024-06-17 23:13:49 +08:00
|
|
|
|
placeholder="请选择算子类型"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
>
|
2024-06-24 23:18:47 +08:00
|
|
|
|
<el-option label="缩放算子" value="0" />
|
2024-06-17 23:13:49 +08:00
|
|
|
|
<el-option label="图像分类" value="1" />
|
|
|
|
|
<el-option label="目标检测" value="2" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form-item>
|
2024-06-24 23:18:47 +08:00
|
|
|
|
<el-form-item label="算子说明" prop="mobile">
|
2024-06-17 23:13:49 +08:00
|
|
|
|
<el-input
|
|
|
|
|
v-model="formData.mobile"
|
2024-06-24 23:18:47 +08:00
|
|
|
|
:rows="2"
|
2024-06-17 23:13:49 +08:00
|
|
|
|
type="textarea"
|
2024-06-24 23:18:47 +08:00
|
|
|
|
placeholder="请输入算子说明"
|
2024-06-17 23:13:49 +08:00
|
|
|
|
maxlength="11"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="算子文件" prop="email">
|
|
|
|
|
<el-upload
|
|
|
|
|
v-model:file-list="fileList"
|
|
|
|
|
class="upload-demo"
|
|
|
|
|
action="https://run.mocky.io/v3/9d059bf9-4660-45f2-925d-ce80ad6c4d15"
|
|
|
|
|
multiple
|
|
|
|
|
:on-preview="handlePreview"
|
|
|
|
|
:on-remove="handleRemove"
|
|
|
|
|
:before-remove="beforeRemove"
|
|
|
|
|
:limit="3"
|
|
|
|
|
:on-exceed="handleExceed"
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary"
|
|
|
|
|
><el-icon class="el-icon--upload"> <i-ep-upload-filled /> </el-icon
|
|
|
|
|
>选择文件</el-button
|
|
|
|
|
>
|
|
|
|
|
<template #tip>
|
2024-06-24 23:18:47 +08:00
|
|
|
|
<div class="el-upload__tip">请上传大小不超过 <strong style="color: red">10M</strong>,格式为
|
|
|
|
|
<strong style="color: red">json</strong> 的文件</div>
|
2024-06-17 23:13:49 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-upload>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :lg="12" :xs="24">
|
2024-06-21 00:19:54 +08:00
|
|
|
|
<!-- <div style="padding-left: 35px">
|
2024-06-17 23:13:49 +08:00
|
|
|
|
<el-divider content-position="left"
|
|
|
|
|
><strong style="color: #409eff">算子参数</strong></el-divider
|
|
|
|
|
>
|
|
|
|
|
<el-table :data="list" style="width: 100%" stripe>
|
2024-06-19 21:43:47 +08:00
|
|
|
|
<el-table-column prop="csmc" label="参数名称" align="left"/>
|
|
|
|
|
<el-table-column prop="csmc" label="参数描述" align="left"/>
|
2024-06-17 23:13:49 +08:00
|
|
|
|
<el-table-column label="操作" fixed="right" width="120">
|
|
|
|
|
<template #default="scope">
|
2024-06-18 01:16:44 +08:00
|
|
|
|
<el-button type="primary" plain size="small"><i-ep-view />查看参数</el-button>
|
2024-06-17 23:13:49 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
2024-06-21 00:19:54 +08:00
|
|
|
|
</div> -->
|
2024-06-17 23:13:49 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-card>
|
2024-06-21 00:50:41 +08:00
|
|
|
|
<el-card class="card-footer">
|
2024-06-17 23:13:49 +08:00
|
|
|
|
<el-button type="primary" @click="handleSubmit"><i-ep-check />确 定</el-button>
|
|
|
|
|
<el-button @click="closeBack"><i-ep-close />取 消</el-button>
|
|
|
|
|
</el-card>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
defineOptions({
|
|
|
|
|
name: "User",
|
|
|
|
|
inheritAttrs: false,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
import UserAPI from "@/api/user";
|
|
|
|
|
import { UserForm } from "@/api/user/model";
|
|
|
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
const loading = ref(false); // 加载状态
|
|
|
|
|
|
|
|
|
|
const calTypeList = ref<OptionType[]>(); // 角色下拉数据源
|
|
|
|
|
|
|
|
|
|
// 用户表单数据
|
|
|
|
|
const formData = reactive<UserForm>({
|
|
|
|
|
status: 1,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 校验规则
|
|
|
|
|
const rules = reactive({
|
2024-06-24 23:18:47 +08:00
|
|
|
|
username: [{ required: true, message: "不能为空", trigger: "blur" }],
|
|
|
|
|
nickname: [{ required: true, message: "不能为空", trigger: "blur" }],
|
|
|
|
|
deptId: [{ required: true, message: "不能为空", trigger: "blur" }],
|
|
|
|
|
roleIds: [{ required: true, message: "不能为空", trigger: "blur" }],
|
2024-06-17 23:13:49 +08:00
|
|
|
|
email: [
|
|
|
|
|
{
|
|
|
|
|
pattern: /\w[-\w.+]*@([A-Za-z0-9][-A-Za-z0-9]+\.)+[A-Za-z]{2,14}/,
|
|
|
|
|
message: "请输入正确的邮箱地址",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
mobile: [
|
|
|
|
|
{
|
|
|
|
|
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
|
|
|
|
message: "请输入正确的手机号码",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const list = [
|
|
|
|
|
{
|
|
|
|
|
csmc: "图像分类算子名称",
|
|
|
|
|
csms: "进行19种类型的图像分类模型",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
csmc: "目标检测算子名称",
|
|
|
|
|
csms: "人员检测的模型",
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/** 表单提交 */
|
|
|
|
|
const handleSubmit = useThrottleFn(() => {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
setTimeout(() => {
|
2024-06-20 22:50:57 +08:00
|
|
|
|
ElMessage.success("保存成功");
|
2024-06-17 23:13:49 +08:00
|
|
|
|
loading.value = false;
|
|
|
|
|
closeBack();
|
|
|
|
|
}, 1000);
|
|
|
|
|
}, 3000);
|
|
|
|
|
|
|
|
|
|
/** 返回默认页面 */
|
|
|
|
|
function closeBack() {
|
|
|
|
|
router.replace({ path: "/operatorLibrary/calculate" });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
//handleQuery();
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2024-06-21 00:50:41 +08:00
|
|
|
|
<style scoped lang='scss'>
|
|
|
|
|
.model-detail{
|
|
|
|
|
:deep(.el-card__header){
|
|
|
|
|
padding:8px 4px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.sp-file{
|
|
|
|
|
color:#29d;
|
|
|
|
|
}
|
|
|
|
|
.tb-base-info{
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
}
|
|
|
|
|
:deep(.svg-icon){
|
|
|
|
|
margin-right:8px;
|
|
|
|
|
}
|
|
|
|
|
.card-footer{
|
2024-06-17 23:13:49 +08:00
|
|
|
|
position: fixed;
|
2024-06-21 00:50:41 +08:00
|
|
|
|
width: calc(100% - 215px);
|
2024-06-17 23:13:49 +08:00
|
|
|
|
bottom: 0px;
|
2024-06-21 00:50:41 +08:00
|
|
|
|
:deep(.el-card__body){
|
|
|
|
|
padding:10px;
|
|
|
|
|
.el-pagination{
|
|
|
|
|
justify-content: end;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-06-17 23:13:49 +08:00
|
|
|
|
}
|
|
|
|
|
</style>
|