|
|
@@ -121,6 +121,7 @@ class HdController extends BaseController
|
|
|
{
|
|
|
$get = Yii::$app->request->get();
|
|
|
$delStatus = $get['delStatus'] ?? 0;
|
|
|
+ $userId = $this->userId;
|
|
|
|
|
|
$mallUpgrading = getenv('MALL_UPGRADING') == false ? 0 : getenv('MALL_UPGRADING');
|
|
|
if ($mallUpgrading == 1) {
|
|
|
@@ -132,7 +133,7 @@ class HdController extends BaseController
|
|
|
}
|
|
|
|
|
|
$where = [];
|
|
|
- $where['userId'] = $this->userId;
|
|
|
+ $where['userId'] = $userId;
|
|
|
$where['delStatus'] = $delStatus;
|
|
|
$respond = HdClass::getHdList($where);
|
|
|
util::success($respond);
|