版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

注意

现【人员信息管理】功能默认只管理在职人员,不在职的人默认在新功能【离职人员管理】中显示

如果想继续在【人员信息管理】中显示离职人员,需要在元数据Employee.meta.list.all.json中修改conditions配置,请参考:
“conditions”: {
“job_info.on_job”: [
“1”,
“0”
]
}

1.6 支持标签过滤

代码块
title标签过滤
{"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"
        }
    }]
}