|
|
@@ -13,9 +13,12 @@ class ShopCapitalController extends BaseController
|
|
|
|
|
|
public function actionList()
|
|
|
{
|
|
|
+ $get = Yii::$app->request->get();
|
|
|
$where = [];
|
|
|
+ $io = $get['id'] ?? 1;
|
|
|
$where['sjId'] = $this->sjId;
|
|
|
$where['shopId'] = $this->shopId;
|
|
|
+ $where['io'] = $io;
|
|
|
$list = ShopCapitalClass::getCapitalList($where);
|
|
|
util::success($list);
|
|
|
}
|