|
@@ -41,8 +41,9 @@
|
|
|
|
|
|
</div>
|
|
|
<div >
|
|
|
- <el-timeline>
|
|
|
+ <el-timeline class="flowPath_timeline">
|
|
|
<el-timeline-item v-for="item in timelineList" :timestamp="item.occurredTime" :key="item.id" placement="top">
|
|
|
+ <div v-if="item.showCasePhase" class="timelinePosition">{{ item.casePhase }}</div>
|
|
|
<el-card>
|
|
|
<div>
|
|
|
<span>{{ timeType[item.flowType] || '发文日' }}:</span><span>{{ item.occurredTime}}</span>
|
|
@@ -270,4 +271,18 @@ export default {
|
|
|
float: right;
|
|
|
margin-right: 10px;
|
|
|
}
|
|
|
+</style>
|
|
|
+<style lang="scss">
|
|
|
+.flowPath_timeline{
|
|
|
+ .timelinePosition{
|
|
|
+ width: 56px;
|
|
|
+ text-align: center;
|
|
|
+ position: absolute;
|
|
|
+ left: -28px;
|
|
|
+ top:-18px;
|
|
|
+ color: red;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
</style>
|