|
@@ -15,10 +15,7 @@
|
|
|
:span="12"
|
|
|
class="mb10"
|
|
|
>
|
|
|
- <div
|
|
|
- :style="{ cursor: item.label === '新增问题' && 'pointer'}"
|
|
|
- @click.stop="onDetial('线上问题', item)"
|
|
|
- >
|
|
|
+ <div :style="{ cursor: item.label === '新增问题' && 'pointer'}"><!--@click.stop="onDetial('线上问题', item)"-->
|
|
|
<dataItem :item="item" @subCountListClick="(subCountItem) => onDetial('线上问题', item)" />
|
|
|
</div>
|
|
|
</el-row>
|
|
@@ -64,11 +61,9 @@
|
|
|
<div class="titleLevel3 mb10">线下质量</div>
|
|
|
<el-row :gutter="10">
|
|
|
<el-col v-for="(item, index) in mainData.offlineProblemList" :key="index" :span="12" class="mb10">
|
|
|
- <div
|
|
|
- :style="{ cursor: 'pointer'}"
|
|
|
- @click.stop="onDetial('线下质量', item)"
|
|
|
- >
|
|
|
- <dataItem :item="item" />
|
|
|
+ <div :style="{ cursor: 'pointer'}" @click.stop="onDetial('线下质量', item)">
|
|
|
+ <!--@click.stop="onDetial('线下质量', item)"-->
|
|
|
+ <dataItem :item="item" @subCountListClick="(subCountItem) => onDetial('线下质量', item)" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -101,11 +96,9 @@
|
|
|
:span="12"
|
|
|
class="mb10"
|
|
|
>
|
|
|
- <div
|
|
|
- :style="{ cursor: item.label !== '免测上线率' && 'pointer'}"
|
|
|
- @click.stop="onDetial('上线过程', {...item, parent: mainData.onlineProcessList, index: index, moduleName: '上线过程' })"
|
|
|
- >
|
|
|
- <dataItem :item="item" />
|
|
|
+ <div :style="{ cursor: item.label !== '免测上线率' && 'pointer'}" @click.stop="onDetial('上线过程', {...item, parent: mainData.onlineProcessList, index: index, moduleName: '上线过程' })">
|
|
|
+ <!-- @click.stop="onDetial('上线过程', {...item, parent: mainData.onlineProcessList, index: index, moduleName: '上线过程' })" -->
|
|
|
+ <dataItem :item="item" @subCountListClick="(subCountItem) => onDetial('上线过程', {...item, parent: mainData.onlineProcessList, index: index, moduleName: '上线过程' })" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|