Browse Source

no message

linwenxin 4 tháng trước cách đây
mục cha
commit
f0c7a55e83

+ 3 - 3
src/components/file-upload/index.vue

@@ -40,10 +40,10 @@
         </div>
         <div style="display: flex; justify-content: space-around">
           <span v-if="showName">{{ item.name }}</span>
-          <el-link v-if="viewOnline && checkFileType(item.url) != 'file'" @click="getBase64(item.url)" type="primary"
+          <!-- <el-link v-if="viewOnline && checkFileType(item.url) != 'file'" @click="getBase64(item.url)" type="primary"
             >查看</el-link
-          >
-          <el-link v-if="download" @click="openNew(item.url)" type="primary">下载</el-link>
+          > -->
+          <el-link v-if="download" @click="openNew(item.url)" type="primary">查看</el-link>
         </div>
       </div>
       <template v-if="isEdit">

+ 35 - 13
src/components/head.vue

@@ -14,13 +14,13 @@
         </div>
       </div>
       <div class="aszhongjian">
-        {{
-          userInfo.type == 1
-            ? userInfo.companyName
-            : userInfo.type == 2
-            ? '平台管理员'
-            : userInfo.adminWebsits[0].map(item => item.name).join(',') || ''
-        }}
+        <template v-if="userInfo.type == 1">{{ userInfo.companyName }}</template>
+        <template v-else-if="userInfo.type == 2">{{ '平台管理员' }}</template>
+        <el-carousel v-else-if="userInfo && userInfo.adminWebsits">
+          <el-carousel-item v-for="(item, index) in userInfo.adminWebsits.map(item => item.name)" :key="index">
+            <div class="aszhongjianText">{{ item }}</div>
+          </el-carousel-item>
+        </el-carousel>
       </div>
       <div class="asright">{{ timeStr }}</div>
     </div>
@@ -90,6 +90,13 @@ export default {
 </script>
 
 <style scoped lang="scss">
+::v-deep .el-carousel__arrow {
+  display: none !important;
+}
+::v-deep .el-carousel__indicators {
+  display: none !important;
+}
+
 .jajajaj {
   height: 24px;
   line-height: 24px;
@@ -134,12 +141,21 @@ export default {
     height: 58px;
   }
 
-  .aszhongjian {
+  .aszhongjianText {
+    width: 400px;
+    height: 35px;
     font-family: Source Han Sans CN;
-    font-weight: 500;
-    font-size: 30px;
-    color: #ffffff;
-    line-height: 35px;
+    font-weight: 500 !important;
+    font-size: 30px !important;
+    color: #ffffff !important;
+    line-height: 35px !important;
+    text-align: center !important;
+    z-index: 9999999999999999999;
+  }
+  .aszhongjian {
+    text-align: center;
+    width: 400px;
+    height: 35px;
     background: linear-gradient(0deg, #ffffff 0%, #b0d7ff 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
@@ -147,7 +163,13 @@ export default {
     bottom: 12px;
     left: 50%;
     transform: translateX(-50%);
-    text-align: center;
+    font-family: Source Han Sans CN;
+    font-weight: 500 !important;
+    font-size: 30px !important;
+    color: #ffffff !important;
+    line-height: 35px !important;
+    text-align: center !important;
+    z-index: 9999999999999999999;
   }
 
   .asleft {

+ 52 - 54
src/views/bigViews/dataView1/components/workOrderTrend.vue

@@ -1,12 +1,11 @@
 <template>
   <moduleEnclosure title="近30天工单趋势">
-	  <template v-slot:rightce>
+    <template v-slot:rightce>
       <el-tabs v-model="tabCurrent" type="card" @tab-click="changeTab">
         <el-tab-pane v-for="(item, index) in tabList" :key="index" :label="item" :name="item"></el-tab-pane>
       </el-tabs>
-	    
-	  </template>
-		<div class="all-container">
+    </template>
+    <div class="all-container">
       <div id="workorderEcharts1" style="width: 100%; height: 100%"></div>
     </div>
   </moduleEnclosure>
@@ -14,10 +13,10 @@
 
 <script>
 import vScrollView from 'v-scroll-view'
-import moduleEnclosure from '@/components/moduleEnclosure.vue';
-import * as echarts from 'echarts';
-import { getWorkorderTrend } from '@/api/bigView.js';
-import { csize } from '@/utils/const.js';
+import moduleEnclosure from '@/components/moduleEnclosure.vue'
+import * as echarts from 'echarts'
+import { getWorkorderTrend } from '@/api/bigView.js'
+import { csize } from '@/utils/const.js'
 
 export default {
   components: {
@@ -28,8 +27,8 @@ export default {
     return {
       tabList: [],
       tabCurrent: '',
-      tableData: [],
-    };
+      tableData: []
+    }
   },
 
   mounted() {
@@ -37,12 +36,12 @@ export default {
   },
 
   beforeUnmount() {
-    this.mouseenter();
+    this.mouseenter()
   },
 
   watch: {
     tabCurrent() {
-      this.mouseenter();
+      this.mouseenter()
       this.dingshishuaxin()
     }
   },
@@ -54,25 +53,25 @@ export default {
       }
     },
     dingshishuaxin() {
-      this.initData();
+      this.initData()
       this.TimeId = setTimeout(() => {
         this.setbiuaoji()
       }, 3000)
     },
     getDate() {
-      const today = new Date();
-      const dates = [];
+      const today = new Date()
+      const dates = []
       for (let i = 0; i < 30; i++) {
-        const d = new Date();
-        d.setDate(today.getDate() - i);
-        dates.unshift(d.toISOString().split('T')[0].slice(5, 11));
+        const d = new Date()
+        d.setDate(today.getDate() - i)
+        dates.unshift(d.toISOString().split('T')[0].slice(5, 11))
       }
-      return dates;
+      return dates
     },
 
     setbiuaoji() {
       var index = this.tabList.indexOf(this.tabCurrent)
-      if (index >= (this.tabList.length - 1)) {
+      if (index >= this.tabList.length - 1) {
         this.tabCurrent = this.tabList[0]
       } else {
         this.tabCurrent = this.tabList[index + 1]
@@ -80,25 +79,25 @@ export default {
     },
 
     changeTab(item) {
-      this.tabCurrent = item.name;
-      this.initEcharts();
+      this.tabCurrent = item.name
+      this.initEcharts()
     },
 
     initData() {
       getWorkorderTrend().then(res => {
-        this.tabList = res.data.map(o => o.lx);
-        if (this.tabCurrent == "") {
+        this.tabList = res.data.map(o => o.lx)
+        if (this.tabCurrent == '') {
           this.setbiuaoji()
         }
-        this.tableData = res.data;
-        this.initEcharts();
+        this.tableData = res.data
+        this.initEcharts()
       })
     },
 
     initEcharts() {
-      var chartDom = document.getElementById('workorderEcharts1');
-      var myChart = echarts.init(chartDom);
-      var option;
+      var chartDom = document.getElementById('workorderEcharts1')
+      var myChart = echarts.init(chartDom)
+      var option
 
       option = {
         title: {
@@ -117,8 +116,8 @@ export default {
             type: 'line',
             lineStyle: {
               type: 'dashed',
-              color: '#8AB1DC',
-            },
+              color: '#8AB1DC'
+            }
           },
           textStyle: {
             color: '#ffffff'
@@ -134,7 +133,7 @@ export default {
           data: ['已完工', '未完工'],
           textStyle: {
             color: '#A9BBCC'
-          },
+          }
         },
         // grid: {
         //   left: '3%',
@@ -151,23 +150,23 @@ export default {
           x: csize(40),
           y: csize(50),
           x2: csize(20),
-          y2: csize(20),
+          y2: csize(20)
         },
         xAxis: {
           type: 'category',
           boundaryGap: false,
           axisLabel: {
-            fontSize: csize(12),
+            fontSize: csize(12)
           },
           axisLine: {
             lineStyle: {
-              color: '#8AB1DC', // x轴文字颜色
+              color: '#8AB1DC' // x轴文字颜色
             }
           },
           splitLine: {
             show: false,
             lineStyle: {
-              color: 'rgba(256, 256, 256, 0.1)', // x轴辅助线颜色
+              color: 'rgba(256, 256, 256, 0.1)' // x轴辅助线颜色
             }
           },
           data: this.getDate()
@@ -175,14 +174,14 @@ export default {
         yAxis: {
           type: 'value',
           minInterval: 1,
-          name: "(单/台)",
+          name: '(单/台)',
           nameTextStyle: {
-            color: "#aaa",
-            nameLocation: "start",
+            color: '#aaa',
+            nameLocation: 'start'
             // align: 'right'
           },
           axisLabel: {
-            fontSize: csize(12),
+            fontSize: csize(12)
             // 使用 formatter 函数格式化刻度标签
             // formatter: function(value) {
             //   // 判断是否为整数
@@ -195,13 +194,13 @@ export default {
           },
           axisLine: {
             lineStyle: {
-              color: '#8AB1DC', // y轴文字颜色
+              color: '#8AB1DC' // y轴文字颜色
             }
           },
           splitLine: {
             show: true,
             lineStyle: {
-              color: 'rgba(256, 256, 256, 0.1)', // y轴辅助线颜色
+              color: 'rgba(256, 256, 256, 0.1)' // y轴辅助线颜色
             }
           }
         },
@@ -212,10 +211,10 @@ export default {
             stack: 'Total',
             itemStyle: {
               normal: {
-                color: '#44E28F',
-              },
+                color: '#44E28F'
+              }
             },
-            data: this.tableData.find(o => o.lx == this.tabCurrent).unitNum
+            data: this.tableData.find(o => o.lx == this.tabCurrent)?.unitNum || ''
           },
           {
             name: '未完工',
@@ -223,22 +222,21 @@ export default {
             stack: 'Total',
             itemStyle: {
               normal: {
-                color: '#D73A79',
-              },
+                color: '#D73A79'
+              }
             },
-            data: this.tableData.find(o => o.lx == this.tabCurrent).unitNumWwg
-          },
+            data: this.tableData.find(o => o.lx == this.tabCurrent)?.unitNumWwg || ''
+          }
         ]
-      };
+      }
 
-      option && myChart.setOption(option);
+      option && myChart.setOption(option)
     }
-  },
-};
+  }
+}
 </script>
 
 <style scoped lang="scss">
-
 ::v-deep .el-tabs {
   width: 100%;
   .el-tabs__header {