Browse Source

用户类型分析取反问题

xiaohaizhao 9 months ago
parent
commit
217dfc7894
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/WebsiteManagement/dataStatistics/index.vue

+ 2 - 2
src/WebsiteManagement/dataStatistics/index.vue

@@ -337,12 +337,12 @@ export default {
           res.data.filter((v) => {
             list.push({
               date: v.date,
-              count: v.visitorcount,
+              count: v.logincount,
               type: type[0],
             });
             list.push({
               date: v.date,
-              count: v.logincount,
+              count: v.visitorcount,
               type: type[1],
             });
           });