guotianliang 4 rokov pred
rodič
commit
2a5ed686d6

+ 2 - 1
src/views/evaluate/evCard.vue

@@ -72,7 +72,7 @@
                 </div>
             </div>
             <div class='view-dialog'>
-                <el-dialog title='策略推出时状况' :visible.sync='viewSnapshots' :close-on-click-modal='false' width='1260px'>
+                <el-dialog title='策略推出时状况' :visible.sync='viewSnapshots' :close-on-click-modal='false' width='1260px' :key="time">
                     <ev-snapshots-dialog v-if='date && time' :appDate='date' :time='time'></ev-snapshots-dialog>
                 </el-dialog>
             </div>
@@ -103,6 +103,7 @@ export default {
         lookQuickData(item) {
             this.time = item.recommend.time;
             this.date=item.recommend&&item.recommend.date ;
+            console.log(411,this.time,this.date);
             this.viewSnapshots = true;
         },
         formatterStr2(str) {

+ 3 - 2
src/views/evaluate/evTwoLevelMenu.vue

@@ -165,7 +165,8 @@ export default {
                 postParams: {
                     criteria: {
                         date: date,
-                        projectId: this.$store.state.projectId
+                        projectId: this.$store.state.projectId,
+                        status:[1,2,4]
                     }
                 }
             }
@@ -197,7 +198,7 @@ export default {
             this.chillerExecuteRateReal = ''
             querychiller(params).then(res => {
                 //执行率
-                this.chillerExecuteRateReal = this.formatterRes(res.content[0].chillerExecuteRateReal, 0, 1)
+                this.chillerExecuteRateReal = this.formatterRes(res.content[0].chillerExecuteRate, 0, 1)
                 console.log('执行率', this.chillerExecuteRateReal)
             })
         },