JavaProjectRepo/business-css/frontend/src/views/business/algorithm/index.vue

453 lines
14 KiB
Vue
Raw Normal View History

2025-12-25 13:45:21 +08:00
<script lang="ts">
export default {
name: "algorithm-算法",
};
</script>
<script setup lang="ts">
import { onMounted, ref, nextTick } from "vue";
import { ElForm, ElMessage, ElMessageBox } from "element-plus";
import { searchAlgorithmsPage,addAlgorithms,updateAlgorithms,deleteAlgorithms,deleteBatchAlgorithms} from "@/api/business/algorithm";
import Page from '@/components/Pagination/page.vue'
// 搜索框
const queryParams = ref({
current: 1,
size: 10,
querystr: ''
});
//分页 总条数
const total = ref()
//定义表格数据
const customAttrsData:any = ref([])
const tableData: any = ref([]);
const multipleSelection = ref([]);
// 表格加载
const loading = ref(false)
function gettableData() {
let params = {
name: input.value,
pageNum: queryParams.value.current,
pageSize: queryParams.value.size,
};
loading.value = true;
searchAlgorithmsPage(params).then((result:any) => {
tableData.value = result.records;
total.value = result.total;
loading.value = false;
}).catch((err) => {
loading.value = false;
});
}
//表格多选事件
function handleSelectionChange(val: any) {
multipleSelection.value = val;
}
// 处理数字输入的过滤
function handleNumberInput(field: string) {
// 过滤输入,只允许数字和小数点
info.value[field] = info.value[field].replace(/[^\d.]/g, '');
// 确保只有一个小数点
const parts = info.value[field].split('.');
if (parts.length > 2) {
info.value[field] = parts[0] + '.' + parts.slice(1).join('');
}
}
// 处理数字输入的过滤
function tableNumberInput(index:any, field: string) {
// 过滤输入,只允许数字和小数点
customAttrsData.value[index][field] = customAttrsData.value[index][field].replace(/[^\d.]/g, '');
// 确保只有一个小数点
const parts = customAttrsData.value[index][field].split('.');
if (parts.length > 2) {
customAttrsData.value[index][field] = parts[0] + '.' + parts.slice(1).join('');
}
}
const infoForm = ref();
//搜索内容及点击搜索按钮
const input = ref("");
//新建算法数据
const title = ref("");
const info: any = ref({
name: "",
description: "",
version: "",
principle: "",
2025-12-25 13:45:21 +08:00
});
const dialogVisible = ref(false);
function addClick() {
title.value = "新增算法数据";
info.value = {
name: "",
description: "",
version: "",
principle: "",
2025-12-25 13:45:21 +08:00
};
customAttrsData.value = []
dialogVisible.value = true;
}
//新建算法数据-确认按钮/修改按钮
function confirmClick(formEl: any) {
formEl.validate((valid: any) => {
if (valid) {
if (!info.value.algorithmId) {
const params = {
name: info.value.name,
description: info.value.description,
version: info.value.version,
principle: info.value.principle,
2025-12-25 13:45:21 +08:00
}
addAlgorithms(params).then((res) => {
gettableData();
dialogVisible.value = false;
});
} else if (info.value.algorithmId) {
const params = {
algorithmId: info.value.algorithmId,
name: info.value.name,
description: info.value.description,
version: info.value.version,
principle: info.value.principle,
2025-12-25 13:45:21 +08:00
}
updateAlgorithms(params).then((res) => {
gettableData();
dialogVisible.value = false;
});
} else {
return false;
}
}
});
}
//新建角色-取消按钮
function handleClose() {
dialogVisible.value = false;
if (infoForm.value != null) infoForm.value.resetFields();
}
//新建算法数据
const rules = ref({
name: [{ required: true, message: "请输入算法数据名称", trigger: "blur" }],
uConcentration: [
{ pattern: /^\d+(\.\d+)?$/, message: "请输入有效的数字或小数", trigger: "blur" }
],
uo2Density: [
{ pattern: /^\d+(\.\d+)?$/, message: "请输入有效的数字或小数", trigger: "blur" }
],
uEnrichment: [
{ pattern: /^\d+(\.\d+)?$/, message: "请输入有效的数字或小数", trigger: "blur" }
],
puConcentration: [
{ pattern: /^\d+(\.\d+)?$/, message: "请输入有效的数字或小数", trigger: "blur" }
],
puo2Density: [
{ pattern: /^\d+(\.\d+)?$/, message: "请输入有效的数字或小数", trigger: "blur" }
],
puIsotope: [
{ pattern: /^\d+(\.\d+)?$/, message: "请输入有效的数字或小数", trigger: "blur" }
],
hno3Acidity: [
{ pattern: /^\d+(\.\d+)?$/, message: "请输入有效的数字或小数", trigger: "blur" }
],
h2c2o4Concentration: [
{ pattern: /^\d+(\.\d+)?$/, message: "请输入有效的数字或小数", trigger: "blur" }
],
organicRatio: [
{ pattern: /^\d+(\.\d+)?$/, message: "请输入有效的数字或小数", trigger: "blur" }
],
moistureContent: [
{ pattern: /^\d+(\.\d+)?$/, message: "请输入有效的数字或小数", trigger: "blur" }
],
});
//修改算法数据
function editClick(row: any) {
title.value = "修改算法数据";
info.value = JSON.parse(JSON.stringify(row));
if(row.customAttrs != null){
customAttrsData.value = JSON.parse(row.customAttrs);
}
dialogVisible.value = true;
}
//删除算法数据
function delAloneClick(row: any) {
ElMessageBox.confirm("确定删除此算法数据吗?", "删除提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
let params = {
id: row.algorithmId,
};
deleteAlgorithms(params).then(() => {
gettableData();
ElMessage({
type: "success",
message: "删除成功",
});
});
})
}
// 多选删除?
function delClick() {
ElMessageBox.confirm("确定删除已选择角色吗?", "删除提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
let id = [] as any[];
multipleSelection.value.forEach((item: any) => {
id.push(item.algorithmId)
})
let params = {
ids: id,
};
deleteBatchAlgorithms(params.ids).then(() => {
gettableData();
ElMessage({
message: "删除成功",
type: "success",
});
});
});
}
function dateFormat(row: any) {
const daterc = row;
if (daterc != null) {
var date = new Date(daterc);
var year = date.getFullYear();
var month =
date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
var day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
var hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
var seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
// 拼接
return year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
}
}
const tabActive = ref(0);
function tabClick(index: any) {
tabActive.value = index;
}
onMounted(() => {
gettableData();
});
</script>
<template>
<div class="Algorithms-box">
<div class="conductproject-bg-box">
<div
style="display: flex;display: -webkit-flex; justify-content: space-between; -webkit-justify-content: space-between;margin-bottom: 10px">
<div style="display: flex;display: -webkit-flex;">
<el-input v-model="input" placeholder="请输入算法数据名称" @keyup.enter="gettableData" style="width: 200px" clearable />
<el-button type="primary" style="margin-left: 10px" @click="gettableData">搜索</el-button>
</div>
<div style="display: flex;display: -webkit-flex;">
<el-button type="primary" @click="addClick">
新增</el-button>
<el-button :type="multipleSelection.length > 0 ? 'primary' : ''"
:disabled="multipleSelection.length <= 0" @click="delClick">删除</el-button>
</div>
</div>
<el-table v-loading="loading" :data="tableData" style="width: 100%; height: calc(100vh - 260px);margin-bottom: 10px;" border
@selection-change="handleSelectionChange"
:header-cell-style="{ background: 'rgb(250 250 250)', color: '#383838', height: '50px' }">
<el-table-column type="selection" width="50" align="center"></el-table-column>
<el-table-column type="index" label="序号" width="70" align="center"></el-table-column>
<el-table-column prop="name" label="算法名称" width="180"></el-table-column>
<el-table-column prop="version" label="版本号" width="100"></el-table-column>
2025-12-25 13:45:21 +08:00
<el-table-column prop="description" label="算法描述" min-width="100"></el-table-column>
<el-table-column prop="updatedAt" label="更新时间" width="200">
<template #default="scope">
{{ dateFormat(scope.row.updatedAt) }}
</template>
</el-table-column>
<el-table-column fixed="right" label="操作" width="80" align="center">
<template #default="scope">
<span
2025-12-25 13:45:21 +08:00
style="display: flex;display: -webkit-flex; justify-content: space-around;-webkit-justify-content: space-around; ">
<img src="@/assets/table/edit.png" alt="" title="修改"
2025-12-25 13:45:21 +08:00
@click="editClick(scope.row)" style="cursor: pointer; ">
<img src="@/assets/table/del.png" alt="" title="删除"
2025-12-25 13:45:21 +08:00
@click="delAloneClick(scope.row)" style="cursor: pointer; ">
</span>
</template>
</el-table-column>
</el-table>
<Page :total="total" v-model:size="queryParams.size" v-model:current="queryParams.current" @pagination="gettableData()" ></Page>
</div>
<el-dialog v-model="dialogVisible" :close-on-click-modal="false"
:modal="false" draggable :before-close="handleClose" :title="title"
append-to-body width="1145px" height="600px">
<div class="Algorithms_dialog_tabbox" >
<div class="Algorithms_dialog_tabbox_item" :class="{'Algorithms_dialog_tabbox_active': tabActive === 0}"
@click="tabClick(0)">
<img v-if="tabActive === 0" src="@/assets/algorithm/tab1_selected.png" alt="">
<img v-else src="@/assets/algorithm/tab1.png" alt="">
<span>基本信息</span>
</div>
<div class="Algorithms_dialog_tabbox_item" :class="{'Algorithms_dialog_tabbox_active': tabActive === 1}"
@click="tabClick(1)">
<img v-if="tabActive === 1" src="@/assets/algorithm/tab2_selected.png" alt="">
<img v-else src="@/assets/algorithm/tab2.png" alt="">
<span>调用参数</span>
</div>
<div class="Algorithms_dialog_tabbox_item" :class="{'Algorithms_dialog_tabbox_active': tabActive === 2}"
@click="tabClick(2)" >
<img v-if="tabActive === 2" src="@/assets/algorithm/tab2_selected.png" alt="">
<img v-else src="@/assets/algorithm/tab2.png" alt="">
<span>输出参数</span>
</div>
</div>
<el-form ref="infoForm" :model="info" :rules="rules" label-width="220px"
style="margin-top: 20px;">
<el-form-item label="算法名称" prop="name" style="width: 100%;" label-width="80px">
<el-input v-model="info.name" style="width: 100%" placeholder="输入算法名称"></el-input>
</el-form-item>
<el-form-item label="算法描述" style="width: 100%;" label-width="80px">
<el-input type="textarea" v-model="info.description" :rows="6" style="width: 100%" placeholder="请输入算法描述"></el-input>
</el-form-item>
<el-form-item label="版本" style="width: 100%;" label-width="80px">
<el-input v-model="info.version" style="width: 100%" placeholder="输入版本"></el-input>
</el-form-item>
<el-form-item label="算法原理" style="width: 100%;" label-width="80px">
<el-input type="textarea" v-model="info.principle" :rows="8" style="width: 100%" placeholder="请输入算法原理"></el-input>
</el-form-item>
<span class="dialog-footer"
style="display: flex;display: -webkit-flex; justify-content: flex-end;-webkit-justify-content: flex-end;">
<el-button @click="handleClose"> </el-button>
<el-button type="primary" @click="confirmClick(infoForm)"> </el-button>
</span>
</el-form>
</el-dialog>
</div>
</template>
<style scoped>
.Algorithms-box {
padding-right: 10px;
}
:deep(.el-tree-node__content) {
font-size: 15px;
font-weight: 500;
width: 100%;
height: 40px;
}
.dialog-footer {
display: block;
margin-top: 20px;
}
.conductproject-bg-box {
padding: 20px;
width: 100%;
height: calc(100vh - 130px);
overflow: auto;
background-color: rgba(255, 255, 255, 1);
border: none;
border-radius: 3px;
box-sizing: border-box;
}
.Algorithms_dialog_tabbox{
display: flex;
border-bottom: 1px solid #e4e7ed;
padding-bottom: 10px;
}
.Algorithms_dialog_tabbox_item{
position: relative;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.Algorithms_dialog_tabbox_item span{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Arial Normal', 'Arial';
font-weight: 400;
font-style: normal;
font-size: 14px;
color: #363636;
}
.Algorithms_dialog_tabbox_item span:hover{
color: #266fff;
}
.Algorithms_dialog_tabbox_active span{
color: #fff !important;
}
</style>
<style>
.el-dialog {
padding: 0 !important;
border-radius: 10px !important;
border: 1px solid #363636 !important;
}
.el-dialog .el-dialog__header{
display: flex;
display: -webkit-flex;
justify-content: flex-start;-webkit-justify-content: flex-start;
align-items: center;-webkit-align-items: center;
padding: 10px 20px;
background-color: #f1f3f8 !important;
font-family: 'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight: 700;
font-style: normal;
font-size: 16px;
color: #1B1B1B;
text-align: left;
border-radius: 10px 10px 0 0;
height: 50px;
}
.el-dialog .el-dialog__close{
font-size: 22px;
color: rgb(80, 80, 80);
}
.el-dialog .el-dialog__headerbtn{
display: flex;
align-items: center;
}
.el-dialog .el-dialog__body{
padding: 20px 40px !important;
}
.el-dialog .el-input{
--el-input-inner-height: 38px
}
.Algorithms-box .el-button{
height: 36px;
}
2025-12-25 13:45:21 +08:00
.el-dialog .el-button{
height: 40px;
}
</style>