wupengfei 2 years ago
parent
commit
c9a6731916
1 changed files with 1 additions and 1 deletions
  1. 1 1
      application/api/controller/Appointment.php

+ 1 - 1
application/api/controller/Appointment.php

@@ -119,7 +119,7 @@ class Appointment extends Base
         $where = [];
         $where[] = ['a.user_id','=',$this->user_id];
         $where[] = ['a.is_deleted','=',0];
-        if($status > -1) $where[] = ['status','=',$status];
+        if($status > -1) $where[] = ['a.status','=',$status];
         $list = AppOrder::field('a.id,a.goods_id,a.spec_id,a.order_no,a.status,a.code,a.remark,g.name goods_name,g.cover,i.goods_spec,g.desc')->alias('a')
             ->leftJoin('StoreGoods g','a.goods_id = g.id')
             ->leftJoin('StoreGoodsItem i','a.spec_id = i.id')