|
@@ -16,7 +16,7 @@
|
|
|
<qualityModule
|
|
|
:datas="mainData.quality"
|
|
|
@search="qualitySearch"
|
|
|
- @checkDetialModal="checkDetialModal"
|
|
|
+ @checkDetialModal="(data) => checkDetialModal({...data, headerTitle: '质量' })"
|
|
|
/>
|
|
|
<header class="header mb25 mt40">
|
|
|
<headTitle title="吞吐量" />
|
|
@@ -24,14 +24,14 @@
|
|
|
<throughputModule
|
|
|
:datas="mainData.throughput"
|
|
|
@search="qualitySearch"
|
|
|
- @checkDetialModal="checkDetialModal"
|
|
|
+ @checkDetialModal="(data) => checkDetialModal({...data, headerTitle: '吞吐量' })"
|
|
|
/>
|
|
|
<header class="header mb25 mt40">
|
|
|
<headTitle title="效率" />
|
|
|
</header>
|
|
|
<efficiencyModule
|
|
|
:datas="mainData.efficiency"
|
|
|
- @checkDetialModal="checkDetialModal"
|
|
|
+ @checkDetialModal="(data) => checkDetialModal({...data, headerTitle: '效率' })"
|
|
|
/>
|
|
|
</div>
|
|
|
<div>
|
|
@@ -144,7 +144,6 @@ export default {
|
|
|
},
|
|
|
// 弹窗数据
|
|
|
checkDetialModal(data) {
|
|
|
- console.log(data)
|
|
|
this.openDrawer = true
|
|
|
this.requireList = { ...data }
|
|
|
},
|