1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| import zhCN from '@/locales/zh-CN/mob.js'
| import enUS from '@/locales/en-US/mob.js'
| import mobLogin1 from '@/assets/mobimg/mob-login1.png'
| import mklogo from '@/assets/mobimg/mklogo.png'
|
| const _dict = sessionStorage.getItem('lang') !== 'en-US' ? zhCN : enUS
|
| // 组件配置信息
| export const mobOptions = [{
| title: _dict['mob.login'],
| sourceType: 'login',
| options: [
| {
| sourceType: 'mob-login-1', type: 'mob', url: mobLogin1, style: {},
| param: {
| type: 'login', subtype: 'mob-login-1',
| box: { editable: true, eleType: 'box', style: {paddingTop: '17vh', color: '#ffffff', backgroundImage: 'linear-gradient(#378DBE, #46C29E, #48A9D6)'}},
| logo: { editable: true, eleType: 'img', content: mklogo, style: {} },
| title: { editable: true, eleType: 'text', content: '明科商业智能开放平台', style: {fontSize: '20px', fontWeight: 'bold', color: '#ffffff', textAlign: 'center'}},
| login: { editable: true, eleType: 'button', content: '登录', style: {fontSize: '18px', color: '#ffffff', textAlign: 'center', lineHeight: 2.4}},
| copyright: { editable: true, eleType: 'textarea', content: 'Copyright©2017 所有相关版权归 北京明科普华信息技术有限公司', style: {fontSize: '12px', color: '#ffffff', textAlign: 'center'} }
| }
| },
| ]
| }]
|
|