Browse Source

办事跳转

lidongyu 1 year ago
parent
commit
3a1994997e
1 changed files with 7 additions and 2 deletions
  1. 7 2
      pages/index/index.vue

+ 7 - 2
pages/index/index.vue

@@ -20,7 +20,7 @@
                     <span>商城</span>
                 </li>
                 <li>
-                    <view class="bs"><em class="iconfont icon-banshidating1"></em></view>
+                    <view class="bs" @tap="goBanShi"><em class="iconfont icon-banshidating1"></em></view>
                     <span>办事</span>
                 </li>
             </ul>
@@ -353,7 +353,12 @@ export default {
             uni.navigateTo({
                 url: '/pages/cooperative/cooperative'
             });
-        }
+        },
+		goBanShi() {
+			uni.navigateTo({
+				url: '/pages/handleAffairs/handleAffairs'
+			});
+		}
     }
 };
 </script>