|
@@ -8,7 +8,7 @@
|
|
|
<div
|
|
|
style="float: left;display: flex; justify-content: space-between; align-items: center;"
|
|
|
>
|
|
|
- <span :style="{background: bgStyle} " class="timeStyle">
|
|
|
+ <span :style="{background: bgStyle,color:colorStyle} " class="timeStyle">
|
|
|
{{ task_form.stageString }}
|
|
|
<br>
|
|
|
{{ task_form.lateMsg }}
|
|
@@ -646,7 +646,8 @@ export default {
|
|
|
taskStatus: [],
|
|
|
CallBackStatus: '',
|
|
|
CallBackId: '',
|
|
|
- bgStyle: ''
|
|
|
+ bgStyle: '',
|
|
|
+ colorStyle: ''
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
@@ -706,7 +707,8 @@ export default {
|
|
|
this.appVersion = this.versionDeal(res.data)
|
|
|
}
|
|
|
})
|
|
|
- this.task_form.stageString === '未知' ? this.bgStyle = '#C889FF' : ''
|
|
|
+ this.task_form.stageString === '未知' ? this.bgStyle = '#f4f4f5' : ''
|
|
|
+ this.task_form.stageString === '未知' ? this.colorStyle = '#909399' : ''
|
|
|
this.task_form.stageString === '正常' ? this.bgStyle = '#69B3FF' : ''
|
|
|
this.task_form.stageString === '延期' ? this.bgStyle = '#FF8952' : ''
|
|
|
this.task_form.stageString === '已延期' ? this.bgStyle = '#F56C6C' : ''
|