34 lines
478 B
Vue
34 lines
478 B
Vue
|
<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>
|