罗世杰:临时提交

This commit is contained in:
LuoShijie
2023-11-10 21:19:38 +08:00
parent 5c391aae6e
commit f97c558fa0
12 changed files with 242 additions and 68 deletions

View File

@@ -1,6 +1,16 @@
<template>
<view>
<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>
@@ -8,7 +18,7 @@
export default {
data() {
return {
headimg: "https://alifei01.cfp.cn/creative/vcg/800/new/VCG41175510742.jpg",
}
},
methods: {
@@ -17,6 +27,18 @@
}
</script>
<style>
<style lang="scss">
page {
background-color: #f8f8f8;
}
.marginLR10 {
margin: 0 10px;
}
.head-img {
margin-top: 10rpx;
width: 100%;
height: 200rpx;
border-radius: 10px;
}
</style>