|
|
@@ -10,9 +10,15 @@ use Yii;
|
|
|
class RenewController extends BaseController
|
|
|
{
|
|
|
|
|
|
+ //续期列表 ssh 20240427
|
|
|
public function actionList()
|
|
|
{
|
|
|
$where = [];
|
|
|
+ $get = Yii::$app->request->get();
|
|
|
+ $status = $get['status'] ?? -1;
|
|
|
+ if ($status > -1) {
|
|
|
+ $where['status'] = $status;
|
|
|
+ }
|
|
|
$list = RenewClass::getRenewList($where);
|
|
|
util::success($list);
|
|
|
}
|