64 lines
1.3 KiB
Vue
64 lines
1.3 KiB
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
|
||
|
|
import CommodityList from "./commodity-list.vue";
|
||
|
|
import MerchantInfo from "./merchant-info.vue";
|
||
|
|
//const props = defineProps({
|
||
|
|
//})
|
||
|
|
//const emit = defineEmits([
|
||
|
|
//])
|
||
|
|
let data = reactive({
|
||
|
|
})
|
||
|
|
const addShopping = (item) => {}
|
||
|
|
onMounted(()=>{
|
||
|
|
})
|
||
|
|
onUnmounted(()=>{
|
||
|
|
})
|
||
|
|
defineExpose({})
|
||
|
|
const {} = toRefs(data);
|
||
|
|
</script>
|
||
|
|
<template>
|
||
|
|
<div class="brand">
|
||
|
|
<div class="header-img">
|
||
|
|
<img src="@/assets/images/brand/brandBg.png" alt="">
|
||
|
|
</div>
|
||
|
|
<div class="content">
|
||
|
|
<div class="merchant-info">
|
||
|
|
<MerchantInfo></MerchantInfo>
|
||
|
|
</div>
|
||
|
|
<div class="commodity-list">
|
||
|
|
<CommodityList @addShopping="addShopping"></CommodityList>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<Footer></Footer>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<style lang="less" scoped>
|
||
|
|
.brand{
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
position: relative;
|
||
|
|
overflow-y: auto;
|
||
|
|
.header-img{
|
||
|
|
width: 100%;
|
||
|
|
>img{
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.content{
|
||
|
|
display: flex;
|
||
|
|
height: auto;
|
||
|
|
align-items: flex-start;
|
||
|
|
.merchant-info{
|
||
|
|
width: 40rem;
|
||
|
|
padding-left: 12.7rem;
|
||
|
|
padding-right: 2.7rem;
|
||
|
|
}
|
||
|
|
.commodity-list{
|
||
|
|
flex: 1;
|
||
|
|
border-left: 0.5px solid #585858;
|
||
|
|
border-right: 0.5px solid #585858;
|
||
|
|
margin-right: 9rem;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|