29 lines
319 B
Vue
29 lines
319 B
Vue
|
<template>
|
||
|
<view>
|
||
|
<!-- 状态栏 -->
|
||
|
<status-nav :titleVal="'商城'" :statusTitle="true"></status-nav>
|
||
|
|
||
|
|
||
|
|
||
|
<!-- 底部tab -->
|
||
|
<foot-tab :newcurrent='3'></foot-tab>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|