|
|
@@ -48,7 +48,8 @@ class SystemStore extends AuthController
|
|
|
$hide = SystemStoreModel::where('is_show', 0)->count();//隐藏的门店
|
|
|
$recycle = SystemStoreModel::where('is_del', 1)->count();//删除的门店
|
|
|
if ($type == null) $type = 1;
|
|
|
- $this->assign(compact('type', 'show', 'hide', 'recycle'));
|
|
|
+ $cate = \app\admin\model\system\SystemStoreCategory::getTierList(null, 1);
|
|
|
+ $this->assign(compact('type', 'show', 'hide', 'recycle', 'cate'));
|
|
|
return $this->fetch();
|
|
|
}
|
|
|
|