bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
 
$cache_id = sprintf('%X', crc32('supplier_category_app-'.$_REQUEST['suppId']));
if (!$smarty->is_cached('supplier_category_app.lbi', $cache_id))
{
    $smarty->assign('shopname',      $GLOBALS['_CFG']['shop_name']); 
    $smarty->assign('shoplogo',      $GLOBALS['_CFG']['shop_logo']); 
    $smarty->assign('categories',      get_categories_tree_supplier()); // 分类树
    assign_dynamic('supplier_search_app');
}
$result['result']    = $smarty->fetch('supplier_category_app.lbi', $cache_id);
die($json->encode($result));
 
?>