diff --git a/src/page/layout/components/TabBottom.vue b/src/page/layout/components/TabBottom.vue
index 503bda1..8cd6d52 100644
--- a/src/page/layout/components/TabBottom.vue
+++ b/src/page/layout/components/TabBottom.vue
@@ -5,9 +5,13 @@
首页
-
-
- 闸井
+
+
+
+
+
+
+ 搜索
@@ -56,18 +60,27 @@
}
},
methods:{
+ // 跳转到主页
goHome(){
this.$router.push({name: 'index'})
},
+ // 跳转到井管理
goWellManage(){
this.$router.push({name: 'wellManage',params:{refresh:true}})
},
+ // 跳转到搜索工单页面
+ goSearch(){
+ this.$router.push({name: 'jobSearch'})
+ },
+ // 跳转到工单列表
goJob(){
this.$router.push({name: 'job'})
},
+ // 跳转到消息
goMessage(){
this.$router.push({name: 'index'})
},
+ // 跳转到我的
goMine(){
this.$router.push({name: 'mine'})
}