@@ -19,7 +19,11 @@ class RenewController extends BaseController
if ($status > -1) {
$where['status'] = $status;
}
+
+ $amount = RenewClass::sum(['status' => 1], 'actPrice');
$list = RenewClass::getRenewList($where);
+ $list['totalAmount'] = $amount;
util::success($list);