postdischarge-ui/src/views/manage/Auditing/index.vue

53 lines
1007 B
Vue
Raw Normal View History

2024-04-10 16:29:16 +08:00
<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>