53 lines
1007 B
Vue
53 lines
1007 B
Vue
|
|
<template>
|
||
|
|
<div class="card">
|
||
|
|
<div class="cardleft">
|
||
|
|
<img class="headsculpture" src="../../../assets/manage/touxiang.png" alt="">
|
||
|
|
<!-- <img class="headsculpture" src="../../../assets/manage/nvtouxiang.png" alt=""> -->
|
||
|
|
</div>
|
||
|
|
<div class="cardright">
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: "Auditing",
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
};
|
||
|
|
},
|
||
|
|
created() {
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.card {
|
||
|
|
width: 100%;
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-evenly;
|
||
|
|
padding: 20px 0;
|
||
|
|
height: calc(100vh - 84px);
|
||
|
|
background-color: #F1F3F5;
|
||
|
|
|
||
|
|
.cardleft {
|
||
|
|
width: 35%;
|
||
|
|
background-color: #fff;
|
||
|
|
overflow: scroll;
|
||
|
|
padding: 20px;
|
||
|
|
|
||
|
|
.headsculpture {
|
||
|
|
width: 50px;
|
||
|
|
height: 50px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.cardright {
|
||
|
|
overflow: scroll;
|
||
|
|
background-color: #fff;
|
||
|
|
width: 62%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|