| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\store\model\store;
- use app\common\model\store\Access as AccessModel;
- /**
- * 商家用户权限模型
- * Class Access
- * @package app\store\model\store
- */
- class Access extends AccessModel
- {
- /**
- * 获取权限列表 jstree格式
- * @param int $role_id 当前角色id
- * @return string
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function getJsTree($role_id = null)
- {
- $accessIds = is_null($role_id) ? [] : RoleAccess::getAccessIds($role_id);
- $jsTree = [];
- foreach ($this->getAll() as $item) {
- $jsTree[] = [
- 'id' => $item['access_id'],
- 'parent' => $item['parent_id'] > 0 ? $item['parent_id'] : '#',
- 'text' => $item['name'],
- 'state' => [
- 'selected' => (in_array($item['access_id'], $accessIds) && !$this->hasChildren($item['access_id']))
- ]
- ];
- }
- return json_encode($jsTree);
- }
- /**
- * 是否存在子集
- * @param $access_id
- * @return bool
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- private function hasChildren($access_id)
- {
- foreach (self::getAll() as $item) {
- if ($item['parent_id'] == $access_id)
- return true;
- }
- return false;
- }
- }
|