您好,登錄后才能下訂單哦!
今天小編給大家分享一下Java怎么隱藏系統(tǒng)內(nèi)置應(yīng)用的相關(guān)知識點,內(nèi)容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
點擊平臺主菜單后,出現(xiàn)組件列表界面
其中包含兩部分內(nèi)容:
1)系統(tǒng)內(nèi)置的平臺組件
2)用戶自己設(shè)計的門戶應(yīng)用
如下圖所示:
點擊左右箭頭,會切換到“應(yīng)用”,其中包含了流程應(yīng)用管理模塊、內(nèi)容信息欄目和數(shù)據(jù)視圖統(tǒng)計應(yīng)用。如下圖所示界面:
配置門戶應(yīng)用、流程應(yīng)用管理界面、內(nèi)容管理應(yīng)用和數(shù)據(jù)中心應(yīng)用的可見和隱藏權(quán)限基本一致,用管理員賬號打開對應(yīng)平臺設(shè)計中的應(yīng)用,在“屬性”中設(shè)置可見范圍,如下圖:
如果要控制系統(tǒng)應(yīng)用的可見和隱藏,我們可以如下操作:
用管理員賬號打開“控制面板”-“系統(tǒng)設(shè)置”,進入“界面設(shè)置”-“模塊部署”,如下圖:
這里的模塊包括:系統(tǒng)內(nèi)置組件和系統(tǒng)應(yīng)用,對于系統(tǒng)應(yīng)用,我們只需要點擊“編輯”按鈕,設(shè)置“是否可見”或者“可訪問列表”或者“拒絕訪問列表”,或者我們可以直接“卸載”它。
對于系統(tǒng)內(nèi)置模塊,我們無法在模塊部署界面進行權(quán)限和可見性的設(shè)置。此時,我們可以修改配置文件。
文件路徑:/o2server/servers/webServer/o2_core/o2/xDesktop/$Layout/applications.json
Json文件內(nèi)容如下:
[ { "name": "ControlPanel", "path": "ControlPanel", "title": "控制面板", "iconPath": "appicon.png", "allowList": [], "denyList": [] }, { "name": "DesignCenter", "path": "DesignCenter", "title": "設(shè)計中心", "iconPath": "appicon.png" }, { "name": "TaskCenter", "path": "process.TaskCenter", "title": "辦公中心", "iconPath": "appicon.png", "widgetName": "TaskWidget", "widgetTitle": "待辦列表", "widgetIconPath": "widgeticon.png" }, { "name": "cms", "path": "cms.Index", "title": "信息平臺", "iconPath": "appicon.png" } ]
中allowList表示允許訪問的用戶列表,denyList表示拒絕訪問的用戶列表,可配置人員名稱、角色或群組。
文件路徑:/o2server/servers/webServer/x_component_ControlPanel/$Main/applications.json
Json文件內(nèi)容如下:
[ { "name": "Setting", "path": "Setting", "title": "系統(tǒng)設(shè)置", "iconPath": "appicon.png", "allowList": ["xadmin", "Manager"] }, { "name": "AppMarket", "path": "AppMarket", "title": "應(yīng)用市場", "iconPath": "appicon.png", "allowList": ["xadmin", "Manager"] }, { "name": "ANN", "path": "ANN", "title": "神經(jīng)網(wǎng)絡(luò)模型", "iconPath": "appicon.png", "allowList": ["xadmin", "Manager"] }, { "name": "Org", "path": "Org", "title": "組織管理", "iconPath": "appicon.png" }, { "name": "Profile", "path": "Profile", "title": "個人設(shè)置", "iconPath": "appicon.png" }, { "name": "BAM", "path": "BAM", "title": "流程監(jiān)控", "iconPath": "appicon.png" }, { "name": "LogViewer", "title": "錯誤日志", "path": "LogViewer", "iconPath": "appicon.png", "allowList": ["xadmin", "Manager"] } ]
文件路徑:/o2server/servers/webServer/x_component_DesignCenter/$Main/applications.json
Json文件內(nèi)容如下:
[ { "name": "ApplicationExplorer", "path": "process.ApplicationExplorer", "title": "流程管理平臺", "iconPath": "appicon.png" }, { "name": "PortalExplorer", "path": "portal.PortalExplorer", "title": "門戶管理平臺", "iconPath": "appicon.png" }, { "name": "cmsManager", "path": "cms.Column", "title": "內(nèi)容管理平臺", "iconPath": "appicon.png" }, { "name": "DataExplorer", "path": "query.QueryExplorer", "title": "數(shù)據(jù)中心平臺", "iconPath": "appicon.png" }, { "name": "service.ServiceManager", "path": "service.ServiceManager", "title": "服務(wù)管理", "iconPath": "appicon.png" }, { "name": "AppCenter", "path": "AppCenter", "title": "應(yīng)用導出", "iconPath": "appicon.png", "allowList": ["xadmin", "Manager"] } ]
文件路徑:/o2server/servers/webServer/o2_core/o2/xDesktop/$Layout/components.json
如果在“系統(tǒng)設(shè)置” 的 “模塊部署”中也不出現(xiàn)某個內(nèi)置組件,您可以修改一下json文件:
[ { "name": "ControlPanel", "path": "ControlPanel", "title": "控制面板", "visible": true, "iconPath": "appicon.png" }, { "name": "DesignCenter", "path": "DesignCenter", "title": "設(shè)計中心", "visible": true, "iconPath": "appicon.png" }, { "name": "TaskCenter", "path": "process.TaskCenter", "title": "辦公中心", "iconPath": "appicon.png", "visible": true }, { "name": "cms", "path": "cms.Index", "title": "信息平臺", "visible": true, "iconPath": "appicon.png" }, { "name": "Setting", "path": "Setting", "title": "系統(tǒng)設(shè)置", "iconPath": "appicon.png", "visible": true, "allowList": ["xadmin", "Manager"] }, { "name": "AppMarket", "path": "AppMarket", "title": "應(yīng)用市場", "iconPath": "appicon.png", "visible": true, "allowList": ["xadmin", "Manager"] }, { "name": "Org", "path": "Org", "title": "組織管理", "visible": true, "iconPath": "appicon.png" }, { "name": "Profile", "path": "Profile", "title": "個人設(shè)置", "visible": true, "iconPath": "appicon.png" }, { "name": "BAM", "path": "BAM", "title": "流程監(jiān)控", "visible": true, "iconPath": "appicon.png" }, { "name": "ApplicationExplorer", "path": "process.ApplicationExplorer", "title": "流程管理平臺", "visible": true, "iconPath": "appicon.png" }, { "name": "PortalExplorer", "path": "portal.PortalExplorer", "title": "門戶管理平臺", "visible": true, "iconPath": "appicon.png" }, { "name": "cmsManager", "path": "cms.Column", "title": "內(nèi)容管理平臺", "visible": true, "iconPath": "appicon.png" }, { "name": "DataExplorer", "path": "query.QueryExplorer", "title": "數(shù)據(jù)中心平臺", "visible": true, "iconPath": "appicon.png" }, { "name": "AppCenter", "path": "AppCenter", "title": "應(yīng)用中心", "visible": true, "iconPath": "appicon.png" } ]
這里也可以設(shè)置allowList和denyList,或直接刪除。
系統(tǒng)設(shè)置進入方式:以xadmin身份登錄O2OA系統(tǒng),點擊左上系統(tǒng)應(yīng)用菜單 -> 控制面板 -> 系統(tǒng)設(shè)置。
配置項:系統(tǒng)設(shè)置 - 移動辦公配置 - 模塊配置:
該配置用于對移動APP中需要開啟的模塊內(nèi)容進行設(shè)置以及指定移動辦公首頁。
注意:配置修改后重啟服務(wù)器生效。
以上就是“Java怎么隱藏系統(tǒng)內(nèi)置應(yīng)用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。