| | |
| | | /> |
| | | <div>检验报告</div> |
| | | </van-col> |
| | | <van-col span="6" class="item"> |
| | | <van-col span="6" @click="topath('/paiban')" class="item"> |
| | | <van-image |
| | | round |
| | | width="42px" |
| | |
| | | </div> |
| | | </div> |
| | | </div> |
| | | <van-tabbar v-model="active" route @change="tabChang"> |
| | | <van-tabbar-item name="home" @click="active = 'home'" icon="home-o">首页</van-tabbar-item> |
| | | <van-tabbar-item name="mydo" @click="active = 'mydo'" icon="manager">我的</van-tabbar-item> |
| | | <van-tabbar v-model="active" @change="tabChang"> |
| | | <van-tabbar-item name="home" icon="like">首页</van-tabbar-item> |
| | | <van-tabbar-item name="my" icon="manager">我的</van-tabbar-item> |
| | | </van-tabbar> |
| | | </div> |
| | | </template> |
| | |
| | | ] |
| | | const active=ref('home') |
| | | const tabChang=(index:any)=>{ |
| | | alert(index) |
| | | if (index==='home'){ |
| | | router.push('/') |
| | | } else { |
| | | router.push('my') |
| | | } |
| | | } |
| | | const topath=(url:string)=>{ |
| | | console.log('sss') |
| | | router.push(url) |
| | | } |
| | | onMounted(() => { |
| | | console.log('初始化',route) |
| | | const queryInfo=route.query |