...
|
...
|
@@ -761,17 +761,18 @@ class ItemModel |
|
|
foreach ($sizeInfo['washTipsBoList'] as $value) {
|
|
|
$material['wash'][] = array('name' => $value['caption'],'img' => $value['img']);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if (!empty($sizeInfo['productMaterialList'])) {
|
|
|
//商品材质[洗涤说明]
|
|
|
$material['detail'] = array();
|
|
|
if (!empty($sizeInfo['productMaterialList'])) {
|
|
|
foreach ($sizeInfo['productMaterialList'] as $value) {
|
|
|
$material['detail'][] = array(
|
|
|
'img' => $value['imageUrl'],
|
|
|
'name' => $value['caption'],
|
|
|
'enName' => $value['encaption'],
|
|
|
'text' => $value['remark']
|
|
|
);
|
|
|
}
|
|
|
foreach ($sizeInfo['productMaterialList'] as $value) {
|
|
|
$material['detail'][] = array(
|
|
|
'img' => $value['imageUrl'],
|
|
|
'name' => $value['caption'],
|
|
|
'enName' => $value['encaption'],
|
|
|
'text' => $value['remark']
|
|
|
);
|
|
|
}
|
|
|
}
|
|
|
return $material;
|
...
|
...
|
|