|
@@ -126,6 +126,12 @@ class CouponDetailController extends Curd
|
|
|
$item['gettype'] = $couponDetailExtendJson['gettype'];
|
|
|
}
|
|
|
}
|
|
|
+ if (!empty($item['coupon_detail_deadline_datetime'])){
|
|
|
+ $item['coupon_detail_deadline_datetime'] = date('Y/m/d H:i:s',strtotime($item['coupon_detail_deadline_datetime']));
|
|
|
+ }
|
|
|
+ if (!empty($item['coupon_detail_gain_datetime'])){
|
|
|
+ $item['coupon_detail_gain_datetime'] = date('Y/m/d H:i:s',strtotime($item['coupon_detail_gain_datetime']));
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
return $items;
|