作者 sgj

test api

@@ -31,6 +31,32 @@ class UsersController extends HomeBaseController{ @@ -31,6 +31,32 @@ class UsersController extends HomeBaseController{
31 ]; 31 ];
32 } 32 }
33 /** 33 /**
  34 + * @title 修改订单状态
  35 + * @description
  36 + * @author sgj
  37 + * @url /portal/users/changeorder
  38 + * @method GET
  39 + *
  40 + * @param name:id type:String require:1 default:无 other: desc:订单id
  41 + *
  42 + * @return is_use:是否在使用设备
  43 + * @return is_deposit:是否交付押金
  44 + * @return is_order:是否有未支付订单
  45 + */
  46 + public function changeorder(){
  47 + $map['id']=input('id');
  48 + $data['state']='3';
  49 + $result=\db('order')->where($map)->update($data);
  50 + if ($result==1){
  51 + $this->success('修改成功');
  52 + }else{
  53 + $this->error('修改失败');
  54 + }
  55 + }
  56 +
  57 +
  58 +
  59 + /**
34 * @title 状态验证 60 * @title 状态验证
35 * @description 开锁前判断是否有未支付订单与是否提交押金 61 * @description 开锁前判断是否有未支付订单与是否提交押金
36 * @author 董瑞恩 62 * @author 董瑞恩