|
|
|
@ -312,7 +312,7 @@
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="title"
|
|
|
|
|
:visible.sync="openCheck"
|
|
|
|
|
width="1100px"
|
|
|
|
|
width="1200px"
|
|
|
|
|
append-to-body
|
|
|
|
|
v-if="openCheck"
|
|
|
|
|
>
|
|
|
|
@ -362,16 +362,24 @@
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="检查项信息" v-if="checkList != null">
|
|
|
|
|
<el-table :data="checkList" border style="width: 100%">
|
|
|
|
|
<el-table-column prop="itemName" label="检查项名称" width="200">
|
|
|
|
|
<el-table :data="checkList" border style="width: 100%" :span-method="objectSpanMethod">
|
|
|
|
|
<el-table-column prop="itemTypeName" label="检查类型" width="100">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="itemMethod" label="检查项方法" width="160">
|
|
|
|
|
<el-table-column prop="itemName" label="检查项名称" width="160">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="itemMethod" label="方法" width="100">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="itemTools" label="工具" width="60">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="standardName" label="标准名称" width="180">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="standardType" label="标准类型" width="85">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailReach" label="是否达标" width="85">
|
|
|
|
|
<el-table-column prop="planLoopType" label="周期" width="50">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="planLoop" label="次" width="37">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailReach" label="是否达标" width="80">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag
|
|
|
|
|
:options="dict.type.device_reach_standard"
|
|
|
|
@ -385,9 +393,9 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailDownLimit" label="下限" width="50">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailUnit" label="单位" width="47">
|
|
|
|
|
<el-table-column prop="detailUnit" label="单位" width="45">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="picturePath" label="图片">
|
|
|
|
|
<el-table-column prop="picturePath" label="图片" width="60">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-popover placement="right" width="300" trigger="hover">
|
|
|
|
|
<div class="standardUrl_body">
|
|
|
|
@ -631,12 +639,12 @@
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="title"
|
|
|
|
|
:visible.sync="viewCheck"
|
|
|
|
|
width="1100px"
|
|
|
|
|
width="1200px"
|
|
|
|
|
append-to-body
|
|
|
|
|
v-if="viewCheck"
|
|
|
|
|
>
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
<el-tabs type="border-card" :key="new Date().getTime()">
|
|
|
|
|
<el-tabs type="border-card">
|
|
|
|
|
<el-tab-pane label="基本信息">
|
|
|
|
|
<el-descriptions
|
|
|
|
|
:column="3"
|
|
|
|
@ -697,16 +705,24 @@
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="检查项信息" v-if="checkList != null">
|
|
|
|
|
<el-table :data="checkList" border style="width: 100%">
|
|
|
|
|
<el-table-column prop="itemName" label="检查项名称" width="200">
|
|
|
|
|
<el-table :data="checkList" border style="width: 100%" :span-method="objectSpanMethod">
|
|
|
|
|
<el-table-column prop="itemTypeName" label="检查类型" width="100">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="itemName" label="检查项名称" width="160">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="itemMethod" label="检查项方法" width="160">
|
|
|
|
|
<el-table-column prop="itemMethod" label="方法" width="100">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="itemTools" label="工具" width="60">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="standardName" label="标准名称" width="180">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="standardType" label="标准类型" width="85">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailReach" label="是否达标" width="85">
|
|
|
|
|
<el-table-column prop="planLoopType" label="周期" width="50">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="planLoop" label="次" width="37">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailReach" label="是否达标" width="80">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag
|
|
|
|
|
:options="dict.type.device_reach_standard"
|
|
|
|
@ -720,9 +736,9 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailDownLimit" label="下限" width="50">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailUnit" label="单位" width="47">
|
|
|
|
|
<el-table-column prop="detailUnit" label="单位" width="45">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="picturePath" label="图片">
|
|
|
|
|
<el-table-column prop="picturePath" label="图片" width="60">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-popover placement="right" width="300" trigger="hover">
|
|
|
|
|
<div class="standardUrl_body">
|
|
|
|
@ -853,7 +869,7 @@
|
|
|
|
|
<el-form-item label="设备编码" prop="equipmentCode">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.equipmentCode"
|
|
|
|
|
placeholder="请选择辅助设备"
|
|
|
|
|
placeholder="请选择设备编码"
|
|
|
|
|
style="width: 200px"
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
@ -978,7 +994,7 @@
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="title"
|
|
|
|
|
:visible.sync="openView"
|
|
|
|
|
width="1100px"
|
|
|
|
|
width="1200px"
|
|
|
|
|
append-to-body
|
|
|
|
|
v-if="openView"
|
|
|
|
|
>
|
|
|
|
@ -1028,16 +1044,24 @@
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="检查项信息" v-if="checkList != null">
|
|
|
|
|
<el-table :data="checkList" border style="width: 100%">
|
|
|
|
|
<el-table-column prop="itemName" label="检查项名称" width="200">
|
|
|
|
|
<el-table :data="checkList" border style="width: 100%" :span-method="objectSpanMethod">
|
|
|
|
|
<el-table-column prop="itemTypeName" label="检查类型" width="100">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="itemName" label="检查项名称" width="160">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="itemMethod" label="检查项方法" width="160">
|
|
|
|
|
<el-table-column prop="itemMethod" label="方法" width="100">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="itemTools" label="工具" width="60">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="standardName" label="标准名称" width="180">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="standardType" label="标准类型" width="85">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailReach" label="是否达标" width="85">
|
|
|
|
|
<el-table-column prop="planLoopType" label="周期" width="50">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="planLoop" label="次" width="37">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailReach" label="是否达标" width="80">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag
|
|
|
|
|
:options="dict.type.device_reach_standard"
|
|
|
|
@ -1051,9 +1075,9 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailDownLimit" label="下限" width="50">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="detailUnit" label="单位" width="47">
|
|
|
|
|
<el-table-column prop="detailUnit" label="单位" width="45">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="picturePath" label="图片">
|
|
|
|
|
<el-table-column prop="picturePath" label="图片" width="60">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-popover placement="right" width="300" trigger="hover">
|
|
|
|
|
<div class="standardUrl_body">
|
|
|
|
@ -1453,8 +1477,12 @@ export default {
|
|
|
|
|
if (item1 != null) {
|
|
|
|
|
item1.standardList.forEach((item) => {
|
|
|
|
|
var standard = {};
|
|
|
|
|
standard.itemTypeName = item1.itemTypeName;
|
|
|
|
|
standard.itemName = item1.itemName;
|
|
|
|
|
standard.itemMethod = item1.itemMethod;
|
|
|
|
|
standard.itemTools = item1.itemTools;
|
|
|
|
|
standard.planLoop = item1.planLoop;
|
|
|
|
|
standard.planLoopType = item1.planLoopType;
|
|
|
|
|
standard.standardName = item.standardName;
|
|
|
|
|
standard.detailUpLimit = item.detailUpLimit;
|
|
|
|
|
standard.detailDownLimit = item.detailDownLimit;
|
|
|
|
@ -1469,8 +1497,10 @@ export default {
|
|
|
|
|
standardUrlLists.push(item2.fileAddress);
|
|
|
|
|
});
|
|
|
|
|
standard.standardUrlLists = standardUrlLists;
|
|
|
|
|
standards.push(standard);
|
|
|
|
|
} else {
|
|
|
|
|
standard.standardUrlLists = null;
|
|
|
|
|
}
|
|
|
|
|
standards.push(standard);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
@ -1525,8 +1555,12 @@ export default {
|
|
|
|
|
if (item1 != null) {
|
|
|
|
|
item1.standardList.forEach((item) => {
|
|
|
|
|
var standard = {};
|
|
|
|
|
standard.itemTypeName = item1.itemTypeName;
|
|
|
|
|
standard.itemName = item1.itemName;
|
|
|
|
|
standard.itemMethod = item1.itemMethod;
|
|
|
|
|
standard.itemTools = item1.itemTools;
|
|
|
|
|
standard.planLoop = item1.planLoop;
|
|
|
|
|
standard.planLoopType = item1.planLoopType;
|
|
|
|
|
standard.standardName = item.standardName;
|
|
|
|
|
standard.detailUpLimit = item.detailUpLimit;
|
|
|
|
|
standard.detailDownLimit = item.detailDownLimit;
|
|
|
|
@ -1541,8 +1575,10 @@ export default {
|
|
|
|
|
standardUrlLists.push(item2.fileAddress);
|
|
|
|
|
});
|
|
|
|
|
standard.standardUrlLists = standardUrlLists;
|
|
|
|
|
standards.push(standard);
|
|
|
|
|
} else {
|
|
|
|
|
standard.standardUrlLists = null;
|
|
|
|
|
}
|
|
|
|
|
standards.push(standard);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
@ -1640,6 +1676,59 @@ export default {
|
|
|
|
|
`faultReport_${new Date().getTime()}.xlsx`
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
objectSpanMethod({ row, column, rowIndex, columnIndex }) {
|
|
|
|
|
if (columnIndex === 0) {
|
|
|
|
|
// 获取当前单元格的值
|
|
|
|
|
const currentValue = row[column.property];
|
|
|
|
|
// 获取上一行相同列的值
|
|
|
|
|
const preRow = this.checkList[rowIndex - 1];
|
|
|
|
|
const preValue = preRow ? preRow[column.property] : null;
|
|
|
|
|
// 如果当前值和上一行的值相同,则将当前单元格隐藏
|
|
|
|
|
if (currentValue === preValue) {
|
|
|
|
|
return { rowspan: 0, colspan: 0 };
|
|
|
|
|
} else {
|
|
|
|
|
// 否则计算当前单元格应该跨越多少行
|
|
|
|
|
let rowspan = 1;
|
|
|
|
|
for (let i = rowIndex + 1; i < this.checkList.length; i++) {
|
|
|
|
|
const nextRow = this.checkList[i];
|
|
|
|
|
const nextValue = nextRow[column.property];
|
|
|
|
|
if (nextValue === currentValue) {
|
|
|
|
|
rowspan++;
|
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return { rowspan, colspan: 1 };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (columnIndex === 1) {
|
|
|
|
|
// 获取当前单元格的值
|
|
|
|
|
const currentValue = row[column.property];
|
|
|
|
|
// 获取上一行相同列的值
|
|
|
|
|
const preRow = this.checkList[rowIndex - 1];
|
|
|
|
|
const preValue = preRow ? preRow[column.property] : null;
|
|
|
|
|
// 如果当前值和上一行的值相同,则将当前单元格隐藏
|
|
|
|
|
if (currentValue === preValue) {
|
|
|
|
|
return { rowspan: 0, colspan: 0 };
|
|
|
|
|
} else {
|
|
|
|
|
// 否则计算当前单元格应该跨越多少行
|
|
|
|
|
let rowspan = 1;
|
|
|
|
|
for (let i = rowIndex + 1; i < this.checkList.length; i++) {
|
|
|
|
|
const nextRow = this.checkList[i];
|
|
|
|
|
const nextValue = nextRow[column.property];
|
|
|
|
|
if (nextValue === currentValue) {
|
|
|
|
|
rowspan++;
|
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return { rowspan, colspan: 1 };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|