|
|
@@ -4,6 +4,7 @@ namespace hd\controllers;
|
|
|
|
|
|
use bizHd\member\classes\MemberWealClass;
|
|
|
use bizHd\shop\classes\ShopClass;
|
|
|
+use common\components\arrayUtil;
|
|
|
use common\components\dict;
|
|
|
use common\components\util;
|
|
|
use Yii;
|
|
|
@@ -37,7 +38,7 @@ class MemberWealController extends BaseController
|
|
|
$shopId = $this->shopId;
|
|
|
$list = MemberWealClass::getAllByCondition(['shopId' => $shopId], null, '*', null);
|
|
|
if(!empty($list)){
|
|
|
-
|
|
|
+ $list = arrayUtil::arraySort($list,'level',SORT_ASC);
|
|
|
}
|
|
|
print_r($list);die;
|
|
|
|