fix:玻纤9.13问题修改

This commit is contained in:
shijing 2025-09-15 14:11:40 +08:00
parent b363333029
commit 8147af1d3c
3 changed files with 6 additions and 6 deletions

View File

@ -332,7 +332,7 @@ export default {
res.results.forEach((item) => {
let obj = {};
Object.assign(obj, item);
obj.value = '';
obj.value = null;
that.testitems.push(obj);
})
});

View File

@ -295,7 +295,7 @@ export default {
res.results.forEach((item) => {
let obj = {};
Object.assign(obj, item);
obj.value = '';
obj.value = null;
that.testitems.push(obj);
})
});

View File

@ -120,22 +120,22 @@
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.是否保温}}</span>
</template>
</el-table-column>
<el-table-column label="温度" v-if="route_code=='zlybcl'">
<el-table-column label="温度(℃)" v-if="route_code=='zlybcl'">
<template #default="scope">
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.温度}}</span>
</template>
</el-table-column>
<el-table-column label="压力" v-if="route_code=='zlybcl'">
<el-table-column label="压力(mpa)" v-if="route_code=='zlybcl'">
<template #default="scope">
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.压力}}</span>
</template>
</el-table-column>
<el-table-column label="刻度" v-if="route_code=='zlybcl'">
<el-table-column label="刻度(mm)" v-if="route_code=='zlybcl'">
<template #default="scope">
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.刻度}}</span>
</template>
</el-table-column>
<el-table-column label="压板用时" v-if="route_code=='zlybcl'">
<el-table-column label="压板用时(分)" v-if="route_code=='zlybcl'">
<template #default="scope">
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.压板用时}}</span>
</template>