__('购买成功'), 0 => __('购买失败')]; } public function getBillTimeTextAttr($value, $data) { $value = $value ? $value : (isset($data['bill_time']) ? $data['bill_time'] : ''); return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value; } public function getStatusTextAttr($value, $data) { $value = $value ? $value : (isset($data['status']) ? $data['status'] : ''); $list = $this->getStatusList(); return isset($list[$value]) ? $list[$value] : ''; } protected function setBillTimeAttr($value) { return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value); } public function store() { return $this->hasOne('junkaStore', 'id', 'store_id')->setEagerlyType(0); } }