getMessage()); return false; } } /** * @notes 编辑 * @param array $params * @return bool * @author likeadmin * @date 2023/09/13 16:45 */ public static function edit(array $params): bool { Db::startTrans(); try { ShopMerchant::where('id', $params['id'])->update([ ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 删除 * @param array $params * @return bool * @author likeadmin * @date 2023/09/13 16:45 */ public static function delete(array $params): bool { return ShopMerchant::destroy($params['id']); } /** * @notes 获取详情 * @param $params * @return array * @author likeadmin * @date 2023/09/13 16:45 */ public static function detail($params): array { $data = ShopMerchant::findOrEmpty($params['id'])->toArray(); if ($data) { $where[]=['party_b','=', $data['id']]; if(isset($params['contract_type'])){ $where[]=['contract_type','=',$params['contract_type']]; } $data['contract'] = ShopContract::where($where)->with(['party_a_info', 'contractType'])->find(); } return $data; // return ShopMerchant::findOrEmpty($params['id'])->toArray(); } }