Browse Source

首页页面内容修改

ZYZ 1 year ago
parent
commit
54445cb5e5
2 changed files with 47 additions and 34 deletions
  1. 12 11
      zkqy-ui/src/api/homePage/index.js
  2. 35 23
      zkqy-ui/src/views/index.vue

+ 12 - 11
zkqy-ui/src/api/homePage/index.js

@@ -1,22 +1,22 @@
 import request from '@/utils/request'
 
-//工业流&审批流
-export function getProcess() {
+//任务统计
+export function getTask() {
     return request({
       url: '/statistics/info/getProcessInformation',
       method: 'get',
     })
 }
 
-//登录次数统计
-export function getLogin() {
+//管道统计
+export function getPipeline() {
    return request({
      url: '/statistics/info/getLoginInformationStatistics',
      method: 'get',
    })
 }
 
-//登录统计信息
+//操作日志
 export function getOperation() {
     return request({
       url: '/statistics/info/getOperationInformationStatistics',
@@ -24,17 +24,18 @@ export function getOperation() {
     })
 }
 
-//数据建模数量
-export function getData() {
+//原材料统计
+export function getMaterial() {
     return request({
-      url: '/statistics/info/getDataModelingStatistics',
+      url: '/statistics/info/getTabularStatistics',
       method: 'get',
     })
 }
-//表单表格
-export function getTabular() {
+
+//用户登录统计
+export function getLogin() {
     return request({
-      url: '/statistics/info/getTabularStatistics',
+      url: '/statistics/info/getDataModelingStatistics',
       method: 'get',
     })
 }

+ 35 - 23
zkqy-ui/src/views/index.vue

@@ -110,11 +110,11 @@ import { mapGetters, mapState } from "vuex";
 import "swiper/css/swiper.css";
 import Swiper from "swiper";
 import {
-  getProcess,
+  getTask,
+  getPipeline,
   getOperation,
+  getMaterial,
   getLogin,
-  getTabular,
-  getData,
 } from "@/api/homePage/index";
 
 export default {
@@ -184,8 +184,8 @@ export default {
   },
   methods: {
     initData() {
-      //工业流&审批流
-      getProcess().then((response) => {
+      //任务统计
+      getTask().then((response) => {
         if (response.code == 200) {
           this.processList = response.data;
           //   console.log(this.processList);
@@ -202,8 +202,8 @@ export default {
         }
       });
 
-      //登录次数统计
-      getLogin().then((response) => {
+      //管道统计
+      getPipeline().then((response) => {
         if (response.code == 200) {
           //  console.log(response.data);
           //  console.log(response.data[0].date);
@@ -228,7 +228,7 @@ export default {
         }
       });
 
-      //登录统计信息
+      //操作日志
       getOperation().then((response) => {
         if (response.code == 200) {
           this.swiperList = response.data;
@@ -254,12 +254,12 @@ export default {
         }
       });
 
-      // 表格统计
-      getTabular().then((response) => {
+      //原材料统计
+      getMaterial().then((response) => {
         if (response.code == 200) {
           //  console.log(response.data);
           let tabularList = response.data;
-          tabularList.push({ name: "多表数量", value: 30 });
+          //  tabularList.push({ name: "多表数量", value: 30 });
           let labelList = response.data.map((item) => item.name);
           this.chartObj.myChart3.setOption({
             yAxis: {
@@ -277,8 +277,8 @@ export default {
         }
       });
 
-      //数据建模数量
-      getData().then((response) => {
+      //用户登录统计
+      getLogin().then((response) => {
         if (response.code == 200) {
           let modelData = response.data;
           //  console.log(modelData);
@@ -301,7 +301,7 @@ export default {
       let option = {
         color: ["#9370db", "#ffd700", "#00ccff", "#ff6600", "#ff9900"],
         title: {
-          text: "流程统计",
+          text: "任务统计",
           left: "left",
           textStyle: {
             fontSize: 16,
@@ -358,7 +358,7 @@ export default {
       let option = {
         color: ["#FF88E0", "#9FE080"],
         title: {
-          text: "用户登录统计",
+          text: "管道统计",
           textStyle: {
             fontSize: 16,
             fontWeight: "normal",
@@ -369,7 +369,7 @@ export default {
           trigger: "axis",
         },
         legend: {
-          data: ["客户端11", "工具端22"],
+          data: ["在产生产任务", "完成数量"],
         },
         grid: {
           left: "3%",
@@ -446,7 +446,7 @@ export default {
       let option = {
         color: ["#00ccff", "#ff6600", "#ff9900", "#9370db", "#ffd700"],
         title: {
-          text: "表格统计",
+          text: "原材料统计",
           left: "left",
           textStyle: {
             fontSize: 16,
@@ -480,7 +480,7 @@ export default {
 
         yAxis: {
           type: "category",
-          data: ["表单", "表格", "三级联动", "多表数量"],
+          data: ["总数", "入库数量", "出库数量"],
           inverse: true, // 使类目从右向左排列
         },
 
@@ -493,7 +493,6 @@ export default {
               { value: 88, name: "表单" },
               { value: 66, name: "表格" },
               { value: 33, name: "三级联动" },
-              { value: 55, name: "多表数量" },
             ],
             showBackground: true,
             backgroundStyle: {
@@ -510,7 +509,7 @@ export default {
       let option = {
         color: ["#5D84FE"],
         title: {
-          text: "数据建模统计",
+          text: "用户登录统计",
           textStyle: {
             fontSize: 16,
             fontWeight: "normal",
@@ -525,7 +524,20 @@ export default {
         },
         xAxis: {
           type: "category",
-          data: ["数据建模"],
+          data: [
+            "1月",
+            "2月",
+            "3月",
+            "4月",
+            "5月",
+            "6月",
+            "7月",
+            "8月",
+            "9月",
+            "10月",
+            "11月",
+            "12月",
+          ],
         },
         yAxis: {
           type: "value",
@@ -739,7 +751,7 @@ export default {
       }
     }
     .echarts4 {
-      width: 48%;
+      width: 20%;
       height: 200px;
       margin: auto;
       padding: 20px 15px;
@@ -753,7 +765,7 @@ export default {
       }
     }
     .echarts5 {
-      width: 25%;
+      width: 53%;
       height: 200px;
       margin: auto;
       padding: 20px 15px;