This commit is contained in:
weiz 2024-05-10 17:56:02 +08:00
parent ee81f18076
commit aca3848654
3 changed files with 11 additions and 7 deletions

View File

@ -2,6 +2,7 @@
namespace App;
use app\common\service\JsonService;
use Next\VarDumper\Dumper;
use Next\VarDumper\DumperHandler;
use support\exception\Handler;
@ -16,9 +17,10 @@ class ExceptionHandler extends Handler
public function render(Request $request, Throwable $exception): Response
{
if ($exception instanceof Dumper) {
return \response(self::convertToHtml($exception));
}
return parent::render($request, $exception);
// if ($exception instanceof Dumper) {
// return \response(self::convertToHtml($exception));
// }
// return parent::render($request, $exception);
return json(json_decode($exception->getMessage(),true));
}
}

View File

@ -54,7 +54,8 @@ class MerchantLogic extends BaseLogic
'mer_money' => $params['mer_money'],
'financial_bank' => $params['financial_bank'] ?? '',
'financial_wechat' => $params['financial_wechat'] ?? '',
'financial_alipay' => $params['financial_alipay'] ?? ''
'financial_alipay' => $params['financial_alipay'] ?? '',
'financial_type' => $params['financial_type'] ?? ''
]);
Db::commit();
@ -104,7 +105,8 @@ class MerchantLogic extends BaseLogic
'mer_money' => $params['mer_money'],
'financial_bank' => $params['financial_bank'] ?? '',
'financial_wechat' => $params['financial_wechat'] ?? '',
'financial_alipay' => $params['financial_alipay'] ?? ''
'financial_alipay' => $params['financial_alipay'] ?? '',
'financial_type' => $params['financial_type'] ?? ''
]);
Db::commit();

View File

@ -68,7 +68,7 @@ class MerchantValidate extends BaseValidate
*/
public function sceneAdd()
{
return $this->remove('id',true);
return $this->remove('mer_id',true);
}