40 lines
669 B
Vue
40 lines
669 B
Vue
<!--
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: kBank
|
|
* @Date: 2022-11-21 15:11:22
|
|
-->
|
|
<template>
|
|
<view class="content">
|
|
<special-area-wrapper />
|
|
|
|
<cl-tabbar :current="2"></cl-tabbar>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import clTabbar from '@/components/cl-tabbar.vue'
|
|
import SpecialAreaWrapper from '@/components/area-product-list/special-area-wrapper.vue'
|
|
export default {
|
|
components: {
|
|
'cl-tabbar': clTabbar,
|
|
'special-area-wrapper': SpecialAreaWrapper,
|
|
},
|
|
|
|
data() {
|
|
return {}
|
|
},
|
|
onLoad() {},
|
|
|
|
methods: {},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.content {
|
|
background: #f2f2f2;
|
|
// padding: 0 20rpx;
|
|
min-height: 94vh;
|
|
}
|
|
</style>
|