Selaa lähdekoodia

报告点击问题修复

wangtao 4 päivää sitten
vanhempi
commit
39478eaaa4
1 muutettua tiedostoa jossa 2 lisäystä ja 3 poistoa
  1. 2 3
      src/pages/business/mhxf/fireReport/index.vue

+ 2 - 3
src/pages/business/mhxf/fireReport/index.vue

@@ -16,13 +16,12 @@
     <template #default>
       <view class="fireReport-area">
         <view class="fireReport-area_center" v-for="(li, index) in dataList" :key="index">
-          <view class="fireReport-area_center_img" @click="handleSelect()">
+          <view class="fireReport-area_center_img">
             <u-image src="@/static/images/common/fireReport.png" width="13px" height="13px"></u-image>
           </view>
           <view class="fireReport-area_center_title" @click="handleSelect(li.reportPath)">
             <view>{{ li.reportName }}</view>
           </view>
-
           <view class="fireReport-area_center_button" @click="handleDownload(li.reportPath)">下载报告</view>
         </view>
       </view>
@@ -47,7 +46,7 @@ const total = ref(0);
  * @列表点击事件
  */
 function handleSelect(reportPath) {
-  proxy.$tab.navigateTo("/pages/business/mhxf/fireReport/components/detailedPath?reportPath=" + reportPath);
+    proxy.$tab.navigateTo("/pages/business/mhxf/fireReport/components/detailedPath?reportPath=" + reportPath);
 }
 
 /**