|
|
|
@ -3445,16 +3445,16 @@
|
|
|
|
|
var deathExpired = <%=res.getString("deathExpired")%>;
|
|
|
|
|
if (value != null && value != "" && value == 0) {
|
|
|
|
|
if (redFlag == 0) {
|
|
|
|
|
result = '<span style="color:green;"><i class="fa fa-times-circle-o" aria-hidden="true"></i> </span>';
|
|
|
|
|
result = '<span style="color:green;"><i class="fa fa-times-circle-o" aria-hidden="true"></i>否</span>';
|
|
|
|
|
} else {
|
|
|
|
|
result = '<span style="color:red;"><i class="fa fa-times-circle-o" aria-hidden="true"></i> </span>';
|
|
|
|
|
result = '<span style="color:red;"><i class="fa fa-times-circle-o" aria-hidden="true"></i>否</span>';
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (days > deathExpired) {
|
|
|
|
|
var day = days - deathExpired;
|
|
|
|
|
result = '<span style="color:red;"><i class="fa fa-times-circle-o" aria-hidden="true"></i>已死亡</span><span style="color:red">(超期' + day + ')</span></span>';
|
|
|
|
|
result = '<span style="color:red;"><i class="fa fa-times-circle-o" aria-hidden="true"></i>是</span><span style="color:red">(超期' + day + ')</span></span>';
|
|
|
|
|
} else {
|
|
|
|
|
result = '<span style="color:red;"><i class="fa fa-times-circle-o" aria-hidden="true"></i>已死亡</span>';
|
|
|
|
|
result = '<span style="color:red;"><i class="fa fa-times-circle-o" aria-hidden="true"></i>是</span>';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result
|
|
|
|
|