find($record_id); } /** * 状态 */ public function getStatusTextAttr($value, $data) { $text = ''; if ($data['status'] == 1) { $text = '已使用'; } else { $text = '未使用'; } return $text; } /** * 状态 */ public function getLotteryTypeTextAttr($value, $data) { $text = [0 => '无礼品', 1 => '优惠券', 2 => '积分', 3 => '商品']; return $text[$data['prize_type']]; } /** * 关联会员 */ public function user() { return $this->belongsTo('app\\common\\model\\user\\User', 'user_id', 'user_id'); } }