123456789101112131415161718192021222324252627282930313233343536373839404142 |
- export default {
- data() {
- return {
- tabbarList: [{
- text: "房间",
- icon: "home",
- path: '/pages/tabbar/room/room'
- },
- {
- text: "网关",
- icon: "order",
- path: '/pages/tabbar/gateway/gateway'
- },
- {
- text: "首页",
- icon: "grid",
- path: '/pages/tabbar/index/index'
- },
- {
- text: "蓝牙",
- icon: "play-right",
- path: '/pages/tabbar/Bluetooth/Bluetooth'
- },
- {
- text: "我的",
- icon: "account",
- path: '/pages/tabbar/mine/mine'
- }
- ]
- };
- },
- methods: {
- changeRouter(item) {
- console.log(item.path);
- uni.redirectTo({
- url: item.path
- })
- }
- }
- }
|