bug121025

This commit is contained in:
shijingjing
2022-08-01 11:25:31 +08:00
parent 670c7b9d92
commit 54e10d5151

View File

@@ -17,7 +17,8 @@
<div class="content"> <div class="content">
<div class="header"> <div class="header">
<div class="header_left"> <div class="header_left">
<div>{{ detail.taskTitle }}</div> <div>{{ detail.taskTitle }} <span :class="detail.status==0? 'status0': detail.status==1? 'status1': detail.status==2? 'status2':
detail.status == 3? 'status3':detail.status==4? 'status4': 'status5'">{{ $dict.getLabel('mstStatus', detail.status) }}</span></div>
<div> <div>
创建时间: <span>{{ createTime }}</span> 创建时间: <span>{{ createTime }}</span>
</div> </div>
@@ -344,6 +345,7 @@ export default {
}, },
onShow() { onShow() {
document.title = "群发居民群统计"; document.title = "群发居民群统计";
this.$dict.load("mstStatus")
this.getStatistics(); this.getStatistics();
this.getDetail(); this.getDetail();
}, },
@@ -397,7 +399,7 @@ export default {
} }
.header { .header {
height: 160px; // height: 160px;
padding: 32px; padding: 32px;
box-sizing: border-box; box-sizing: border-box;
background: #fff; background: #fff;
@@ -410,6 +412,37 @@ export default {
font-size: 32px; font-size: 32px;
font-weight: 600; font-weight: 600;
margin-bottom: 10px; margin-bottom: 10px;
span {
display: inline-block;
padding: 0 8px;
border: 1px solid;
border-radius: 6px;
font-size: 26px;
font-weight: normal;
margin-left: 8px;
}
.status0 {
color: #FFA938 !important;
}
.status1 {
color: #FF6758 !important;
}
.status2 {
color: #3399FF !important;
}
.status3 {
color: #FF6758 !important;
}
.status4 {
color: #3399FF !important;
}
.status5 {
color: #1CCEB0 !important;
}
.status6 {
color: #666666 !important;
}
} }
div:last-child { div:last-child {
color: #666666; color: #666666;