|
@@ -52,6 +52,8 @@ class AuctionOrder extends BaseModel
|
|
|
$product = AuctionProduct::where('id', $list['product_id'])->find();
|
|
|
$list['actual_price'] = round($list['price'] - $product['fictitious_price'], 2);// 实际支付价格
|
|
|
$pay = AuctionPay::where('uid', $list['collection_id'])->select();
|
|
|
+ $auction = \app\admin\model\auction\Auction::where('id', $list['auction_id'])->find();
|
|
|
+ $list['radd_time'] = strtotime($auction['radd_time']);
|
|
|
$list['wx'] = [];
|
|
|
$list['zfb'] = [];
|
|
|
$list['bank'] = [];
|