...
注意 |
---|
现【人员信息管理】功能默认只管理在职人员,不在职的人默认在新功能【离职人员管理】中显示 如果想继续在【人员信息管理】中显示离职人员,需要在元数据Employee.meta.list.all.json中修改conditions配置,请参考: |
1.6 支持标签过滤
人员信息管理主界面支持进行标签过滤,可多选,标签间默认是「且」的关系。
信息 | ||
---|---|---|
| ||
标签筛选器支持在其他页面使用(例如切换子集页面配置),需要注意的是:该模型中必须包含人员id |
参考配置:在主界面-元数据配置:
代码块 | ||
---|---|---|
| ||
{"filters": [{ "key": "id", //人员id对应值,例如:教育经历子集中人员id为employee_id,绩效子集中人员id为obj_id "label": "标签", "component": "hc-tag-list-selector", "sequence": 60, "options": { "meta_disabled": false, "data_type": "JSON", "required": false, "width": "col-12", "singleLine": true, "data_precision": null, "hide": false, "readOnly": false, "placeholder": "请输入标签条件", "default": null, "default_expression": null, "tip": null, "returnFormat": "id", "selectorModel": "TagInformation", "multi": true, "category_field": "tag_type_id", "selectorType": 2, "filter_dict": { "enabled": 1 }, "filter_mode": { "key": "get_emp_by_tag" }, "state": "categoryListSelector" } }] } |
...