hengmei-two/pages/tabbar/shop/shop.vue

34 lines
507 B
Vue
Raw Normal View History

2021-08-19 06:40:59 +00:00
<template>
<view>
<!-- 状态栏 -->
<status-nav :titleVal="'商城'" :statusTitle="true"></status-nav>
<!-- 底部tab -->
2021-08-19 09:27:37 +00:00
<foot-tab :titleList="titleList" :imgList="imgList" :newcurrent='3'></foot-tab>
2021-08-19 06:40:59 +00:00
</view>
</template>
<script>
export default {
data() {
return {
2021-08-19 09:27:37 +00:00
titleList:[],
imgList:[]
2021-08-19 06:40:59 +00:00
}
},
2021-08-19 09:27:37 +00:00
onLoad() {
this.titleList = uni.getStorageSync('footTitle')
this.imgList = uni.getStorageSync('footimg')
},
2021-08-19 06:40:59 +00:00
methods: {
}
}
</script>
<style>
</style>