45 lines
643 B
Vue
45 lines
643 B
Vue
<template>
|
|
<view class="marginLR10">
|
|
<view class="head-img">
|
|
<u-image
|
|
:src="headimg"
|
|
width=100%
|
|
height=200rpx
|
|
radius="10px"
|
|
></u-image>
|
|
</view>
|
|
<view>
|
|
<SearchShopList :show-style="2"></SearchShopList>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
headimg: "https://alifei01.cfp.cn/creative/vcg/800/new/VCG41175510742.jpg",
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #f8f8f8;
|
|
}
|
|
.marginLR10 {
|
|
margin: 0 10px;
|
|
}
|
|
.head-img {
|
|
margin-top: 10rpx;
|
|
width: 100%;
|
|
height: 200rpx;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
</style>
|