success('返回成功', $this->request->param()); } /** * 无需登录的接口 * */ public function test1() { $this->success('返回成功', ['action' => 'test1']); } /** * 需要登录的接口 * */ public function test2() { $this->success('返回成功', ['action' => 'test2']); } /** * 需要登录且需要验证有相应组的权限 * */ public function test3() { $this->success('返回成功', ['action' => 'test3']); } public function test4(){ $order_id = 488359520289034240; $order_info = Db::name('unishop_order')->where('id',1)->find(); $product_list = Db::name('unishop_order_product')->where('order_id',$order_id)->select(); foreach($product_list as $key => $product){ for($i=1;$i<=$product['number'];$i++){ //echo $i; //追加到批发 } } } }