(function () { 'use strict'; var I = function () { return window.AdminI18n; }; function headerHtml(opts) { opts = opts || {}; return '
' + '
' + '' + '' + I().esc(opts.title || 'SoonDesign Admin') + '' + (opts.env ? '' + I().esc(opts.env) + '' : '') + '
' + '
' + (opts.designEntry !== false ? '进入设计端' : '') + '' + '' + '
'; } function mountHeader(container, opts) { if (!container) return; container.innerHTML = headerHtml(opts); } function bindHeader(handlers) { handlers = handlers || {}; var logout = document.getElementById('adminLogout'); if (logout && handlers.onLogout) logout.onclick = handlers.onLogout; } window.AdminShell = { headerHtml: headerHtml, mountHeader: mountHeader, bindHeader: bindHeader, }; })();