Browse Source

用户类型分析取反问题

xiaohaizhao 9 tháng trước cách đây
mục cha
commit
217dfc7894
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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],
             });
           });