Browse Source

修改晋江市优秀人才为晋江市现代产业体系人才

sandm 2 years ago
parent
commit
8855a8c6fa
2 changed files with 4 additions and 4 deletions
  1. 1 1
      app/admin/view/file_type/index.html
  2. 3 3
      app/common/api/VerifyApi.php

+ 1 - 1
app/admin/view/file_type/index.html

@@ -4,7 +4,7 @@
     <div class="col-sm-12">
         <div class="ibox float-e-margins">
             <div class="ibox-title">
-                <h5>晋江优秀人才认定附件管理</h5>
+                <h5>晋江市现代产业体系人才认定附件管理</h5>
             </div>
             <div class="ibox-content">
                 <div class="row row-lg">

+ 3 - 3
app/common/api/VerifyApi.php

@@ -168,7 +168,7 @@ class VerifyApi {
                         ->limit($offset, $limit)->order("ti.createTime " . $order)
                         ->select()->toArray();
         foreach ($list as &$item) {
-            $item["talent_type"] = $item["enterprise_type"] == 1 ? "晋江优秀人才" : "集成电路优秀人才";
+            $item["talent_type"] = $item["enterprise_type"] == 1 ? "晋江市现代产业体系人才" : "集成电路优秀人才";
             $item["enterprise_tag"] = $enterprise_tag_kvs[$item["enterpriseTag"]];
             $lastCheckLog = TalentLogApi::getCompanyNewestCheckedLog($item["id"], $companyId);
             $item["deptCheckState"] = $lastCheckLog["new_state"];
@@ -219,7 +219,7 @@ class VerifyApi {
                         ->limit($offset, $limit)
                         ->order("ti.createTime " . $order)->field("ti.*,e.name as enterpriseName,e.type as enterprise_type,enterpriseTag")->select()->toArray();
         foreach ($list as &$item) {
-            $item["talent_type"] = $item["enterprise_type"] == 1 ? "晋江优秀人才" : "集成电路优秀人才";
+            $item["talent_type"] = $item["enterprise_type"] == 1 ? "晋江市现代产业体系人才" : "集成电路优秀人才";
             $item["enterprise_tag"] = $enterprise_tag_kvs[$item["enterpriseTag"]];
         }unset($item);
         return ["total" => $count, "rows" => $list];
@@ -390,7 +390,7 @@ class VerifyApi {
         $talent_arrange_kvs = DictApi::selectByParentCode("talent_arrange");
         $enterprise_tag_kvs = DictApi::selectByParentCode("enterprise_tag");
         foreach ($list as &$item) {
-            $item["talent_type"] = $item["enterprise_type"] == 1 ? "晋江优秀人才" : "集成电路优秀人才";
+            $item["talent_type"] = $item["enterprise_type"] == 1 ? "晋江市现代产业体系人才" : "集成电路优秀人才";
             $item["enterprise_tag"] = $enterprise_tag_kvs[$item["enterpriseTag"]];
             $item["talentArrangeName"] = $talent_arrange_kvs[$item["talent_arrange"]];
             $item["talentConditionName"] = TalentCondition::findOrEmpty($item["talent_condition"])["name"];