This commit is contained in:
2020-06-11 16:12:04 +08:00
parent 16d586a50b
commit 55238876a8
6 changed files with 299 additions and 2 deletions

View File

@@ -41,20 +41,27 @@
<view class="hr" style="margin-top:40rpx"></view>
<recommend></recommend>
<view class="hr" style="margin-top:40rpx"></view>
<group></group>
<image class="lingquan"></image>
<youhq></youhq>
<view class="hr" style="margin-top:40rpx"></view>
</view>
</template>
<script>
import shopitem from "@/components/shop/shop-item/index"
import recommend from "@/components/shop/recommend/index"
import seckill from "@/components/shop/seckill/index"
import group from "@/components/shop/group/index"
import youhq from "@/components/shop/youhq/index"
export default {
name:"shop",
components:{
shopitem,
recommend,
seckill
seckill,
group,
youhq
},
data(){
return {
@@ -142,5 +149,12 @@ export default {
height: 20rpx;
background-color: #ececec;
}
.lingquan{
width: 750rpx;
height: 177rpx;
margin-left: -33rpx;
margin-top: 29rpx;
background-color: #ececec;
}
}
</style>