44 lines
1.0 KiB
Vue
Raw Normal View History

2023-03-03 16:08:27 +08:00
<!--
* @Author: Kane
* @Date: 2023-03-03 14:38:07
* @LastEditors: Kane
* @FilePath: /task_schedule/src/views/DesktopArchievement.vue
* @Description: 显示在桌面上展示任务量与业绩的view
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
<div class="view-wrapper"></div>
</template>
<script lang="ts">
import { reactive, onBeforeMount } from "vue";
import { StaffInfo } from "@/data/cpicxim/StaffInfo";
import { loadStaffInfo } from "@/utils/api/localStorage";
export default {
name: "DesktopArchievement",
setup()
{
const staffInfo: StaffInfo = loadStaffInfo();
onBeforeMount(() =>
{
//检查存储的登录信息,不存在则返回登录页面
});
},
};
</script>
<style scoped lang="scss">
.view_wrapper {
box-sizing: border-box;
height: calc(100vh - 10mm);
width: calc(100vw - 10mm);
border: 1px solid red;
}
</style>
<style lang="scss">
body {
background-color: $color-bg-01;
}
</style>