commit message

This commit is contained in:
Chopper
2021-05-13 10:56:04 +08:00
commit ec3e958037
728 changed files with 132685 additions and 0 deletions

53
manager/src/App.vue Normal file
View File

@@ -0,0 +1,53 @@
<template>
<div id="main" class="app-main">
<router-view></router-view>
</div>
</template>
<script>
import {getCategoryTree} from '@/api/goods.js'
export default {
updated() {
if (!localStorage.getItem('category') && this.$route.path !== '/login') {
getCategoryTree(0).then(res => {
if (res.success) {
localStorage.setItem('category', JSON.stringify(res.result))
}
})
}
}
};
</script>
<style>
html,
body {
width: 100%;
height: 100%;
background: #f0f0f0;
font-size: 12px;
/* overflow: hidden; */
}
.app-main {
width: 100%;
height: 100%;
}
.br button {
margin-right: 5px;
}
.operation button {
margin-right: 5px;
}
.ivu-btn-text:focus {
box-shadow: none !important;
}
.ivu-tag {
cursor: pointer;
}
</style>