qiaohj 1 тиждень тому
батько
коміт
8d0b5f1eb0

+ 1 - 1
public/config.js

@@ -1,6 +1,6 @@
 // var host = window.location.protocol + '//' + window.location.hostname
 // 当前后端不在同一个服务器时,需要指定host地址
-// var host = 'http://10.7.13.26' // 以前
+// var host = 'http://10.7.14.26' // 以前
 // var host = 'http://116.204.117.33' //基本用这个
 //var host = 'http://116.204.117.33' // 测试
 // var host = 'http://b463f4b7.natappfree.cc' // 后端服务海鹏

+ 1 - 10
src/views/costAudit/auditInfo/auditManage/mainDetails.vue

@@ -166,7 +166,7 @@
               multiple
             >
               <el-option
-                v-for="(item, index) in nextUserList1"
+                v-for="(item, index) in nextUserList"
                 :key="index"
                 :label="item.fullname"
                 :value="item.userId"
@@ -420,8 +420,6 @@
         currentButton: null,
         // 流转下一步可选办理人列表
         nextUserList: [],
-        // 从办人员可选办理人列表
-        nextUserList1: [],
         // 流转/退回操作参数
         processParams: {
           content: '', // 意见
@@ -604,15 +602,8 @@
           const resp = await getCostProjectDetail({
             id: this.project.projectId,
           })
-          // 负责人id
-          let userId = resp.value ? resp.value.leaderIds.split(',') : []
-          // 从办人员可选办理人列表
-          this.nextUserList1 = res.value.filter(
-            (item) => !userId.includes(item.userId)
-          )
         } catch (e) {
           this.nextUserList = []
-          this.nextUserList1 = []
         }
       },
       // 获取主办人员和从办人员

+ 0 - 1
src/views/costAudit/baseInfo/statistics/historyAnalysis.vue

@@ -1014,7 +1014,6 @@
     flex: 1;
     display: flex;
     flex-direction: column;
-    padding-bottom: 20px;
     overflow-x: hidden;
     min-width: 0;
   }

+ 3 - 3
src/views/costAudit/baseInfo/statistics/index.js

@@ -809,9 +809,9 @@ export const comprehensiveMixin = {
         legend: {
           show: true,
           data: seriesData.map((item) => item.name),
-          bottom: 0,
+          bottom: 10,
           left: 'center',
-          itemGap: 15,
+          itemGap: 12,
           textStyle: {
             fontSize: 12,
             color: '#333',
@@ -825,7 +825,7 @@ export const comprehensiveMixin = {
         grid: {
           left: '3%',
           right: '4%',
-          bottom: '15%',
+          bottom: '25%',
           top: '10%',
           containLabel: true,
         },