Browse Source

修复店铺图片无法显示的问题

master
lanzu_qinsheng 5 years ago
parent
commit
aaaa22231a
  1. 2
      app/Models/ImsCjdcOrder.php
  2. 1
      app/Models/ImsCjdcOrderMain.php

2
app/Models/ImsCjdcOrder.php

@ -35,7 +35,7 @@ class ImsCjdcOrder extends Model
$show_refund = [];
foreach ($orders as &$or) {
if (substr($or['store']['logo'], 0, 4) != 'http') {
$or['store']['logo'] = env('IMG_HOST') . '/' . $or['store']['logo'];
$or['store']['logo'] = env('OSS_IMG_HOST') . '/' . $or['store']['logo'].'?thumbnail_28';
}
$or['goods'] = LanzuOrderGoods::where('order_id', $or['id'])->get()->toArray();
foreach ($or['goods'] as $goods){

1
app/Models/ImsCjdcOrderMain.php

@ -113,7 +113,6 @@ class ImsCjdcOrderMain extends Model
} else {
$order['delivery_distance'] .= '米';
}
return $order;
}

Loading…
Cancel
Save