Browse Source

手机号

shish 1 year ago
parent
commit
248735a632
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app-ghs/controllers/ShopAdminController.php

+ 1 - 1
app-ghs/controllers/ShopAdminController.php

@@ -31,7 +31,7 @@ class ShopAdminController extends BaseController
     //获取所有在职员工 ssh 20220507
     public function actionGetAllStaff()
     {
-        $list = ShopAdminClass::getAllByCondition(['mainId' => $this->mainId, 'delStatus' => 0, 'status' => 1, 'isPt' => 0,], 'inTurn DESC', 'id,name', null, true);
+        $list = ShopAdminClass::getAllByCondition(['mainId' => $this->mainId, 'delStatus' => 0, 'status' => 1, 'isPt' => 0,], 'inTurn DESC', 'id,name,mobile', null, true);
         util::success(['list' => $list]);
     }