__('购买成功'), 0 => __('购买失败'), 2 => __('退货中'), 3 => __('已退货'), 4 => __('拒绝退货'), 5 => __('已锁定'), ]; } 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); } public function code() { return $this->hasOne('junkaCode', 'code', 'product_code')->setEagerlyType(0); } public function reject() { return $this->hasOne('junkaReject', 'purchcard_log_id', 'id')->setEagerlyType(1); } }