34 lines
658 B
Vue
34 lines
658 B
Vue
|
<template>
|
|||
|
<view class="pad-x120">
|
|||
|
<!-- 头部 -->
|
|||
|
<status-nav navBarTitle="加班记录"></status-nav>
|
|||
|
<view class="content" :style="{'padding-top':statusHeight+50+'px'}">
|
|||
|
|
|||
|
</view>
|
|||
|
<!-- 尾部 -->
|
|||
|
<tabbar :userType="userType" current="2"></tabbar>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
<script>
|
|||
|
import tabbar from '@/components/tabbar/tabbar';
|
|||
|
export default {
|
|||
|
components:{
|
|||
|
tabbar
|
|||
|
},
|
|||
|
data() {
|
|||
|
return {
|
|||
|
statusHeight:uni.getSystemInfoSync().statusBarHeight, //状态栏高度
|
|||
|
userType:'worker', //账户类型 工人:worker 负责人:director
|
|||
|
}
|
|||
|
},
|
|||
|
onLoad() {
|
|||
|
|
|||
|
},
|
|||
|
methods: {
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
<style scoped>
|
|||
|
|
|||
|
</style>
|