East il y a 3 ans
Parent
commit
e22555929b

+ 1 - 0
.gitignore

@@ -1,6 +1,7 @@
 .DS_Store
 node_modules
 /dist
+/hyyfScreen
 
 
 # local env files

+ 2 - 1
src/views/Production/Production.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-10-21 17:51:22
- * @LastEditTime: 2022-01-06 10:08:05
+ * @LastEditTime: 2022-01-06 13:19:45
  * @LastEditors: Please set LastEditors
  * @Description: 生产经营页面
  * @FilePath: \hyyfScreen\src\views\Production\Production.vue
@@ -831,6 +831,7 @@ export default {
   float: right;
   margin-top: 20px;
   margin-right: 20px;
+  cursor: pointer;
 }
 .indicator-item-title {
   font-size: 25px;

+ 4 - 4
src/views/Production/board/ChartCostLine.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-10-26 17:53:37
- * @LastEditTime: 2021-12-02 16:30:14
+ * @LastEditTime: 2022-01-06 11:08:21
  * @LastEditors: Please set LastEditors
  * @Description: 成本分析柱状图
  * @FilePath: \hyyfScreen\src\views\Production\board\ChartCostLine.vue
@@ -42,19 +42,19 @@ export default {
         {
           ...commonSeriesItem,
           name: "公摊成本",
-          color: "rgb(112,182,3)",
+          color: "#1564BF",
           data: [],
         },
         {
           ...commonSeriesItem,
           name: "兽药成本",
-          color: "#3aa0ff",
+          color: "#5E91F2",
           data: [],
         },
         {
           ...commonSeriesItem,
           name: "饲料成本",
-          color: "#975fe4",
+          color: "#92B8FF",
           data: [],
         },
       ];

+ 3 - 3
src/views/Production/board/ChartCostPie.vue

@@ -77,11 +77,11 @@ export default {
                 color: function(colors) {
                   // 颜色设置
                   var colorList = [
-                    "rgb(112,182,3)",
+                    "#1564BF",
                     // "rgb(232,56,92)",
                     // "rgb(123,0,255)",
-                    "#3aa0ff",
-                    "#975fe4",
+                    "#5E91F2",
+                    "#92B8FF",
                     // "rgb(0,0,255)",
                   ];
                   return colorList[colors.dataIndex];