商城首页

This commit is contained in:
2020-06-11 09:34:23 +08:00
parent 92deb50c1a
commit 72a29af788
6 changed files with 417 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<template>
<view class="shop-item">
<image></image>
<text>名字哦</text>
</view>
</template>
<script>
export default {
name:"shopItem"
}
</script>
<style lang="scss" scoped>
.shop-item{
display: flex;
flex-direction: column;
align-items: center;
>image{
width: 80rpx;
height: 80rpx;
border-radius: 50%;
}
>text{
font-size: 24rpx;
color: #333;
margin-top: 14rpx;
}
}
</style>