| 123456789101112131415161718192021222324 |
- <?php
- namespace saas\controllers;
- use biz\goods\services\GoodsService;
- use biz\retail\services\RetailAssetService;
- use Yii;
- use common\components\util;
- class GoodsController extends BaseController
- {
- //商品列表 shish 2019.12.7
- public function actionList()
- {
- $where = [];
- $data = GoodsService::getGoodsList($where);
- $asset = RetailAssetService::getAsset();
- $data['RetailAsset'] = $asset;
- util::success($data);
- }
- }
|