/** * placeholder.js - 占位页面通用逻辑(媒体管理/竞品管理等未开发模块) * 用法:renderPlaceholder('media_resources'); —— key 需在 MENU_MAP 中存在 */ function renderPlaceholder(key) { var m = MENU_MAP[key] || { name: key, icon: 'document' }; renderShell(m.name, '业务模块 / ' + m.name); var html = '
' + '
' + (ICONS[m.icon] || '') + '
' + '
' + escHtml(m.name) + '
' + '
该模块正在建设中,敬请期待
' + '
'; $('#page-content').html(html); initPage(key, function (user) { if (!checkPagePermission(key)) return; }); }