首页商品分类错误修复

feat/task1-c-wallet
gongfuxiang 2022-10-24 16:19:56 +08:00
parent a4ec393aac
commit 39fd27440b
2 changed files with 7 additions and 4 deletions

View File

@ -84,6 +84,9 @@ class Index extends Common
// 是否设计模式
if($is_design == 1)
{
// 商品分类
$goods_category = GoodsService::GoodsCategory(['is_all'=>1]);
// 保存数据地址
$assign['layout_save_url'] = base64_decode(urldecode($this->data_request['save_url']));
@ -94,7 +97,7 @@ class Index extends Common
$assign['pages_list'] = BaseLayout::PagesList();
// 商品分类
$assign['goods_category_list'] = GoodsService::GoodsCategory(['is_all'=>1]);
$assign['goods_category_list'] = $goods_category;
// 商品搜索分类(分类)
$assign['layout_goods_category'] = $goods_category;

View File

@ -11423,19 +11423,19 @@ tbody.am-collapse.am-in {
* Divider Theme: default
*/
.am-divider-default {
border-top: 1px solid rgba(0,0,0,.03);
border-top: 1px solid #eee;
}
/**
* Divider Theme: dotted
*/
.am-divider-dotted {
border-top: 1px dotted #ccc;
border-top: 1px dotted #eee;
}
/**
* Divider Theme: dashed
*/
.am-divider-dashed {
border-top: 1px dashed #ccc;
border-top: 1px dashed #eee;
}
.am-figure-zoomable {
position: relative;