|
@@ -59,6 +59,7 @@
|
|
|
v-if="itemLevel4.fileName && itemLevel4.filePath"
|
|
|
:href="itemLevel4.filePath"
|
|
|
:download="itemLevel4.fileName"
|
|
|
+ @click="onDownload(itemLevel4)"
|
|
|
>
|
|
|
{{ itemLevel4.fileName }}
|
|
|
</a>
|
|
@@ -94,6 +95,9 @@ export default {
|
|
|
},
|
|
|
onClickDeviceIcon(e) {
|
|
|
e.target.nextSibling.click()
|
|
|
+ },
|
|
|
+ onDownload(deviceInfo) {
|
|
|
+ globalApi.reportDownload(deviceInfo.id)
|
|
|
}
|
|
|
}
|
|
|
}
|