支付宝小程序

This commit is contained in:
gongfuxiang
2018-12-28 02:18:18 +08:00
parent 6a461c54ae
commit 83667b137c
35 changed files with 1205 additions and 72 deletions

View File

@ -128,5 +128,21 @@ class Goods extends Common
$ret = GoodsService::GoodsSpecDetail($params);
return json($ret);
}
/**
* 商品分类
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-12-14
* @desc description
*/
public function Category()
{
// 开始处理
$params = $this->data_post;
$data = GoodsService::GoodsCategory($params);
return json(DataReturn('success', 0, $data));
}
}
?>