parent
677d3e42c6
commit
7c8e8867c5
@ -0,0 +1,29 @@
|
|||||||
|
<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>
|
@ -0,0 +1,25 @@
|
|||||||
|
<template>
|
||||||
|
<Basic></Basic>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Basic from '../../components/ProjectDetails/Basic.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
Basic,
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped></style>
|
@ -1,3 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div>123</div>
|
|
||||||
</template>
|
|
Loading…
Reference in new issue