diff --git a/src/views/HomePage/index.vue b/src/views/HomePage/index.vue
index e52a4ae..a748b10 100644
--- a/src/views/HomePage/index.vue
+++ b/src/views/HomePage/index.vue
@@ -8,10 +8,6 @@
总任务数
-
{{totalData.taskNum || 0}}
@@ -24,10 +20,6 @@
总素材数
-
{{totalData.referenceNum || 0}}
@@ -40,10 +32,6 @@
总线索数
-
{{totalData.customerActionNoteNum || 0}}
@@ -124,16 +112,23 @@
-
+
+
+
+ 本周
+ 本月
+ 全年
+
+
@@ -144,13 +139,6 @@
-
-
- 本周
- 本月
- 全年
-
-
@@ -177,6 +165,7 @@
本周
本月
全年
+ 全部
@@ -229,10 +229,18 @@ export default defineComponent({
}).catch(() => {})
},
//审核
- review(value,type) {
+ review(value) {
+ this.getApi();
this.reviewVisible = true;
- this.platformType = type;
- this.reviewForm.id = value;
+ this.platformType = value.type;
+ this.reviewForm.id = value.id;
+ this.reviewForm.playNum = value.playNum;
+ this.reviewForm.commendNum = value.commendNum;
+ this.reviewForm.collectionNum = value.collectionNum;
+ this.reviewForm.commentNum = value.commentNum;
+ this.reviewForm.reSendNum = value.reSendNum;
+ this.reviewForm.recommendNum = value.recommendNum;
+ this.getTransVal();
},
reviewConfirm() {
this.proxy.$post("/video/valid", this.reviewForm).then(res => {