building-sign/pagesA/overtimeRecord/overtimeRecord.vue

34 lines
658 B
Vue
Raw Normal View History

2022-11-16 10:20:26 +00:00
<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>