增加移动位置显示功能

This commit is contained in:
Lawrence
2021-01-27 15:24:28 +08:00
parent b0088b8bd3
commit 9571eb3a15
9 changed files with 744 additions and 24 deletions

View File

@@ -4,6 +4,7 @@ import VueRouter from 'vue-router'
import control from '../components/control.vue'
import videoList from '../components/videoList.vue'
import channelList from '../components/channelList.vue'
import devicePosition from '../components/devicePosition.vue'
import login from '../components/Login.vue'
const originalPush = VueRouter.prototype.push
@@ -35,5 +36,10 @@ export default new VueRouter({
name: 'channelList',
component: channelList,
},
{
path: '/devicePosition/:deviceId/:parentChannelId/:count/:page',
name: 'devicePosition',
component: devicePosition,
},
]
})