java-mall-app/pagesub/index/feed.vue

42 lines
952 B
Vue

<template>
<view class="my_feed">
<image
lazy-load
mode="widthFix"
class="my_feedimg"
src="https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/default/20250703/fbc317620e5d41e09589d4b81703372a.jpg"
/>
<MyTabbar current="3" :cartNum="cartNum" :storeId="shopInfo.store_id" :categoryId="shopInfo.category_id"></MyTabbar>
</view>
</template>
<script>
import { mapMutations, mapState } from "vuex";
import MyTabbar from "./components/tabbar.vue";
export default {
components: {
MyTabbar
},
computed: mapState([
"Config",
"StateCode",
"notice",
"plantformInfo",
"shopInfo",
"userInfo",
"hasLogin",
"cartNum",
]),
}
</script>
<style lang="scss" scoped>
.my_feed{
padding-bottom: 65px;
}
.my_feedimg{
width: 100%;
height: auto;
max-width: 100%
}
</style>