xingyy 11 months ago
parent b5e192d4b3
commit 80441b9dfd

@ -2,7 +2,7 @@
<view class="content"> <view class="content">
<u-tabbar <u-tabbar
:value="value4" :value="value4"
@change="name => value4 = name" @change="change5"
:fixed="true" :fixed="true"
:border="false" :border="false"
:placeholder="false" :placeholder="false"
@ -53,7 +53,9 @@ export default {
}, },
methods: { methods: {
change5(name){
this.value4 = name
}
} }
} }
</script> </script>

@ -19,5 +19,18 @@
"navigationBarBackgroundColor": "#F8F8F8", "navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8" "backgroundColor": "#F8F8F8"
}, },
"uniIdRouter": {} "uniIdRouter": {},
"tabBar": {
"custom": true,
"list": [
{
"pagePath": "pages/index/index"
},
{
"pagePath": "pages/my/my"
}
]
}
} }

@ -0,0 +1,16 @@
<template>
<div>
</div>
</template>
<script>
export default {
name: "my"
}
</script>
<style scoped lang="scss">
</style>
Loading…
Cancel
Save