规格bug修复,下订单

This commit is contained in:
gongfuxiang
2018-12-16 03:48:01 +08:00
parent 8634d9a400
commit f65c4efd89
17 changed files with 259 additions and 248 deletions

View File

@ -58,6 +58,7 @@ class Goods extends Common
'number' => $number,
'total' => $total,
'where' => $params,
'page' => isset($params['page']) ? intval($params['page']) : 1,
'url' => url('admin/goods/index'),
);
$page = new \base\Page($page_params);
@ -127,6 +128,9 @@ class Goods extends Common
// 品牌分类
$this->assign('brand_list', BrandService::CategoryBrand());
// 参数
$this->assign('params', $params);
return $this->fetch();
}