zhangliang2 3 жил өмнө
parent
commit
0fb1bd3a71

+ 1 - 1
src/views/workManagement/evaluationReport.vue

@@ -74,7 +74,7 @@ export default {
                     prop: "sceneNum",
                 },
                 {
-                    label: "测试权重",
+                    label: "测试权重%",
                     prop: "weight",
                 },
                 {

+ 5 - 3
src/views/workManagement/manualRunProjectDetail.vue

@@ -356,11 +356,13 @@ export default {
                     data: {
                         id,
                     },
-                }).then((res) => {
+                }).then(async (res) => {
                     if (res.code == 200 && res.info) {
                         this.form = res.info;
-                        this.getLists();
-                        this.getMaxSimulationTime();
+                        await this.getLists();
+                        await this.getMaxSimulationTime();
+                        this.vehicleSelChange(res.info.vehicle);
+                        this.sceneSelChange(res.info.scene);
                     } else {
                         this.$message.error(res.message || "获取信息失败");
                     }

+ 1 - 0
src/views/workManagement/projectInfo.vue

@@ -280,6 +280,7 @@ export default {
             }
         },
         downReport() {
+            if (this.info.nowRunState != "30") return;
             this.$axios({
                 method: "post",
                 url: this.$api.workManagement.exportProjectReportById,

+ 11 - 7
src/views/workManagement/taskInfo.vue

@@ -59,21 +59,25 @@
                     <span>里程(千米):</span>
                     <b>{{ info.mileage }}</b>
                 </div>
+                <div class="info">
+                    <span>平均速度(千米/小时):</span>
+                    <b>{{ info.averageVelocity }}</b>
+                </div>
                 <div class="info">
                     <span>最大速度(千米/小时):</span>
                     <b>{{ info.maximunSpeed }}</b>
                 </div>
                 <div class="info">
-                    <span>最大减速度(千米/小时):</span>
-                    <b>{{ info.maximumDeceleration }}</b>
+                    <span>最速度(千米/小时):</span>
+                    <b>{{ info.minimunVelocity }}</b>
                 </div>
                 <div class="info">
-                    <span>平均速度(千米/小时):</span>
-                    <b>{{ info.averageVelocity }}</b>
+                    <span>最大加速度(千米/小时):</span>
+                    <b>{{ info.maximumDeceleration }}</b>
                 </div>
                 <div class="info">
-                    <span>最速度(千米/小时):</span>
-                    <b>{{ info.minimunVelocity }}</b>
+                    <span>最大减速度(千米/小时):</span>
+                    <b>{{ info.maximumDeceleration }}</b>
                 </div>
                 <div class="info">
                     <span>最大摆角速度(弧度/秒):</span>
@@ -321,7 +325,7 @@ export default {
 
         .info {
             display: flex;
-            width: 300px;
+            width: 250px;
             margin: 0 20px 22px 0;
 
             span {