|
@@ -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);
|
|
|
}
|
|
|
|
|
|
/**
|