bike/components/tab-bar/tab-bar.vue

136 lines
3.5 KiB
Vue
Raw Normal View History

2024-05-08 23:18:30 +08:00
<template>
<view class="cont">
<view class="tab" @tap.stop="changeTabbar(0)">
<image src="@/static/tabbar/worke.png" mode="" v-show="indexs!=0"></image>
<image src="@/static/tabbar/worke-active.png" mode="" v-show="indexs==0"></image>
<view class="txt" :class="indexs==0?'act1':''" >工作台</view>
</view>
<view class="tab" @tap.stop="changeTabbar(1)">
<image src="@/static/tabbar/map.png" mode="" v-show="indexs!=1" style="width: 36rpx;height: 36rpx;"></image>
<image src="@/static/tabbar/map-active.png" mode="" v-show="indexs==1" style="width: 36rpx;height: 36rpx;"></image>
<view class="txt" :class="indexs==1?'act1':''">地图</view>
</view>
<view class="tab" @tap.stop="changeTabbar(2)">
<image src="@/static/tabbar/order.png" mode="" v-show="indexs!=2" style="width: 28rpx;height: 36.4rpx;"></image>
<image src="@/static/tabbar/order-active.png" mode="" v-show="indexs==2" style="width: 28rpx;height: 36.4rpx;"></image>
<view class="txt" :class="indexs==2?'act1':''">订单</view>
</view>
<!-- <view class="u-page">
</view> -->
<!-- 与包裹页面所有内容的元素u-page同级且在它的下方 -->
<!-- <u-tabbar v-model="current" :list="list" icon-size='40rpx' active-color='#3996fd' inactive-color="#c8c7cb"></u-tabbar> -->
</view>
</template>
<script>
export default {
props: {
indexs: [Number, String], //题目id
},
data() {
return {
currentTabbarIndex: 0,
// 自定义底栏对应页面的加载情况
tabberPageLoadFlag: [],
ispop: false,
}
},
mounted() {
this.currentTabbarIndex = this.indexs
// const index = Number(this.indexs || 0)
// // 根据底部tabbar菜单列表设置对应页面的加载情况
// for (let i = 0; i < 5; i++) {
// this.tabberPageLoadFlag.push(i === index)
// }
// this.changeTabbar(index)
},
methods:{
changeTabbar(index) {
2024-06-21 18:03:21 +08:00
let that =this
2024-05-08 23:18:30 +08:00
if (this.currentTabbarIndex === index) return
// this._switchTabbarPage(index)
if(index==0){
2024-06-04 18:12:12 +08:00
uni.redirectTo({
2024-05-08 23:18:30 +08:00
url:'/pages_admin/admin_worke',
routeType: 'wx://modal',
success() {
2024-06-21 18:03:21 +08:00
that.currentTabbarIndex = index
2024-05-08 23:18:30 +08:00
}
})
console.log('点击了',index);
}else if(index==1){
2024-06-04 18:12:12 +08:00
uni.redirectTo({
2024-05-08 23:18:30 +08:00
url:'/pages_admin/admin_index',
routeType: 'wx://modal',
success() {
2024-06-21 18:03:21 +08:00
that.currentTabbarIndex = index
2024-05-08 23:18:30 +08:00
}
})
}else if(index==2){
2024-06-04 18:12:12 +08:00
uni.redirectTo({
2024-05-08 23:18:30 +08:00
url:'/pages_admin/admin_order',
routeType: 'wx://modal',
success() {
2024-06-21 18:03:21 +08:00
that.currentTabbarIndex = index
2024-05-08 23:18:30 +08:00
}
})
}
},
}
}
</script>
<style lang="scss" scoped>
/deep/.u-tabbar__content__item__button {
top: 20rpx !important;
}
/deep/.u-tabbar {
.u-tabbar__content__item:nth-child(2) {
.u-tabbar__content__item__button {
width: 32rpx !important;
}
}
}
.cont {
2024-06-21 18:03:21 +08:00
padding: 15rpx 0 30rpx;
2024-05-08 23:18:30 +08:00
position: fixed;
// left: 60rpx;
2024-06-03 18:06:08 +08:00
bottom: 0rpx;
2024-05-08 23:18:30 +08:00
width: 750rpx;
2024-06-21 18:03:21 +08:00
height: 130rpx;
2024-05-08 23:18:30 +08:00
background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(53, 140, 255, 0.1);
// border-radius: 60rpx;
display: flex;
2024-06-21 18:03:21 +08:00
// align-items: center;
2024-05-08 23:18:30 +08:00
justify-content: space-around;
border-top: 2rpx solid #95989D;
.tab{
2024-07-20 18:06:04 +08:00
width: 100rpx;
2024-05-08 23:18:30 +08:00
display: flex;
flex-wrap: wrap;
justify-content: center;
image{
width: 40rpx;
height: 40rpx;
}
.txt{
text-align: center;
width: 100%;
2024-06-21 18:03:21 +08:00
margin-top: 4rpx;
2024-05-08 23:18:30 +08:00
font-size: 20rpx;
font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
font-weight: 400;
color: #95989D;
}
.act1{
color: #8883F0;
}
}
}
</style>