From 7b07924ba20ac0d9cc4e1849383f95b2c7641fdf Mon Sep 17 00:00:00 2001 From: cody <648753004@qq.com> Date: Wed, 14 Jan 2026 15:26:00 +0800 Subject: [PATCH] update --- app/Models/Company.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Models/Company.php b/app/Models/Company.php index b102b44..e289ffc 100644 --- a/app/Models/Company.php +++ b/app/Models/Company.php @@ -13,9 +13,9 @@ class Company extends SoftDeletesModel public function getIsYhInvestedTextAttribute() { if (empty($this->is_yh_invested)) { - return '否'; + return ''; } - return $this->is_yh_invested == 1 ? '是' : '否'; + return $this->is_yh_invested == 1 ? '被投企业' : ''; } public function users()