| | |
| | | } |
| | | |
| | | delete config.miniTitle |
| | | delete config.miniReloadUp |
| | | |
| | | config.components.forEach(item => { |
| | | if (item.type === 'login') { |
| | |
| | | config.loginview = true |
| | | } else if (item.type === 'navbar') { |
| | | config.tabview = true |
| | | } else if (item.type === 'topbar' && adapters.includes('wxmini') && item.wrap.minishow !== 'true') { |
| | | config.miniTitle = item.wrap.title || '' |
| | | } else if (item.type === 'topbar' && adapters.includes('wxmini')) { |
| | | if (item.wrap.minishow !== 'true') { |
| | | config.miniTitle = item.wrap.title || '' |
| | | } |
| | | if (item.wrap.reload === 'true') { |
| | | config.miniReloadUp = true |
| | | } |
| | | } |
| | | }) |
| | | |