|
|
@@ -7,7 +7,7 @@
|
|
|
<div class="content-status" :class="'status-' + detail?.flowStatus">
|
|
|
<div class="status-l">
|
|
|
<div class="status-title">{{ handleTagType(detail?.flowStatus) }}</div>
|
|
|
- <div class="status-sub" v-if="triggerDateText && detail?.flowStatus == -1">
|
|
|
+ <div class="status-sub" v-if="triggerDateText && (detail?.flowStatus == -1 || detail?.flowStatus == -2)">
|
|
|
执行时间已经过去 {{ daysDiff }} 天了
|
|
|
</div>
|
|
|
<div class="status-sub" v-if="detail?.flowStatus === 3">
|
|
|
@@ -332,6 +332,7 @@ const hasRemark = (prescription, stageIndex) => {
|
|
|
const handleTagType = (tagType) => {
|
|
|
if (tagType == 0) return "待触发";
|
|
|
if (tagType == -1) return "已过期";
|
|
|
+ if (tagType == -2) return "已过期";
|
|
|
if (tagType == 3) return "待认证";
|
|
|
if (tagType == 5) return "已完成";
|
|
|
return "待触发"
|
|
|
@@ -459,6 +460,11 @@ const changeExecutionMethod = (stageIndex, value) => {
|
|
|
background: #FF4F4F;
|
|
|
}
|
|
|
}
|
|
|
+ &.status--2 {
|
|
|
+ &::after {
|
|
|
+ background: #C7C7C7;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
&.status-5 {
|
|
|
padding-top: 30px;
|