add reportSheet and reportSheetCategory & update common.scss

This commit is contained in:
lb
2023-03-06 09:47:35 +08:00
parent 00016a948b
commit 96861954b2
4 changed files with 211 additions and 5 deletions

View File

@@ -0,0 +1,27 @@
<template>
<div class="main-container">reportSheet Category</div>
</template>
<script>
export default {
name: "ReportSheetCategoryView",
props: {},
data() {
return {};
},
created() {},
mounted() {},
methods: {},
};
</script>
<style scoped>
.main-container {
background: white;
/* height: 100%; */
min-height: inherit;
border-radius: 6px;
padding: 16px;
box-shadow: 0 0 1.125px 0.125px rgba(0, 0, 0, 0.125);
}
</style>