作者 anyv
1 个管道 的构建 通过 耗费 0 秒

25

... ... @@ -87,8 +87,9 @@ class ShopcartController extends WeChatBaseController{
$id = $_POST['id'];
$data = Db::name('shopping_cart') -> where('id',$id) -> find();
if($data['book_num']<200){
Db::name('shopping_cart') -> where('id',$id) -> setInc('book_num');
$res = Db::name('shopping_cart') -> where('id',$id) -> setInc('book_num');
}
dump($res);
return true;
}
... ...