40 lines
884 B
Vue
40 lines
884 B
Vue
<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>
|
|
|