Эх сурвалжийг харах

Merge branch 'http_mock' of git.xiaojukeji.com:pu_qa_tool/thoth-frontend into http_mock

qinzhipeng_v@didiglobal.com 4 жил өмнө
parent
commit
667bbc6fe5

+ 8 - 15
src/views/dataBigManage/components/qualityModule/index.vue

@@ -15,11 +15,8 @@
               :span="12"
               class="mb10"
             >
-              <div
-                :style="{ cursor: item.label === '新增问题' && 'pointer'}"
-                @click.stop="onDetial('线上问题', item)"
-              >
-                <dataItem :item="item" />
+              <div :style="{ cursor: item.label === '新增问题' && 'pointer'}"><!--@click.stop="onDetial('线上问题', item)"-->
+                <dataItem :item="item" @subCountListClick="(subCountItem) => onDetial('线上问题', item)" />
               </div>
             </el-row>
           </el-col>
@@ -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>