...
|
...
|
@@ -74,7 +74,7 @@ class HomeModel |
|
|
'index_main' => 0,
|
|
|
'is_hot' => $val['is_hot'] == 'Y' ? true : false,
|
|
|
'is_new' => $val['is_new'] == 'Y' ? true : false,
|
|
|
'subnav' => array()
|
|
|
// 'subnav' => array()
|
|
|
);
|
|
|
foreach ($val['sub'] as $sub) { // 二级
|
|
|
$index_sub = 0;
|
...
|
...
|
@@ -84,7 +84,7 @@ class HomeModel |
|
|
'link' => $sub['sort_url'],
|
|
|
'is_hot' => $sub['is_hot'] == 'Y' ? true : false,
|
|
|
'is_new' => $sub['is_new'] == 'Y' ? true : false,
|
|
|
'thirdnav' => array(),
|
|
|
// 'thirdnav' => array(),
|
|
|
'index_sub' => $index_sub ++
|
|
|
);
|
|
|
if (isset($sub['sub'])) {
|
...
|
...
|
@@ -93,7 +93,7 @@ class HomeModel |
|
|
'title' => $thirdsub['sort_name'],
|
|
|
'name_en' => $thirdsub['sort_name_en'],
|
|
|
'link' => $thirdsub['sort_url'],
|
|
|
'branditems' => array()
|
|
|
// 'branditems' => array()
|
|
|
);
|
|
|
if (isset($thirdsub['sub'])) {
|
|
|
foreach ($thirdsub['sub'] as $fourthnav) { // 四级
|
...
|
...
|
@@ -107,6 +107,7 @@ class HomeModel |
|
|
$subnav['thirdnav'][] = $thirdnav;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
$item['subnav'][] = $subnav;
|
|
|
}
|
|
|
$menu[] = $item;
|
...
|
...
|
|