update
This commit is contained in:
parent
ee81f18076
commit
aca3848654
@ -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));
|
||||
}
|
||||
}
|
@ -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();
|
||||
|
@ -68,7 +68,7 @@ class MerchantValidate extends BaseValidate
|
||||
*/
|
||||
public function sceneAdd()
|
||||
{
|
||||
return $this->remove('id',true);
|
||||
return $this->remove('mer_id',true);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user