This commit is contained in:
2023-07-11 11:53:16 +08:00
parent cbe1999b51
commit 1eaf929a99
20 changed files with 752 additions and 39 deletions

View File

@@ -0,0 +1,63 @@
<template>
<div style="display:flex;flex-direction:row;flex-wrap: nowrap">
<div style="display: flex;flex-direction:column;flex-wrap: nowrap">
<div class="PageHeader">
<br/>
<el-page-header @back="goBack" style="justify-content:left;display: flex;">
<div slot="title" style="font-size:23px;font-weight: 600;"></div>
<div slot="content" class="test" style="font-size:23px;font-weight: 600;">
<div>OneFile</div>
</div>
</el-page-header>
</div>
<div class="PageContent" style="display: flex;flex-direction: column;flex-wrap: nowrap">
<el-card style="border: none">
<div style="display: flex;flex-direction: column;flex-wrap: nowrap;">
<el-card style="box-shadow: none;border-radius: 5px">
</el-card>
<el-card style="box-shadow: none;margin-top: 20px;border-radius: 5px">
</el-card>
</div>
</el-card>
</div>
</div>
<RightTools></RightTools>
</div>
</template>
<script>
import RightTools from "@/components/Home/RightTools.vue";
export default {
name: "OneFileDetail",
components: {RightTools},
data(){
return{
}
},
methods:{
goBack() {
window.history.go(-1);
},
}
}
</script>
<style scoped>
::v-deep .el-page-header__left{
left:10px;
}
::v-deep .el-page-header__content{
flex:1;
}
::v-deep .el-table {
tr th,
tr td {
border-right: none;
}
}
</style>