|
@@ -56,10 +56,11 @@
|
|
|
<p class="line">
|
|
|
<span >{{option.type === 1 ? '维保': option.type === 0 ? '专维' : '第三方检测' }}</span>
|
|
|
<span>
|
|
|
- <em :style="{color:item.level == 1? '#646C73':'#C13830'}">{{option.unfinished}}</em>/<em>{{option.month_unfinished}}</em>/<em>{{option.total}}</em></span>
|
|
|
+ <em >{{option.total}}</em>/<em>{{option.unfinished}}</em>/<em :style="{color:item.level == 1? '#646C73':'#C13830'}">{{option.month_unfinished}}</em></span>
|
|
|
</p>
|
|
|
<p class='desc'>
|
|
|
- {{option.type ===1 ? '即将逾期/当月未完成/总任务' : '即将逾期/今年未完成/总任务' }}
|
|
|
+ 总数/未完成/即将逾期
|
|
|
+ <!-- {{option.type ===1 ? '即将逾期/当月未完成/总任务' : '即将逾期/今年未完成/总任务' }} -->
|
|
|
</p>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -76,15 +77,15 @@
|
|
|
</div>
|
|
|
<div class='table'>
|
|
|
<div class='row table-header'>
|
|
|
- <article>日期</article>
|
|
|
- <article>事项类型</article>
|
|
|
- <article>更新内容</article>
|
|
|
+ <article>日期 </article>
|
|
|
+ <article>事项类型 </article>
|
|
|
+ <article>更新内容 </article>
|
|
|
</div>
|
|
|
<div class='table-body'>
|
|
|
<div class='row' v-for='(item , index) in changeList' :key='index'>
|
|
|
<article>{{item.changedate}}</article>
|
|
|
<article>{{item.type}}</article>
|
|
|
- <article>{{item.content || '--'}}</article>
|
|
|
+ <article :title="item.content">{{item.content || '--'}}</article>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -136,6 +137,7 @@ export default {
|
|
|
this.getItemsQuery()
|
|
|
this.getInstructionList()
|
|
|
},
|
|
|
+
|
|
|
methods: {
|
|
|
imgSrc(code) {
|
|
|
return require('../../assets/images/icons/' + code + '.png')
|
|
@@ -240,7 +242,7 @@ export default {
|
|
|
getParams: {
|
|
|
plazaId: this.plazaId,
|
|
|
page: 1,
|
|
|
- size: 10
|
|
|
+ size: 13
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -258,7 +260,7 @@ export default {
|
|
|
} else if (item.objtype === 3) {
|
|
|
item.type = '综合事项'
|
|
|
} else if (item.objtype === 4) {
|
|
|
- item.type = '重点维修'
|
|
|
+ item.type = '重要维修'
|
|
|
} else {
|
|
|
item.type = '其他事项'
|
|
|
}
|
|
@@ -456,7 +458,7 @@ export default {
|
|
|
em {
|
|
|
font-weight: normal;
|
|
|
}
|
|
|
- em:first-child {
|
|
|
+ em:last-child {
|
|
|
font-size: 1.6rem;
|
|
|
font-weight: bold;
|
|
|
}
|