@@ -131,6 +132,7 @@
>
+
@@ -142,6 +144,7 @@
@pagination="getToolDownDetailStatistics"
/>
+
@@ -200,7 +203,7 @@ export default {
queryParams1: {
pageNum: 1,
pageSize: 10,
- toolId: ''
+ businessId: ''
},
// 工具下载统计详情组件控制属性
detailDrawerOpen: false,
@@ -251,14 +254,13 @@ export default {
let self = this
this.downLoading = true
listCount(this.addDateRange(this.queryParams, this.dateRange)).then(res => {
- self.total = res?.total
+ self.downTotal = res?.total
self.toolDownStatList = res?.rows || []
self.downLoading = false
}).catch(() => { self.downLoading = false });
-
},
handleDetail(row){
- this.$set(this.queryParams1, "toolId", row.toolId)
+ this.$set(this.queryParams1, "businessId", row.businessId)
this.detailDrawerOpen = true
},
/** 统计类型、类别、状态**/
diff --git a/src/views/tool/downloadFileDetail.vue b/src/views/tool/downloadFileDetail.vue
index a6956cc..3d0a547 100644
--- a/src/views/tool/downloadFileDetail.vue
+++ b/src/views/tool/downloadFileDetail.vue
@@ -4,6 +4,7 @@
+
@@ -23,6 +24,13 @@
+
@@ -72,7 +80,7 @@
replyContent: [],
isPreviewDisable: false,
attFileType: "zip,rar,7z",
-
+ total: 0
}
},
created(){
diff --git a/src/views/tool/index.vue b/src/views/tool/index.vue
index 1cd05cd..4df0b82 100644
--- a/src/views/tool/index.vue
+++ b/src/views/tool/index.vue
@@ -95,15 +95,15 @@