Browse Source

修改审批记录页面意见过多时页面样式错乱

master
yunuo970428 3 years ago
parent
commit
f51ed345cc
  1. 12
      anrui-system-ui/src/components/flow/flowRecord.vue

12
anrui-system-ui/src/components/flow/flowRecord.vue

@ -23,6 +23,13 @@
<label style="font-weight: normal">接收时间 </label><label style="color:#8a909c;font-weight: normal">{{ item.createTime }}</label><br>
<label v-if="item.finishTime" style="font-weight: normal">办理时间 </label>
<label style="color:#8a909c;font-weight: normal">{{ item.finishTime }}</label><br>
</div>
<div>
<label v-if="item.duration" style="font-weight: normal">耗时</label>
<label style="color:red;font-weight: normal">{{ item.duration }}</label>
</div>
</div>
<div>
<p v-if="item.comment">
<el-tag type="success" v-if="item.comment.type === '1'"> {{ item.comment.comment }}</el-tag>
<el-tag type="warning" v-if="item.comment.type === '2'"> {{ item.comment.comment }}</el-tag>
@ -31,11 +38,6 @@
<el-tag type="danger" v-if="item.comment.type === '6'"> {{ item.comment.comment }}</el-tag>
</p>
</div>
<div>
<label v-if="item.duration" style="font-weight: normal">耗时</label>
<label style="color:red;font-weight: normal">{{ item.duration }}</label>
</div>
</div>
</el-card>
</el-timeline-item>
</el-timeline>

Loading…
Cancel
Save