This commit is contained in:
X1627315083@163.com
2026-04-09 13:36:03 +08:00
parent 4ac3f7e054
commit 3a7ba636f2
6 changed files with 240 additions and 8 deletions

View File

@@ -1,6 +1,7 @@
<script setup lang="ts">
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
import sellerHeader from "../../seller-header.vue"
import sellerContent from "./content.vue"
//const props = defineProps({
//})
@@ -31,21 +32,20 @@ const {} = toRefs(data);
</template>
</seller-header>
<div class="content">
123122222s
<sellerContent></sellerContent>
</div>
</div>
</template>
<style scoped lang="less">
.myListings-seller {
width: 100%;
height: 100%;
overflow: hidden;
flex: 1;
// overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
.button {
width: 16rem;
line-height: 6rem;
height: 6rem;
border-radius: 4rem;
display: flex;
border: 1.5px solid #000000;
@@ -73,7 +73,7 @@ const {} = toRefs(data);
> .content {
margin-top: 2rem;
flex: 1;
overflow: hidden;
display: flex;
}
}
</style>