31 lines
759 B
Vue
31 lines
759 B
Vue
<template>
|
|
<view class="1">
|
|
<CustomNavbar @back="back" :titke="'消息'"></CustomNavbar>
|
|
<empty content="暂无数据" mr-top="300"></empty>
|
|
<CustomTabbar :currentpage="2"></CustomTabbar>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import CustomNavbar from '@/components/CustomNavbar/navbar.vue'
|
|
import CustomTabbar from '@/components/CustomTabbar/custom_tabbar.vue'
|
|
export default {
|
|
components: {CustomTabbar, CustomNavbar},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
back() {
|
|
uni.reLaunch({
|
|
url: '/pages/my/my'
|
|
})
|
|
}
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style> |