|
|
@@ -423,8 +423,8 @@ const getPhenologyBarStyle = (item) => {
|
|
|
|
|
|
// 农事状态样式映射(0:默认,1-4:正常,5:完成,6:预警)
|
|
|
const getArrangeStatusClass = (fw) => {
|
|
|
- const t = fw?.flowStatus;
|
|
|
- if (t == null) return "status-default";
|
|
|
+ const t = fw?.isFollow;
|
|
|
+ if (t == 0) return "normal-style";
|
|
|
if (t >= 0 && t <= 4) return "status-normal";
|
|
|
if (t === 5) return "status-complete";
|
|
|
if (t === 6) return "status-warning";
|
|
|
@@ -675,6 +675,9 @@ watch(
|
|
|
border-right: 5px solid #2199f8;
|
|
|
}
|
|
|
}
|
|
|
+ .arrange-card.normal-style {
|
|
|
+ opacity: 0.4;
|
|
|
+ }
|
|
|
.arrange-card.status-warning {
|
|
|
border-color: #ff953d;
|
|
|
&::before {
|