01.岗位多选

 "filters": [{
        "label": "所属岗位",
        "key": "position_id",       //对应要筛选的岗位key值
        "component": "hc-tree-list-selector",
        "options": {
            "selectorType": 2,
            "selectorModel": "OrgPosition"
        }
    }]

02.部门多选

 "filters": [{
        "label": "所属部门",
        "key": "department_id",       //对应要筛选的部门key值
        "component": "hc-tree-list-selector",
        "options": {
            "selectorType": 2,
            "selectorModel": "OrgDepartment",
			"child_include":true
        }
    }]
  • 无标签