💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
``` <template> <view class="content"> 首页11 <view class="" @tap="gototab('/pages/feeds/feeds')"> 发现 </view> <view class="" @tap="gototab('/pages/me/me')"> 我的 </view> <navigator url="../user/user?id=11111111111">用户管理</navigator> </view> </template> <script> export default { data() { return { title: 'Hello', } }, onLoad() { }, methods: { gototab(url){ uni.switchTab({ url:url }) } } } </script> ```