Files
city-store-transfer/components/ShowShopList/ShowShopList.vue
2023-11-04 11:49:11 +08:00

49 lines
806 B
Vue

<template>
<view>
<ShowShopListItem
v-for="item in shopInfoList"
:shopInfo="item"
></ShowShopListItem>
</view>
</template>
<script>
export default {
name:"ShowShopList",
data() {
return {
};
},
props: {
shopInfoList: {
type: Array,
default() {
return [
{
imageUrl: 'https://alifei01.cfp.cn/creative/vcg/800/new/VCG41175510742.jpg',
title: '琴行铺面转让',
promotionNum: 23,
price: 5000,
date: '2023-11-02'
},
{
imageUrl: 'https://alifei01.cfp.cn/creative/vcg/800/new/VCG41175510742.jpg',
title: '琴行铺面转让',
promotionNum: 28,
price: 8000,
date: '2023-11-02'
}
]
}
}
},
computed: {
}
}
</script>
<style lang="scss">
</style>