You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
690 B
30 lines
690 B
5 months ago
|
<template>
|
||
|
<div class="container">
|
||
|
<div class="containertop">
|
||
|
<div class="topleft">
|
||
|
<img src="" alt="">
|
||
|
<span>基本信息</span>
|
||
|
</div>
|
||
|
<div class="topright">
|
||
|
<el-button type="primary" icon="el-icon-search" size="medium" plain style="border: none;"> 导入</el-button>
|
||
|
<el-button type="primary" icon="el-icon-search" size="medium"> 导出</el-button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div>123</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
width: 100%;
|
||
|
;
|
||
|
gap: 2rem;
|
||
|
}
|
||
|
</style>
|