| 123456789101112131415161718192021222324252627 |
- <?php
- namespace ghs\controllers;
- use bizGhs\order\classes\ScanPayClass;
- use common\components\util;
- use Yii;
- class ScanPayController extends BaseController
- {
- public $guestAccess = [];
- public function actionList()
- {
- $get = Yii::$app->request->get();
- $status = $get['status'] ?? 0;
- $where = [];
- $where['mainId'] = $this->mainId;
- if (!empty($status)) {
- $where['status'] = $status;
- }
- $list = ScanPayClass::getPayList($where);
- util::success($list);
- }
- }
|