33 lines
340 B
Vue
33 lines
340 B
Vue
<template>
|
|
<view class="">
|
|
<tab-bar :indexs='1'></tab-bar>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
bgc: {
|
|
backgroundColor: "#E2EFDF",
|
|
},
|
|
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
onShow() {
|
|
uni.navigateTo({
|
|
url:'/page_user/photo'
|
|
})
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style> |