正在显示
1 个修改的文件
包含
6 行增加
和
1 行删除
@@ -857,6 +857,7 @@ class Order extends Api | @@ -857,6 +857,7 @@ class Order extends Api | ||
857 | "nosend": 3, //待发货(数量) | 857 | "nosend": 3, //待发货(数量) |
858 | "noget": 0, //待收货(数量) | 858 | "noget": 0, //待收货(数量) |
859 | "nocomment": 0, //待评价(数量) | 859 | "nocomment": 0, //待评价(数量) |
860 | + "coupon": 0, //待使用优惠券(数量) | ||
860 | } | 861 | } |
861 | }) | 862 | }) |
862 | */ | 863 | */ |
@@ -888,6 +889,10 @@ class Order extends Api | @@ -888,6 +889,10 @@ class Order extends Api | ||
888 | 'receipt_status' => '20', | 889 | 'receipt_status' => '20', |
889 | 'order_status' => '10' | 890 | 'order_status' => '10' |
890 | ])->count(); | 891 | ])->count(); |
891 | - $this->success('订单数量', compact('nopay','nosend','noget','nocomment')); | 892 | + $coupon = UserCoupon::where([ |
893 | + 'user_id' => $this->auth->id, | ||
894 | + 'status' => '0' | ||
895 | + ])->count(); | ||
896 | + $this->success('订单数量', compact('nopay','nosend','noget','nocomment','coupon')); | ||
892 | } | 897 | } |
893 | } | 898 | } |
-
请 注册 或 登录 后发表评论