diff --git a/src/api/log/index.js b/src/api/log/index.js
index 35f78ba..3f9d87d 100644
--- a/src/api/log/index.js
+++ b/src/api/log/index.js
@@ -13,6 +13,13 @@ const userOperationNotice=()=>{
});
}
+const userRunning=()=>{
+ return request({
+ url:`/logs/user_operation/running`,
+ method:"get"
+ })
+}
+
//获取用户操作详情
const userOperation=(operation_id)=>{
return request({
@@ -33,6 +40,7 @@ export default {
serverState,
userOperationNotice,
userOperation,
- compileDeploy
+ compileDeploy,
+ userRunning
}
\ No newline at end of file
diff --git a/src/views/dashboard/components/ModelFlow.vue b/src/views/dashboard/components/ModelFlow.vue
index 644b946..5181f9b 100644
--- a/src/views/dashboard/components/ModelFlow.vue
+++ b/src/views/dashboard/components/ModelFlow.vue
@@ -1,299 +1,347 @@
-
-
-
-
算法上传
-
-
-

-
-
-
-
-
-
-
算子检查
-
-
-

-
-
-
-
-
-
-
-
-
-
编译部署
-
-
-

-
-
-
-
-
-
-
-
推理评估
-
-
-

-
-
-
-
-
-
-
-
-
评估报告
-
-
-

-
-
-
+ {{ info }}
+
+
+
算法上传
+
+
+

+
+
+
+
+
+
+
算子互联
+
+
+

-
-
-
-
-
-
-

-
-
-
算子管理
-
-
-
-
-
-
-
-
-
-
-
-

-
-
-
设备管理
-
-
-
-
-

-
-
-
工具管理
-
-
-
-
-
-
-
-
-

-
-
-
数据管理
-
-
+
+
+
+
+
+
+
+
+
编译部署
+
+
+

+
+
+
+
+
+
+
推理评估
+
+
+

+
+
+
+
+
+
+
+
+
评估报告
+
+
+

+
+
+
+
+
+
+
+
+
+
+

+
+
+
算子管理
+
+
+
+
+
+
+
+
+
+
+
+

+
+
+
设备管理
+
+
+
+
+

+
+
+
工具管理
+
+
+
+
+
+
+
+
+

+
+
+
数据管理
+
+
-
-
+
+
\ No newline at end of file
diff --git a/src/views/dashboard/components/ModelFlow2.vue b/src/views/dashboard/components/ModelFlow2.vue
index 7b45481..42dc5d3 100644
--- a/src/views/dashboard/components/ModelFlow2.vue
+++ b/src/views/dashboard/components/ModelFlow2.vue
@@ -1,299 +1,327 @@
-
-
-
-
任务描述
-
-
-

-
-
-
-
-
-
-
算子检查
-
-
-

-
-
-
-
-
-
-
-
-
-
编译部署
-
-
-

-
-
-
-
-
-
-
-
性能采集
-
-
-

-
-
-
-
-
-
-
-
-
评估报告
-
-
-

-
-
-
+
+
+
+
任务描述
+
+
+

+
+
+
+
+
+
+
算子互联
+
+
+

-
-
-
-
-
-
-

-
-
-
算子管理
-
-
-
-
-
-
-
-
-
-
-
-

-
-
-
设备管理
-
-
-
-
-

-
-
-
工具管理
-
-
-
-
-
-
-
-
-

-
-
-
数据集管理
-
-
+
+
+
+
+
+
+
+
+
编译部署
+
+
+

+
+
+
+
+
+
+
+
性能采集
+
+
+

+
+
+
+
+
+
+
+
+
评估报告
+
+
+

+
+
+
+
+
+
+
+
+
+
+

+
+
+
算子管理
+
+
+
+
+
+
+
+
+
+
+
+

+
+
+
设备管理
+
+
+
+
+

+
+
+
工具管理
+
+
+
+
+
+
+
+
+

+
+
+
数据集管理
+
+
-
-
+
+
\ No newline at end of file
diff --git a/src/views/model/uploadModel.vue b/src/views/model/uploadModel.vue
index 0ee8b73..4017624 100644
--- a/src/views/model/uploadModel.vue
+++ b/src/views/model/uploadModel.vue
@@ -278,9 +278,9 @@ function uploadFile(file) {
// 文件上传
function handleFileChange(file, b) {
- if (file.file.size > 10 * 1024 * 1024) {
- ElMessage.warning("文件大小不能超10M");
- file.onError("文件大小不能超10M")
+ if (file.file.size > 500 * 1024 * 1024) {
+ ElMessage.warning("文件大小不能超500M");
+ file.onError("文件大小不能超500M")
return;
}
let ext = file.file.name.split(".").pop().toLowerCase();
diff --git a/src/views/simulationEvaluation/addStep3.vue b/src/views/simulationEvaluation/addStep3.vue
index e445aab..0087a29 100644
--- a/src/views/simulationEvaluation/addStep3.vue
+++ b/src/views/simulationEvaluation/addStep3.vue
@@ -47,8 +47,7 @@
{{
- scope.row.tool_params_name ? scope.row.tool_params_name : "请选择"
- }}
+ scope.row.tool_params_name ? scope.row.tool_params_name : "请选择" }}