Authored by hf

do modify share orders html content and font-size

@@ -213,7 +213,7 @@ class DetailModel @@ -213,7 +213,7 @@ class DetailModel
213 'numInCart' => 0, 213 'numInCart' => 0,
214 'goodsInstore' => $baseInfo['storage'], // 库存量 214 'goodsInstore' => $baseInfo['storage'], // 库存量
215 ); 215 );
216 - $soldOut = $baseInfo['storage'] == 0; 216 + $soldOut = ($baseInfo['storage'] == 0) || ($baseInfo['status'] == 0);
217 $notForSale = $baseInfo['attribute'] == 2; 217 $notForSale = $baseInfo['attribute'] == 2;
218 // 显示加入购物车链接 218 // 显示加入购物车链接
219 if (!$soldOut && !$notForSale) { 219 if (!$soldOut && !$notForSale) {