|
@@ -127,12 +127,13 @@ class TalentAllowanceApi {
|
|
|
$set = self::valideAllowanceType($info, $projectList, $monthMap, $monthAndDayMap);
|
|
|
$info["recommendAllowanceMsg"][] = "综合以上所有判断得到最终补贴类型为:";
|
|
|
if ($info["recommendAllowanceType"] == 1) {
|
|
|
- $info["recommendAllowanceMsg"][] = "工作津贴;可享受月份为:" . implode(",", $set);
|
|
|
+ $info["recommendAllowanceMsg"][] = "<span style='color:red;font-weight:bold;'>工作津贴</span>;";
|
|
|
+ $info["recommendAllowanceMsg"][] = "可享受月份为:<span style='color:red;font-weight:bold;'>" . implode(",", $set) . "</span>";
|
|
|
}
|
|
|
if ($info["recommendAllowanceType"] == 2)
|
|
|
- $info["recommendAllowanceMsg"][] = "一次性交通补贴;";
|
|
|
+ $info["recommendAllowanceMsg"][] = "<span style='color:red;font-weight:bold;'>一次性交通补贴</span>;";
|
|
|
if ($info["recommendAllowanceType"] == 3)
|
|
|
- $info["recommendAllowanceMsg"][] = "不予兑现;";
|
|
|
+ $info["recommendAllowanceMsg"][] = "<span style='color:red;font-weight:bold;'>不予兑现</span>;";
|
|
|
usort($set, function($a, $b) {
|
|
|
return (int) $a - (int) $b;
|
|
|
});
|
|
@@ -264,7 +265,8 @@ class TalentAllowanceApi {
|
|
|
}
|
|
|
}unset($arrange);
|
|
|
$info["recommendMonths"] = implode(",", $recommendMonths);
|
|
|
- $info["recommendAllowanceMsg"][] = "通过与人才证书有效期取交集得到最终可享受月份:" . implode(",", $recommendMonths) . ",经过计算:人才津贴为" . $jobMoney . ";";
|
|
|
+ $info["recommendAllowanceMsg"][] = "通过与人才证书有效期取交集得到最终可享受月份:<span style='color:red;font-weight:bold;'>" . implode(",", $recommendMonths) . "</span>";
|
|
|
+ $info["recommendAllowanceMsg"][] = "经过计算:人才津贴为<span style='color:red;font-weight:bold;'>" . $jobMoney . "</span>;";
|
|
|
$info["recommendMoney"] = $jobMoney;
|
|
|
$info["recommendMoneyDesc"] = implode("+", $msgBulider);
|
|
|
|