diff --git a/app/admin/logic/supplier/SupplierLogic.php b/app/admin/logic/supplier/SupplierLogic.php index 9a5e865..24e0c6f 100644 --- a/app/admin/logic/supplier/SupplierLogic.php +++ b/app/admin/logic/supplier/SupplierLogic.php @@ -5,6 +5,7 @@ namespace app\admin\logic\supplier; use app\admin\logic\user\UserLogic; use app\admin\service\JgPushService; use app\common\model\goods\GoodsLabel; +use app\common\model\merchant\MerchantBank; use app\common\model\supplier\Supplier; use app\common\logic\BaseLogic; use think\facade\Db; @@ -238,6 +239,10 @@ class SupplierLogic extends BaseLogic }else{ $data['sys_labels_text'] = ''; } + $data['supplier_banks'] = MerchantBank::where('supplier_id',$params['id'])->select()->each(function($item){ + $item['is_check_text'] = $item->is_check_text; + $item['is_own_text'] = $item->is_own_text; + })->toArray(); return $data->toArray(); } diff --git a/app/common/model/merchant/MerchantBank.php b/app/common/model/merchant/MerchantBank.php index ef43d8a..b83c17f 100644 --- a/app/common/model/merchant/MerchantBank.php +++ b/app/common/model/merchant/MerchantBank.php @@ -22,4 +22,9 @@ class MerchantBank extends BaseModel $arr = [0=>'待审核', 1=>'审核通过', 2=>'审核未通过']; return $arr[$data['is_check']]; } + + public function getIsOwnTextAttr($value,$data){ + $arr = [0=>'个人账户', 1=>'对公账户']; + return $arr[$data['is_own']]; + } } \ No newline at end of file