| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- export default [
- {
- name: '导航',
- is_show: true,
- controlComName: 'widgetNavControl',
- show_type: 'nav',
- params: {
- defaultColor: '#888',
- activeColor: '#f0250e',
- navList: [
- {
- pic_url:
- require('@/chart-gpt/static/image/tabbar-icon-1.png'),
- active_url:
- require('@/chart-gpt/static/image/tabbar-icon-1-active.png'),
- nav_text: '提问首页',
- link: {
- name: '提问首页',
- link: '/chart-gpt/index/index',
- open_type: 'redirectTo',
- params: [],
- },
- },
- {
- pic_url:
- require('@/chart-gpt/static/image/tabbar-icon-2.png'),
- active_url:
- require('@/chart-gpt/static/image/tabbar-icon-2-active.png'),
- nav_text: '提问模版',
- link: {
- name: '提问模版',
- link: '/chart-gpt/moban/moban',
- open_type: 'redirectTo',
- params: [],
- },
- },
- {
- pic_url:
- require('@/chart-gpt/static/image/tabbar-icon-3.png'),
- active_url:
- require('@/chart-gpt/static/image/tabbar-icon-3-active.png'),
- nav_text: '每日任务',
- link: {
- name: '每日任务',
- link: '/chart-gpt/task/task',
- open_type: 'redirectTo',
- params: [],
- },
- },
- {
- pic_url:
- require('@/chart-gpt/static/image/tabbar-icon-qa.png'),
- active_url:
- require('@/chart-gpt/static/image/tabbar-icon-qa-active.png'),
- nav_text: '问答记录',
- link: {
- name: '问答记录',
- link: '/chart-gpt/qa-list/qa-list',
- open_type: 'redirectTo',
- params: [],
- },
- }
- ],
- },
- moduleCss: {
- backgroundColor: '#ffffff',
- backgroundImage: '',
- bgImg: '',
- useBackground: true,
- backgroundSize: '100% 100%',
- backgroundRepeat: 'no-repeat',
- },
- },
- ]
|