1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <template >
- <view>
- <u-tabbar v-model="myCurrent" :list="tabbarList"
- :before-switch="beforeSwitch" active-color="#1F4A99" ></u-tabbar>
-
- </view>
- </template>
- <script>
-
- export default {
- name:"tabbarJob",
- props:{
- current: 0,
- elderStatus: false
- },
- data() {
- return {
- activeColor:"#1F4A99",
- oldindex:this.current,
- myCurrent:this.current,
- tabbarList: [
- {
-
- iconPath: "home",
- selectedIconPath: "home-fill",
- text: '主页 ',
- pagePath2:"/",
- login:false,
- },
- {
-
- iconPath: "heart",
- selectedIconPath: "heart-fill",
- text: '职工之家 ',
- pagePath2:"/pages/staffHome/staffHome",
-
- },
- {
- iconPath: "account",
- selectedIconPath: "account-fill",
- text: '我的',
- login:true,
- pagePath2:"/pages/mine/mine",
- }
- ],
- };
-
- },methods:{
- setcount(c){
- //this.myCurrent=c
- },
- beforeSwitch(index){
-
- var bl=false
-
- if(index==this.current){
-
- return false
- }
- //this.myCurrent=index
- var url =this.tabbarList[index].pagePath2;
-
- if(this.tabbarList[index].login){
- var userInfo=this.carhelp.getPersonInfo()
- if(userInfo){
-
- }else{
- url="/pages/login/index"
- bl=true
- }
-
- }
- uni.navigateTo({
- url: url
- })
-
-
-
- },
-
- },
- mounted(){
-
- },destroyed(){
-
- }
-
-
- }
- </script>
- <style>
-
- </style>
|