1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- export default {
- data() {
- return {
- tabbars: [{
- text: '',
- pagePath: '/pages/index/index',
- iconPath: '/static/tabbar-icon/index.png',
- selectedIconPath: '/static/tabbar-icon/indexActive.png'
- },
- {
- text: '',
- pagePath: '/pages/make/index',
- iconPath: '/static/tabbar-icon/make.png',
- selectedIconPath: '/static/tabbar-icon/makeActive.png'
- },
- {
- type: 'midButton',
- iconPath: '/static/tabbar-icon/center.png',
- },
- {
- text: '',
- count: 0,
- pagePath: '/pages/message/mailMessage',
- iconPath: '/static/tabbar-icon/message.png',
- selectedIconPath: '/static/tabbar-icon/messageActive.png'
- },
- {
- text: '',
- pagePath: '/pages/my/my',
- iconPath: '/static/tabbar-icon/mine.png',
- selectedIconPath: '/static/tabbar-icon/mineActive.png'
- }
- ]
- }
- },
- onShow() {
- // #ifdef APP-NVUE
- this.$nextTick(() => {
- this.$refs.tabbar && this.$refs.tabbar.payAnimation()
- })
- // #endif
- },
- }
|