You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

152 lines
2.8 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

const routes = [
{
path: "/pages/login/login",
name: 'login',
meta: {
title: '登录',
},
},
{
//注意path必须跟pages.json中的地址对应最前面别忘了加'/'哦
path: '/pages/index/index',
name: 'index',
meta: {
title: '主页',
},
},
{
//注意path必须跟pages.json中的地址对应最前面别忘了加'/'哦
path: '/pages/home/home',
//aliasPath:'/', //对于h5端你必须在首页加上aliasPath并设置为/
name: 'home',
meta: {
title: '首页',
},
},
{
path: '/pages/user/people',
name: 'people',
meta: {
title: '个人中心',
},
},
{
path: '/pages/user/userdetail',
name: 'userdetail',
meta: {
title: '个人详情',
},
},
{
path: '/pages/user/useredit',
name: 'useredit',
meta: {
title: '个人编辑',
},
},
{
path: '/pages/user/userexit',
name: 'userexit',
meta: {
title: '退出',
},
},
{
path: '/pages/user/location',
name: 'location',
meta: {
title: '定位',
},
},
{
path: '/pages/common/exit',
name: 'exit',
meta: {
title: '退出',
},
},
{
path: '/pages/common/success',
name: 'success',
meta: {
title: 'success',
},
},{
path: '/pages/addressbook/address-book',
name: 'addressBook',
meta: {
title: 'addressBook',
},
},
{
path: '/pages/addressbook/level-address-book',
name: 'levelAddressBook',
meta: {
title: 'levelAddressBook',
},
},
{
path: '/pages/addressbook/member',
name: 'member',
meta: {
title: 'member',
},
},
{
path: '/pages/addressbook/address-detail',
name: 'addressDetail',
meta: {
title: 'addressDetail',
},
},
{
path: '/pages/annotation/annotationList',
name: 'annotationList',
meta: {
title: '通知公告',
},
},
{
path: '/pages/annotation/annotationDetail',
name: 'annotationDetail',
meta: {
title: '通知详情',
},
},
{
path: '/pages/common/helloWorld',
name: 'helloWorld',
meta: {
title: 'helloWorld',
},
},
{
path: '/pages/common/houseStation',
name: 'houseStation',
meta: {
title: '户用电站',
},
},
{
path: '/pages/station/list',
name: 'stationList',
meta: {
title: '电站列表',
},
},
{
path: '/pages/station/item1',
name: 'stationListItem1',
meta: {
title: '子阵信息',
},
},
{
path: '/pages/station/item2',
name: 'stationListItem2',
meta: {
title: '逆变器信息',
},
},
]
export default routes