移动端主页配置:

1.配置上方(人气排名、档案浏览次数区域、待办);

2.隐藏下方按钮“圈子”。

分步指南

1.配置上方(人气排名、档案浏览次数区域、待办)

系统设置 > 拓展管理 > 公司级模板 > 创建个性化模板:

配置index_bar_mobile.json:

通过hide属性,控制显示的对应内容

index_bar_mobile.json
{
    "result":[
        {
            "key":"emp_hit_rate",
            "hide":true,
            "label":"人气排名",
            "api_name":"get.employee.access.heat",
            "api_params":"=function(){return {'empid': SCOPE.auth.employee.id }}",
            "dataParse":"=function(data){return data.data.heat}",
            "click":"=function(){SCOPE.emp_search_need_charge||SCOPE.super_go('emp_hit', {'tab': 'order'})}"
        },
        {
            "key":"emp_access_count",
            "hide":true,
            "label":"档案浏览次数",
            "api_name":"get.employee.access.heat",
            "api_params":"=function(){return {'empid': SCOPE.auth.employee.id }}",
            "dataParse":"=function(data){return data.data.access_count}",
            "click":"=function(){SCOPE.emp_search_need_charge || SCOPE.super_go('emp_hit')}"
        },
        {
            "key":"padding_count",
            "hide":true,
            "label":"待办",
            "api_name":"workflow.instance.detail.get.unprocess.list.count",
            "api_params":"",
            "dataParse":"=function(data){return data.count.total}",
            "click":"=function(){SCOPE.super_go('workflow_online.pending')}"
        }
    ]
}


2.隐藏下方按钮“圈子”:

系统设置 > 企业设置 > 服务器设置 > 类别:其他 > 是否暂时关闭圈子功能:是