|
@@ -3,13 +3,21 @@
|
|
|
namespace addons\shopro\controller;
|
|
|
|
|
|
use app\admin\model\shopro\Category as CategoryModel;
|
|
|
-
|
|
|
+use think\Db;
|
|
|
class Category extends Common
|
|
|
{
|
|
|
|
|
|
protected $noNeedLogin = ['*'];
|
|
|
protected $noNeedRight = ['*'];
|
|
|
|
|
|
+
|
|
|
+ public function lists(){
|
|
|
+ $category = Db::name('shopro_category')->where('parent_id', 1)->where('status','normal')->order('weigh', 'desc')->order('id', 'desc')->select();
|
|
|
+ $category = list_domain_image($category,['image']);
|
|
|
+ $this->success('商城分类', $category);
|
|
|
+ }
|
|
|
+
|
|
|
+ //没用到
|
|
|
public function index()
|
|
|
{
|
|
|
$id = $this->request->param('id', 0);
|