fix:玻纤9.13问题修改
This commit is contained in:
parent
b363333029
commit
8147af1d3c
|
@ -332,7 +332,7 @@ export default {
|
||||||
res.results.forEach((item) => {
|
res.results.forEach((item) => {
|
||||||
let obj = {};
|
let obj = {};
|
||||||
Object.assign(obj, item);
|
Object.assign(obj, item);
|
||||||
obj.value = '';
|
obj.value = null;
|
||||||
that.testitems.push(obj);
|
that.testitems.push(obj);
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
|
@ -295,7 +295,7 @@ export default {
|
||||||
res.results.forEach((item) => {
|
res.results.forEach((item) => {
|
||||||
let obj = {};
|
let obj = {};
|
||||||
Object.assign(obj, item);
|
Object.assign(obj, item);
|
||||||
obj.value = '';
|
obj.value = null;
|
||||||
that.testitems.push(obj);
|
that.testitems.push(obj);
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
|
@ -120,22 +120,22 @@
|
||||||
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.是否保温}}</span>
|
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.是否保温}}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="温度" v-if="route_code=='zlybcl'">
|
<el-table-column label="温度(℃)" v-if="route_code=='zlybcl'">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.温度}}</span>
|
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.温度}}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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">
|
<template #default="scope">
|
||||||
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.压力}}</span>
|
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.压力}}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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">
|
<template #default="scope">
|
||||||
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.刻度}}</span>
|
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.刻度}}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="压板用时" v-if="route_code=='zlybcl'">
|
<el-table-column label="压板用时(分)" v-if="route_code=='zlybcl'">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.压板用时}}</span>
|
<span v-if="scope.row.oinfo_json_">{{scope.row.oinfo_json_.压板用时}}</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue