ac-selector
简介
用友中台选人组件,目前只有智能产品部-消息组和预警、技术平台-调度中心在用。目前只支持从服务端获取数据。
peerDependencies
- react >= 15.3.0
- react-dom >= 15.3.0
- prop-types >= 15.6.0
使用方法
npm i ac-Selector
import Selector from 'ac-Selector'
import 'ac-Selector/build/Selector.css'
API
参数 | 说明 | 类型 | 是否必填 | 默认值 | 返回值 |
---|
show | 是否显示模态框 | boolean | 是 | false | 无 |
locale | 语言显示 | string | 是 | zh_CN (可选zh_TW ,en_US ) | 无 |
onConfirm | 确认回调函数 | func | 是 | () => {} | 选中的用户 |
onClose | 取消回调函数 | func | 是 | () => {} | 无 |
selectedUser | 已选的用户列表 | array | 否 | [] | 无 |
selectedOther | 已选的其他列表 | array | 否 | [] | 无 |
mode | 环境区分 | string | 否 | daily | |
documentNo | 单据编号 | string | 否 | st_purchaseorder | 规则选人查询数据必传参数 |
documentName | 单据名称 | string | 否 | 无 | 规则选人根节点展示的名称 |
ruleList | 规则列表 | array | 否 | 无 | 自定义展示规则列表,不传的话需要传documentNo 和documentName ,否则规则没有数据 |
tabHandleFunc | 扩展标签点击时候的回调,传参数(tabMark, index, e) | func | 否 | 无 | 无 |
tabConfig | 传入的扩展数据(字段在下面示例代码) | array | 否 | [] | 无 |
tableData | 传入的列表(字段在下面示例代码) | array | 否 | [] | 无 |
treeConfig | 传入的树(字段在下面示例代码) | array | 否 | [] | 无 |
pageTotal | 分页,总共条数 | number | 否 | 无 | 无 |
pageItems | 分页,总页数 | number | 否 | 无 | 无 |
staffSearchContent | 自定义 staffSearch 接口内容、类型 (addres, {pageSize, pageNo, keyword})=>({url: 'www.baidu.com/sdf/sdf',option: {method: 'POST', body: JSON.stringify({a:1, b:2}),// ...}})) | number | 否 | 无 | 无 |
roleSearchContent | 自定义 roleSearch 接口内容、类型 ,功能类似staffSearchContent | number | 否 | 无 | 无 |
orgSearchContent | 自定义 orgSearch 接口内容、类型 ,功能类似staffSearchContent | number | 否 | 无 | 无 |
wechatUsersSearchContent | 自定义 wechatUsers 接口内容、类型 ,功能类似staffSearchContent | number | 否 | 无 | 无 |
关于扩展的详细可参考 demo2
demo2
部分数据的格式
tabConfig = [
{
tabName: '扩展名',
tabMark: 'extend',
tabType: 'table',
tableConfig: {
searchPlaceholder: '请输入您要查找的XX',
enterSearchFunc: this.enterSearchFunc,
clickSearchFunc: this.clickSearchFunc,
tableColumns: [
{ key: 'username', title: '姓名', dataIndex: 'username', width: 100 },
{ key: 'orgName', title: '部门', dataIndex: 'orgName', width: 200 },
{ key: 'email', title: '账号(邮箱)', dataIndex: 'email', width: 200 },
{ key: 'mobile', title: '手机号码', dataIndex: 'mobile', width: 150 }
]
}
},
{
tabName: '扩展2',
tabMark: 'extend2',
tabType: 'tree',
treeConfig: [
{
orgId: '1440500105089280',
orgName: '北京用友实业公司',
parentId: '',
childs: [
{
orgId: '1440592889499904',
orgName: '仓储中心-北京',
parentId: '1440500105089280',
childs: [
{
orgId: '1492929388744960',
orgName: '新增',
parentId: '1440592889499904'
}
]
},
{
orgId: '1440592918794496',
orgName: '仓储中心-南京',
parentId: '1440500105089280'
}
]
}
]
}
]
tableData = {
tableData: [
{
type: '扩展名',
key: '1',
roleId: '1',
reciving: 'name1',
username: 'name1',
orgName: 'orgName1',
email: 'yonyou@yonyou.com',
mobile: '123456'
},
{
type: '扩展名',
key: '2',
roleId: '2',
reciving: 'name2',
username: 'name2',
orgName: 'orgName2',
email: 'yonyou@yonyou.com',
mobile: '123456'
}
]
}
treeConfig= [
{
type:'扩展2',
orgId: '1440500105089280',
orgName: '北京用友实业公司',
parentId: '',
childs: [
{
type:'扩展2',
orgId: '1440592889499904',
orgName: '仓储中心-北京',
parentId: '1440500105089280',
childs: [
{
type:'扩展2',
orgId: '1492929388744960',
orgName: '新增',
parentId: '1440592889499904'
}
]
},
{
type:'扩展2',
orgId: '1440592918794496',
orgName: '仓储中心-南京',
parentId: '1440500105089280'
}
]
}
]
onConfirm
回调函数参数说明
{
type:'用户',
typeCode: 0,
userid:'用户id',
username:'用户名',
mobile:'手机号',
email:'用户邮箱',
orgName:'用户部门',
}
角色
{
type: '角色',
typeCode: 1,
roleId: '角色id',
roleCode: '角色code',
roleName: '角色名称'
}
组织
{
type: '组织',
typeCode: 2,
orgId: '组织ID',
orgName: '组织名称'
}
规则
{
type: '规则',
typeCode: 3,
ruleCode: '规则code',
ruleName: '规则名称'
}
TODO