YNUtdPlatform/pages/realName/my/my.vue

40 lines
844 B
Vue
Raw Normal View History

2024-09-02 18:17:17 +08:00
<template>
<view class="page">
<u-navbar title="我的" placeholder @leftClick="leftClick" bgColor="#00337A" :titleStyle="{ color: '#FFF', fontSize: '32rpx' }"/>
<m-tabbar fixed fill :current="1" :tabbar="tabbar"></m-tabbar>
</view>
</template>
<script>
import TabbarConfig from '../util/tabbar.js'
import config from '@/config'
export default {
data() {
return {
tabbar: TabbarConfig,
// userName: uni.getStorageSync('userName'),
// className: uni.getStorageSync('className'),
// facePath: config.fileUrl + uni.getStorageSync('facePath'),
// token: uni.getStorageSync('access_token')
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss">
.page {
width: 100vw;
height: 100vh;
background: linear-gradient(#eaf0f7, #f8f8f8);
box-sizing: border-box;
padding: 15vh 8vw;
}
</style>