2025-12-26 11:33:50 +08:00
|
|
|
<script lang="ts">
|
|
|
|
|
export default {
|
|
|
|
|
name: "scenario-事故情景",
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { onMounted, ref, nextTick } from "vue";
|
|
|
|
|
import { ElForm, ElMessage, ElMessageBox } from "element-plus";
|
2025-12-26 17:27:12 +08:00
|
|
|
import { searchScenariosLsit,addScenarios,updateScenarios,deleteScenarios,deleteBatchScenarios} from "@/api/business/scenario";
|
2026-01-19 17:31:35 +08:00
|
|
|
import { getActiveAlgorithms } from "@/api/business/scenario";
|
|
|
|
|
import ConditionModel from '@/views/component/scenario/condition.vue'
|
2026-01-17 12:32:55 +08:00
|
|
|
import { simulationInit,simulationRun } from "@/api/business/project";
|
2025-12-26 11:33:50 +08:00
|
|
|
import Page from '@/components/Pagination/page.vue'
|
2025-12-26 17:27:12 +08:00
|
|
|
import { getDictItemById } from '@/api/dict';
|
2026-01-15 08:47:44 +08:00
|
|
|
import Createscenario from '@/views/component/scenario/createscenario.vue'
|
2026-01-04 08:30:06 +08:00
|
|
|
import { eventsBatchSave } from '@/api/business/event';
|
2026-01-19 17:31:35 +08:00
|
|
|
const webUrl = import.meta.env.VITE_APP_BASE_HTTP; // 基础路径
|
2025-12-26 17:27:12 +08:00
|
|
|
const algorithmTypeData: any = ref([]); // 算法类型数据
|
|
|
|
|
const stepsActive = ref(0); // 步骤导航栏当前激活的步骤索引
|
|
|
|
|
const props = defineProps({ // 接收父组件传递的项目信息
|
|
|
|
|
projectInfo: {
|
|
|
|
|
required: true,
|
|
|
|
|
type: Object,
|
|
|
|
|
default: {}
|
|
|
|
|
}
|
|
|
|
|
});
|
2025-12-26 11:33:50 +08:00
|
|
|
// 搜索框
|
|
|
|
|
const queryParams = ref({
|
|
|
|
|
current: 1,
|
|
|
|
|
size: 10,
|
|
|
|
|
querystr: ''
|
|
|
|
|
});
|
|
|
|
|
//分页 总条数
|
|
|
|
|
const total = ref()
|
|
|
|
|
//定义表格数据
|
|
|
|
|
|
|
|
|
|
const tableData: any = ref([]);
|
|
|
|
|
const multipleSelection = ref([]);
|
|
|
|
|
// 表格加载
|
|
|
|
|
const loading = ref(false)
|
|
|
|
|
function gettableData() {
|
|
|
|
|
let params = {
|
2025-12-26 17:27:12 +08:00
|
|
|
projectId: props.projectInfo.projectId,
|
2025-12-26 11:33:50 +08:00
|
|
|
name: input.value,
|
|
|
|
|
pageNum: queryParams.value.current,
|
|
|
|
|
pageSize: queryParams.value.size,
|
|
|
|
|
};
|
|
|
|
|
loading.value = true;
|
2025-12-26 17:27:12 +08:00
|
|
|
searchScenariosLsit(params).then((result:any) => {
|
2025-12-26 11:33:50 +08:00
|
|
|
tableData.value = result.records;
|
|
|
|
|
total.value = result.total;
|
|
|
|
|
loading.value = false;
|
|
|
|
|
}).catch((err) => {
|
|
|
|
|
loading.value = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//表格多选事件
|
|
|
|
|
function handleSelectionChange(val: any) {
|
|
|
|
|
multipleSelection.value = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const infoForm = ref();
|
|
|
|
|
//搜索内容及点击搜索按钮
|
|
|
|
|
const input = ref("");
|
|
|
|
|
//新建事故情景
|
|
|
|
|
const title = ref("");
|
|
|
|
|
const info: any = ref({
|
|
|
|
|
name: "",
|
|
|
|
|
code: "",
|
|
|
|
|
description: "",
|
|
|
|
|
});
|
2025-12-31 09:11:08 +08:00
|
|
|
const scenarioId = ref(""); // 事故情景id
|
2026-01-19 17:31:35 +08:00
|
|
|
const dialogVisible = ref(false); // 新增事故情景弹窗是否显示
|
|
|
|
|
const dialogEditVisible = ref(false); // 修改或查看事故情景弹窗是否显示
|
2025-12-26 11:33:50 +08:00
|
|
|
function addClick() {
|
|
|
|
|
title.value = "新增事故情景";
|
|
|
|
|
info.value = {
|
|
|
|
|
name: "",
|
|
|
|
|
code: "",
|
|
|
|
|
description: "",
|
|
|
|
|
};
|
2025-12-26 17:27:12 +08:00
|
|
|
stepsActive.value = 0;
|
2025-12-26 11:33:50 +08:00
|
|
|
dialogVisible.value = true;
|
|
|
|
|
}
|
2025-12-31 09:11:08 +08:00
|
|
|
|
|
|
|
|
const isSwitch = ref(false); // 事故情景id
|
2025-12-26 11:33:50 +08:00
|
|
|
//新建事故情景-确认按钮/修改按钮
|
|
|
|
|
function confirmClick(formEl: any) {
|
|
|
|
|
console.log(info.value)
|
|
|
|
|
formEl.validate((valid: any) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
2025-12-26 17:27:12 +08:00
|
|
|
if (!info.value.scenarioId) {
|
2025-12-26 11:33:50 +08:00
|
|
|
const params = {
|
2025-12-26 17:27:12 +08:00
|
|
|
projectId: props.projectInfo.projectId,
|
2025-12-26 11:33:50 +08:00
|
|
|
name: info.value.name,
|
2025-12-26 17:27:12 +08:00
|
|
|
algorithmType: info.value.algorithmType,
|
2025-12-26 11:33:50 +08:00
|
|
|
description: info.value.description,
|
|
|
|
|
};
|
2025-12-31 09:11:08 +08:00
|
|
|
if(isSwitch.value == true){
|
|
|
|
|
return ;
|
|
|
|
|
}
|
|
|
|
|
isSwitch.value = true
|
2025-12-26 17:27:12 +08:00
|
|
|
addScenarios(params).then((res:any) => {
|
2025-12-31 09:11:08 +08:00
|
|
|
isSwitch.value = false;
|
|
|
|
|
if(res && res.code == 0) {
|
|
|
|
|
scenarioId.value = res.scenarioId;
|
2025-12-26 17:27:12 +08:00
|
|
|
gettableData();
|
|
|
|
|
ElMessage({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "新增成功",
|
|
|
|
|
});
|
|
|
|
|
stepsActive.value = 1;
|
|
|
|
|
} else {
|
|
|
|
|
ElMessage({
|
|
|
|
|
type: "error",
|
|
|
|
|
message: "新增失败",
|
|
|
|
|
});
|
|
|
|
|
}
|
2025-12-31 09:11:08 +08:00
|
|
|
}).catch(() => {
|
|
|
|
|
isSwitch.value = false;
|
|
|
|
|
})
|
2025-12-26 17:27:12 +08:00
|
|
|
} else if (info.value.scenarioId) {
|
2025-12-26 11:33:50 +08:00
|
|
|
const params = {
|
2025-12-26 17:27:12 +08:00
|
|
|
scenarioId: info.value.scenarioId,
|
|
|
|
|
projectId: info.value.projectId,
|
2025-12-26 11:33:50 +08:00
|
|
|
name: info.value.name,
|
2025-12-26 17:27:12 +08:00
|
|
|
algorithmType: info.value.algorithmType,
|
2025-12-26 11:33:50 +08:00
|
|
|
description: info.value.description,
|
|
|
|
|
};
|
2025-12-26 17:27:12 +08:00
|
|
|
updateScenarios(params).then((res) => {
|
2025-12-26 11:33:50 +08:00
|
|
|
gettableData();
|
|
|
|
|
dialogVisible.value = false;
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//新建角色-取消按钮
|
|
|
|
|
function handleClose() {
|
2026-01-19 17:31:35 +08:00
|
|
|
dialogEditVisible.value = false;
|
2025-12-26 17:27:12 +08:00
|
|
|
if (infoForm.value != null) infoForm.value.resetFields();
|
|
|
|
|
}
|
2025-12-26 11:33:50 +08:00
|
|
|
//新建事故情景
|
|
|
|
|
const rules = ref({
|
|
|
|
|
name: [{ required: true, message: "请输入事故情景名称", trigger: "blur" }],
|
2025-12-26 17:27:12 +08:00
|
|
|
algorithmType: [{ required: true, message: "请选择算法类型", trigger: "change" }],
|
2025-12-26 11:33:50 +08:00
|
|
|
});
|
|
|
|
|
//修改事故情景
|
2026-01-19 17:31:35 +08:00
|
|
|
function editClick(row: any,type: string) {
|
|
|
|
|
title.value =type + "事故情景";
|
2025-12-26 11:33:50 +08:00
|
|
|
info.value = JSON.parse(JSON.stringify(row));
|
2026-01-19 17:31:35 +08:00
|
|
|
|
|
|
|
|
dialogEditVisible.value = true;
|
|
|
|
|
}
|
|
|
|
|
const isEdit = ref(false);
|
|
|
|
|
function departureClick(row: any,type: string) {
|
|
|
|
|
title.value =type;
|
|
|
|
|
if(type == "初始条件设置"){
|
|
|
|
|
isEdit.value = true;
|
|
|
|
|
} else {
|
|
|
|
|
isEdit.value = false;
|
|
|
|
|
}
|
|
|
|
|
info.value = JSON.parse(JSON.stringify(row));
|
|
|
|
|
scenarioId.value = row.scenarioId;
|
|
|
|
|
isShowCondition.value = true;
|
|
|
|
|
}
|
|
|
|
|
function editClick1(row: any) {
|
|
|
|
|
|
|
|
|
|
info.value = JSON.parse(JSON.stringify(row));
|
|
|
|
|
dialogEditVisible.value = true;
|
2025-12-26 11:33:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//删除事故情景
|
|
|
|
|
function delAloneClick(row: any) {
|
|
|
|
|
ElMessageBox.confirm("确定删除此事故情景吗?", "删除提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
let params = {
|
2025-12-26 17:27:12 +08:00
|
|
|
id: row.scenarioId,
|
2025-12-26 11:33:50 +08:00
|
|
|
};
|
2025-12-26 17:27:12 +08:00
|
|
|
deleteScenarios(params).then(() => {
|
2025-12-26 11:33:50 +08:00
|
|
|
gettableData();
|
|
|
|
|
ElMessage({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "删除成功",
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 多选删除?
|
|
|
|
|
function delClick() {
|
|
|
|
|
ElMessageBox.confirm("确定删除已选择角色吗?", "删除提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
}).then(() => {
|
|
|
|
|
let id = [] as any[];
|
|
|
|
|
multipleSelection.value.forEach((item: any) => {
|
2025-12-26 17:27:12 +08:00
|
|
|
id.push(item.scenarioId)
|
2025-12-26 11:33:50 +08:00
|
|
|
})
|
|
|
|
|
let params = {
|
|
|
|
|
ids: id,
|
|
|
|
|
};
|
2025-12-26 17:27:12 +08:00
|
|
|
deleteBatchScenarios(params.ids).then(() => {
|
2025-12-26 11:33:50 +08:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-12-26 17:27:12 +08:00
|
|
|
const getAlgorithmType = async () => {
|
|
|
|
|
try {
|
2026-01-19 17:31:35 +08:00
|
|
|
const result:any = await getActiveAlgorithms();
|
|
|
|
|
algorithmTypeData.value = result
|
2025-12-26 17:27:12 +08:00
|
|
|
} catch (error) {
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-12-31 09:11:08 +08:00
|
|
|
function submitClick(){
|
2026-01-04 08:30:06 +08:00
|
|
|
|
2026-01-19 17:31:35 +08:00
|
|
|
let data = {
|
|
|
|
|
scenarioId: info.value.scenarioId,
|
|
|
|
|
algorithm_type: info.value.algorithmType,
|
|
|
|
|
name: info.value.name,
|
|
|
|
|
description: info.value.description,
|
|
|
|
|
}
|
|
|
|
|
updateScenarios(data).then((res:any) => {
|
|
|
|
|
if (res == true) {
|
|
|
|
|
ElMessage({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "保存成功",
|
|
|
|
|
});
|
|
|
|
|
dialogEditVisible.value = false;
|
|
|
|
|
gettableData();
|
2026-01-04 08:30:06 +08:00
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
2025-12-31 09:11:08 +08:00
|
|
|
}
|
2025-12-26 11:33:50 +08:00
|
|
|
onMounted(() => {
|
2025-12-26 17:27:12 +08:00
|
|
|
getAlgorithmType()
|
2025-12-26 11:33:50 +08:00
|
|
|
gettableData();
|
|
|
|
|
});
|
2026-01-15 08:47:44 +08:00
|
|
|
function closeCreatescenario(){
|
|
|
|
|
dialogVisible.value = false;
|
|
|
|
|
gettableData();
|
|
|
|
|
}
|
2026-01-17 12:32:55 +08:00
|
|
|
|
|
|
|
|
function confirmationAnalysis(row: any) {
|
|
|
|
|
ElMessageBox.confirm("确定对"+ row.name +"故情景分析进行模拟吗?", "确认模拟", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
let params = {
|
|
|
|
|
projectId: row.projectId,
|
|
|
|
|
scenarioId: row.scenarioId,
|
|
|
|
|
};
|
|
|
|
|
simulationInit(params).then((res:any) => {
|
|
|
|
|
if (res.code == '0') {
|
|
|
|
|
let data = {
|
|
|
|
|
data: res.data
|
|
|
|
|
}
|
2026-01-19 17:31:35 +08:00
|
|
|
simulationRun(row.projectId, row.scenarioId, data || {}).then((res:any) => {
|
|
|
|
|
if(res.code == '0'){
|
|
|
|
|
ElMessage({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "模拟计算成功",
|
|
|
|
|
});
|
|
|
|
|
gettableData();
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
window.open(webUrl + '/#/viewanalysis?projectId='+ row.projectId +'&scenarioId='+ row.scenarioId, '_blank');
|
|
|
|
|
}, 1000);
|
|
|
|
|
|
|
|
|
|
}else{
|
|
|
|
|
ElMessage({
|
|
|
|
|
type: "error",
|
|
|
|
|
message: "模拟运行失败,请检查后端服务是否正常",
|
|
|
|
|
});
|
|
|
|
|
}{}
|
|
|
|
|
|
2026-01-17 12:32:55 +08:00
|
|
|
}).catch((error) => {
|
|
|
|
|
console.error('模拟运行失败:', error);
|
|
|
|
|
ElMessage({
|
|
|
|
|
type: "error",
|
|
|
|
|
message: "模拟运行失败,请检查后端服务是否正常",
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
}else{
|
|
|
|
|
ElMessage({
|
|
|
|
|
type: "error",
|
|
|
|
|
message: "模拟初始化失败",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
}
|
2026-01-19 17:31:35 +08:00
|
|
|
const isShowCondition = ref<boolean>(false); // 是否显示条件模型
|
|
|
|
|
const conditionModelRef = ref<any>() // 条件模型实例
|
|
|
|
|
function handleScenarioClose(){
|
|
|
|
|
isShowCondition.value = false;
|
|
|
|
|
}
|
|
|
|
|
function submitConditionClick(){
|
|
|
|
|
const tempData = conditionModelRef.value?.submitClick()
|
|
|
|
|
let data:any = []
|
|
|
|
|
tempData.forEach((item: any) => {
|
|
|
|
|
data.push({
|
|
|
|
|
triggerTime:'0',
|
|
|
|
|
eventId: item.eventId ==null? '' : item.eventId,
|
|
|
|
|
attrChanges:JSON.stringify(item) ,
|
|
|
|
|
scenarioId: scenarioId.value
|
|
|
|
|
})
|
|
|
|
|
})
|
2026-01-17 12:32:55 +08:00
|
|
|
|
2026-01-19 17:31:35 +08:00
|
|
|
eventsBatchSave(data).then((res:any) => {
|
|
|
|
|
if (res.code == '0') {
|
|
|
|
|
isShowCondition.value = false;
|
|
|
|
|
gettableData();
|
|
|
|
|
ElMessage({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "修改成功",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
2026-01-17 12:32:55 +08:00
|
|
|
|
2026-01-19 17:31:35 +08:00
|
|
|
|
|
|
|
|
}
|
2026-01-17 12:32:55 +08:00
|
|
|
|
2025-12-26 11:33:50 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="scenario-box">
|
|
|
|
|
<div class="conductscenario-bg-box">
|
|
|
|
|
<div class="scenario-search-box"
|
|
|
|
|
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>
|
|
|
|
|
<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>
|
2025-12-26 17:27:12 +08:00
|
|
|
<el-table-column prop="name" label="事故情景名称" min-width="180"></el-table-column>
|
|
|
|
|
<el-table-column prop="name" label="算法模型" min-width="180"></el-table-column>
|
2025-12-26 11:33:50 +08:00
|
|
|
|
|
|
|
|
<el-table-column prop="updatedAt" label="模拟时间" width="200">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<span v-if="scope.row.updatedAt != null">{{ dateFormat(scope.row.updatedAt) }}</span>
|
|
|
|
|
<span v-else>--</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
2025-12-26 17:27:12 +08:00
|
|
|
<el-table-column prop="updatedAt" label="状态" width="100">
|
2025-12-26 11:33:50 +08:00
|
|
|
<template #default="scope">
|
2025-12-26 17:27:12 +08:00
|
|
|
<span v-if="scope.row.status == 0" style="color: #0099FF;">初始创建</span>
|
|
|
|
|
<span v-else-if="scope.row.status == 1" style="color: #FF9900;">进行中</span>
|
|
|
|
|
<span v-else style="color: #009933;">已完成</span>
|
2025-12-26 11:33:50 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column fixed="right" label="操作" width="190">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<span
|
|
|
|
|
style="display: flex;display: -webkit-flex; justify-content: space-around;-webkit-justify-content: space-around; ">
|
|
|
|
|
|
2026-01-17 12:32:55 +08:00
|
|
|
<img src="@/assets/table/edit.png" alt="" title="修改" v-if="scope.row.status == 0"
|
2026-01-19 17:31:35 +08:00
|
|
|
@click="editClick(scope.row,'修改')" style="cursor: pointer; ">
|
|
|
|
|
|
2026-01-17 12:32:55 +08:00
|
|
|
<img src="@/assets/table/view.png" alt="" title="查看" v-if="scope.row.status != 0"
|
2026-01-19 17:31:35 +08:00
|
|
|
@click="editClick(scope.row,'查看')" style="cursor: pointer; ">
|
2026-01-17 12:32:55 +08:00
|
|
|
|
|
|
|
|
<img src="@/assets/table/shifa.png" alt="" title="始发事件" v-if="scope.row.status == 0"
|
2026-01-19 17:31:35 +08:00
|
|
|
@click="departureClick(scope.row,'初始条件设置')" style="cursor: pointer; ">
|
2026-01-17 12:32:55 +08:00
|
|
|
<img src="@/assets/table/see.png" alt="" title="查看始发事件" v-if="scope.row.status != 0"
|
2026-01-19 17:31:35 +08:00
|
|
|
@click="departureClick(scope.row,'查看初始条件')" style="cursor: pointer; ">
|
2026-01-17 12:32:55 +08:00
|
|
|
|
|
|
|
|
<img src="@/assets/table/moni.png" alt="" title="模拟计算" v-if="scope.row.status == 0"
|
|
|
|
|
@click="confirmationAnalysis(scope.row)" style="cursor: pointer; ">
|
|
|
|
|
<img src="@/assets/table/moni_disabled.png" alt="" title="查看始发事件" v-if="scope.row.status != 0">
|
|
|
|
|
|
|
|
|
|
<img src="@/assets/table/result.png" alt="" title="计算结果" v-if="scope.row.status == 2"
|
2026-01-19 17:31:35 +08:00
|
|
|
@click="editClick1(scope.row)" style="cursor: pointer; ">
|
2026-01-17 12:32:55 +08:00
|
|
|
<img src="@/assets/table/result_disabled.png" alt="" title="计算结果" v-if="scope.row.status != 2">
|
2026-01-19 17:31:35 +08:00
|
|
|
|
2026-01-17 12:32:55 +08:00
|
|
|
<img src="@/assets/table/del.png" alt="" title="删除"
|
2025-12-26 11:33:50 +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>
|
2026-01-15 08:47:44 +08:00
|
|
|
<Createscenario v-if="dialogVisible" :projectInfo="projectInfo" @closeCreatescenario ="closeCreatescenario"/>
|
2026-01-19 17:31:35 +08:00
|
|
|
<el-dialog v-model="dialogEditVisible" :close-on-click-modal="false"
|
|
|
|
|
:modal="false" draggable :before-close="handleClose" title="新增事故情景"
|
|
|
|
|
append-to-body width="590px">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-form ref="infoForm" :model="info" :rules="rules" label-width="140px" style="width:500px">
|
|
|
|
|
<el-form-item label="事故情景名称:" prop="name">
|
|
|
|
|
<el-input v-model="info.name" style="width: 100%" placeholder="输入事故情景名称" :disabled="title == '查看事故情景'"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="算法类型:" prop="algorithmType" :disabled="title == '查看事故情景'">
|
|
|
|
|
<el-select v-model="info.algorithmType" placeholder="请选择" style="width:100%;" clearable :disabled="title == '查看事故情景'">
|
|
|
|
|
<el-option v-for="item in algorithmTypeData" :key="item.algorithmType" :label="item.name" :value="item.algorithmType" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="事故情景描述:" :disabled="title == '查看事故情景'">
|
|
|
|
|
<el-input type="textarea" v-model="info.description" :rows="6" style="width: 100%" placeholder="请输入事故情景描述" :disabled="title == '查看事故情景'"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div style="text-align: right;">
|
|
|
|
|
<el-button @click="handleClose">取消</el-button>
|
|
|
|
|
<el-button type="primary" @click="submitClick" v-if="title == '修改事故情景'">确定</el-button>
|
2025-12-26 17:27:12 +08:00
|
|
|
</div>
|
2026-01-19 17:31:35 +08:00
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<el-dialog v-model="isShowCondition" :close-on-click-modal="false"
|
|
|
|
|
:modal="false" draggable :before-close="handleScenarioClose" :title="title"
|
|
|
|
|
append-to-body width="1000px">
|
|
|
|
|
<ConditionModel v-if="isShowCondition" ref="conditionModelRef" :projectInfo="projectInfo" :scenarioId="scenarioId"
|
|
|
|
|
:isEdit="isEdit"
|
|
|
|
|
/>
|
2025-12-26 17:27:12 +08:00
|
|
|
<div style="text-align: center;">
|
2026-01-19 17:31:35 +08:00
|
|
|
<el-button @click="handleScenarioClose">取消</el-button>
|
|
|
|
|
<el-button type="primary" @click="submitConditionClick" v-if="title == '初始条件设置'">确定</el-button>
|
2025-12-26 17:27:12 +08:00
|
|
|
</div>
|
|
|
|
|
|
2026-01-19 17:31:35 +08:00
|
|
|
</el-dialog>
|
|
|
|
|
|
2025-12-26 11:33:50 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.scenario-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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.conductscenario-bg-box {
|
|
|
|
|
padding: 0px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100vh - 130px);
|
|
|
|
|
overflow: auto;
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.line {
|
|
|
|
|
height: 1px;
|
|
|
|
|
background: rgba(240, 241, 242, 1);
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menuspan {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 120px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-family: "微软雅黑";
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
color: #787878;
|
|
|
|
|
}
|
|
|
|
|
</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
|
|
|
|
|
}
|
2025-12-26 17:27:12 +08:00
|
|
|
.el-dialog .el-select__wrapper{
|
|
|
|
|
height: 40px
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-26 11:33:50 +08:00
|
|
|
.scenario-search-box .el-button{
|
|
|
|
|
height: 36px !important;
|
|
|
|
|
}
|
|
|
|
|
.el-dialog .el-button{
|
|
|
|
|
height: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-26 17:27:12 +08:00
|
|
|
|
|
|
|
|
.scenario-setting-box{
|
|
|
|
|
width: 900px;
|
|
|
|
|
height: 100px;
|
|
|
|
|
background: inherit;
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.scenario-setting-box .el-step__icon.is-text{
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
background-color: #c9c9c9 ;
|
|
|
|
|
border-color: #c9c9c9 ;
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scenario-setting-box .is-finish .el-step__icon.is-text{
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
background-color: #266fff ;
|
|
|
|
|
border-color: #266fff ;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scenario-setting-box .is-process .el-step__icon.is-text{
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
background-color: #266fff ;
|
|
|
|
|
border-color: #266fff ;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.scenario-setting-box .el-step__title{
|
|
|
|
|
font-family: 'Arial Normal', 'Arial', sans-serif;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
letter-spacing: normal;
|
|
|
|
|
}
|
|
|
|
|
.scenario-setting-box .el-step__title.is-finish{
|
|
|
|
|
color: #266fff ;
|
|
|
|
|
}
|
|
|
|
|
.scenario-setting-box .el-step__title.is-process{
|
|
|
|
|
color: #266fff ;
|
|
|
|
|
}
|
|
|
|
|
.scenario-setting-box .el-step__line{
|
|
|
|
|
height: 1px !important;
|
|
|
|
|
background-color: #ebebeb !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scenario-setting-bottombox{
|
|
|
|
|
width: 900px;
|
|
|
|
|
height: calc(100vh - 300px);
|
|
|
|
|
background: inherit;
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
|
|
|
|
|
margin: 20px auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-26 11:33:50 +08:00
|
|
|
</style>
|