martial-arts/pages/tabbar/shop/shop.vue

34 lines
478 B
Vue
Raw Normal View History

2022-08-01 09:03:10 +00:00
<template>
<view class="pad-x160">
<status-container :ifReturn="false" titlet="商城列表">
<view slot="content">
</view>
</status-container>
<!-- 底部tab -->
<foot-tab current="1"></foot-tab>
</view>
</template>
<script>
// 底部组件
import footTab from '@/components/foot-tabs/foot-tab.vue';
export default {
components:{
'foot-tab' :footTab,
},
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>