|
|
|
@ -30,7 +30,7 @@
|
|
|
|
|
<span>{{ notificationFinishList[3].completionCount }}</span>
|
|
|
|
|
<span>/{{ notificationFinishList[3].notificationCount }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div>{{ notificationFinishList[3].completionPercent }}</div>
|
|
|
|
|
<div>{{ notificationFinishList[3].completionPercent | numFilter }}%</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="right_table_list">
|
|
|
|
@ -45,12 +45,11 @@
|
|
|
|
|
class="table_item"
|
|
|
|
|
>
|
|
|
|
|
<div class="item_one">
|
|
|
|
|
百分比
|
|
|
|
|
{{ notificationStatus(item.timeRangeFlag) }}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item_two">{{ item.notificationCount }}</div>
|
|
|
|
|
<div class="item_three">{{ item.completionCount }}</div>
|
|
|
|
|
<div class="item_four">{{ item.completionPercent }}</div>
|
|
|
|
|
<div class="item_four">{{ item.completionPercent | numFilter }}%</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -233,7 +232,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {safeRisks,tbFinish} from '@/api/wlSafe'
|
|
|
|
|
import { safeRisks, tbFinish } from "@/api/wlSafe";
|
|
|
|
|
import { listDanger, getDanger, listTb, getTb } from "@/api/zongzhi/st.js";
|
|
|
|
|
import vueSeamlessScroll from "vue-seamless-scroll";
|
|
|
|
|
import ModuleTitle from "../../common/ModuleTitle.vue";
|
|
|
|
@ -338,13 +337,13 @@ export default {
|
|
|
|
|
timeRangeFlag: 3,
|
|
|
|
|
notificationCount: 0,
|
|
|
|
|
completionCount: 0,
|
|
|
|
|
completionPercent: '',
|
|
|
|
|
completionPercent: "",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
timeRangeFlag: 4,
|
|
|
|
|
notificationCount: 0,
|
|
|
|
|
completionCount: 0,
|
|
|
|
|
completionPercent: '',
|
|
|
|
|
completionPercent: "",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
animate: true,
|
|
|
|
@ -421,7 +420,7 @@ export default {
|
|
|
|
|
}, 6000);
|
|
|
|
|
//大屏安全隐患数据
|
|
|
|
|
this.safeListDP();
|
|
|
|
|
this.getTBOver()
|
|
|
|
|
this.getTBOver();
|
|
|
|
|
// this.announceChange()
|
|
|
|
|
|
|
|
|
|
// getSafeHazardSatistic().then((res) => {
|
|
|
|
@ -457,18 +456,19 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
/**
|
|
|
|
|
* 通报完成情况
|
|
|
|
|
*/
|
|
|
|
|
getTBOver(){
|
|
|
|
|
tbFinish().then(res=>{
|
|
|
|
|
getTBOver() {
|
|
|
|
|
tbFinish().then((res) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
res.data.forEach((value1,index1)=>{
|
|
|
|
|
this.notificationFinishList[index1].notificationCount =value1.count
|
|
|
|
|
this.notificationFinishList[index1].completionCount =value1.complete
|
|
|
|
|
this.notificationFinishList[index1].completionPercent =value1.pt * 100 + '%'
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
res.data.forEach((value1, index1) => {
|
|
|
|
|
this.notificationFinishList[index1].notificationCount = value1.count;
|
|
|
|
|
this.notificationFinishList[index1].completionCount = value1.complete;
|
|
|
|
|
this.notificationFinishList[index1].completionPercent =
|
|
|
|
|
value1.pt * 100;
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 最新隐患
|
|
|
|
@ -568,7 +568,6 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
.then(({ data }) => {
|
|
|
|
|
if (data) {
|
|
|
|
|
|
|
|
|
|
this.dialogDetails = true;
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
docx.renderAsync(data, this.$refs.file1); // 渲染到页面预览
|
|
|
|
|