修复了GoodsclassLists中的一个bug,优化了查询条件

This commit is contained in:
mkm 2024-05-24 16:10:50 +08:00
parent 6ea09b4cb3
commit 195db1130e
2 changed files with 6 additions and 1 deletions

View File

@ -39,7 +39,8 @@ class IndexController extends BaseApiController
// foreach($arr as $k=>$v){
// Goodsclass::where('id',$k)->update(['children'=>json_encode($v,true)]);
// }
// $a=Goodsclass::where('pid','>',0)->where('children','<>',null)->column('id');
$a=Goodsclass::where('pid',0)->where('children','<>',null)->column('id');
d ($a);
// $arr = [];
// foreach ($a as $k => $v) {
// $pid = Goodsclass::where('id', $v)->value('pid');

View File

@ -46,12 +46,14 @@ class GoodsclassLists extends BaseAdminDataLists implements ListsSearchInterface
if($pid==0){
$lists = Goodsclass::where($this->searchWhere)
->where('pid', 0)
->where('children','<>',null)
->field(['id', 'pid', 'name', 'data', 'pic', 'sort'])
->limit($this->limitOffset, $this->limitLength)
->order(['sort' => 'desc','id' => 'desc'])
->select()->toArray();
}else{
$lists = Goodsclass::where($this->searchWhere)
->where('children','<>',null)
->field(['id', 'pid', 'name', 'data', 'pic', 'sort'])
->limit($this->limitOffset, $this->limitLength)
->order(['sort' => 'desc','id' => 'desc'])
@ -82,9 +84,11 @@ class GoodsclassLists extends BaseAdminDataLists implements ListsSearchInterface
$pid=Request()->get('pid',0);
if($pid==0){
return Goodsclass::where($this->searchWhere)->where('pid', 0)
->where('children','<>',null)
->count();
}else{
return Goodsclass::where($this->searchWhere)
->where('children','<>',null)
->count();
}