You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
526 B

5 years ago
<template>
4 years ago
<div class="d-flex align-center justify-center nav">
<a-icon type="left" class="back" />
<div>考勤管理</div>
<a-button type="primary" size="small" class="export"> 导出 </a-button>
5 years ago
</div>
</template>
<script>
export default {
data() {
4 years ago
return {};
5 years ago
},
5 years ago
4 years ago
created() {},
4 years ago
mounted() {},
5 years ago
4 years ago
methods: {},
5 years ago
};
</script>
4 years ago
<style lang="less" scoped>
.nav {
position: relative;
height: 40px;
5 years ago
}
4 years ago
.back {
position: absolute;
left: 0;
5 years ago
}
4 years ago
.export {
position: absolute;
right: 0;
5 years ago
}
</style>