简要描述:
- 当前用户对应的字段权限
- popedom: name、value映射
[
{
name: '读写',
checked: 0,
value: 1
},
{
name: '只读',
checked: 0,
value: 2
},
{
name: '隐藏',
checked: 0,
value: 9
},
{
name: '列隐',
checked: 0,
value: 8
},
{
name: '编隐',
checked: 0,
value: 3
},
{
name: '增隐',
checked: 0,
value: 4
},
{
name: '列读',
checked: 0,
value: 5
},
{
name: '编读',
checked: 0,
value: 6
},
{
name: '增读',
checked: 0,
value: 7
}
]
- 如果列不做字段权限里面,表示具有读写权限
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
v3 | 陈碧贵 | 2021-12-06 | xxxx-xx-xx |
请求URL:
- http://{url参数}/bo/api/v3/bo-popedom-field/list/res/my?_nodejs=common-data&menuId=munuid
请求方式:
- GET
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
XownerId | 是 | string | 项目唯一ID,对应bo_project {ownerId} |
XsysId | 否 | string | 所属系统 对应 bo_system 表 |
XuserFromFirstShareId | string | 否 | 一级分享用户ID, bo_user user_id |
XuserFromSecondShareId | string | 否 | 二级分享用户ID, bo_user user_id |
XverifyApi | 是 | string | 加密规则encryptByDES(`${newGuid()} |
XfilterAreaCode | 否 | string | 行政区编码, 对应 bo_sys_area area_code |
Content-Type: | 是 | string | application/json; charset=utf-8 请求类型 |
Authorization | 是 | string | 当前用户认证信息,通过登录接口获取 Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6 |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
_nodejs | 是 | string | common-data 对应/Config/AppNodeJs/Plugins/fn- common-data.js, 通过nodejs插件,对响应结果进行二次处理 common-data 普通数据(小写驼峰)common-data-under 普通数据下划线 |
menuId | 是 | string | 栏目ID |
返回示例:
正确时返回:
{
data: [
{"field":null,"value":null,"popedom":null}
],
code: 0,
success: true,
}
错误时返回:
{
"code": 0,
"message": ""
"error":{
errorCode:null,
errorText:null
}
"success": false,
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
success | bool | true 表示数据请求成功(跟code=0一致),调用者优先使用 |
code | int | true 表示数据请求成功(跟code=0一致),调用者优先使用 |
data | 数组对象 | [{}] field:字段别名,下划线;popedom字段权限;fieldValue字段默认值 |
cacheDate | date | 最后数据获取时间 |
引入
import { getCurrentMenuField } from “@/actions/auth/popedom”;
src\components\basis\bo-table\method-bs-load-bridge.js
src\components\basis\bs-form\method-bridge-data.js
SQL
set @menuId='3985768390017945600';
set @_userId='pev';
select field,field_value value,popedom from ( select field,field_value,popedom from bo_popedom_field where object_id=@_userId and (object_type=2) and popedom>0 and menu_id=@menuId union select field,field_value,popedom from bo_popedom_field where object_id in (select role_id from bo_user_role where user_id=@_userId) and object_type=1 and popedom>0 and menu_id=@menuId union select field,field_value,popedom from bo_popedom_field where object_id in (select dep_id from bo_user_dep where user_id=@_userId) and object_type=4 and popedom>0 and menu_id=@menuId union select field,field_value,popedom from bo_popedom_field where object_id in (select job_id from bo_user_job where user_id=@_userId) and object_type=5 and popedom>0 and menu_id=@menuId) t where field not in (select field from bo_popedom_field where object_id=@_userId and object_type=3)
开启字段权限
文档更新时间: 2022-08-29 08:09 作者:admin