|
|
@@ -3,6 +3,7 @@
|
|
|
namespace ghs\controllers;
|
|
|
|
|
|
use biz\admin\classes\AdminRoleClass;
|
|
|
+use biz\shop\classes\ShopAdminClass;
|
|
|
use biz\sj\classes\SjClass;
|
|
|
use bizGhs\custom\classes\CustomClass;
|
|
|
use bizGhs\custom\services\CustomService;
|
|
|
@@ -148,6 +149,10 @@ class CustomController extends BaseController
|
|
|
if (isset($info['long']) && empty($info['long'])) {
|
|
|
$info['address'] = '';
|
|
|
}
|
|
|
+ $shopId = $info['shopId'] ?? 0;
|
|
|
+ $superInfo = ShopAdminClass::getSuper($shopId);
|
|
|
+ //超管的信息
|
|
|
+ $info['superInfo'] = $superInfo;
|
|
|
util::success($info);
|
|
|
}
|
|
|
|