41 lines
		
	
	
		
			695 B
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			695 B
		
	
	
	
		
			Vue
		
	
	
	
<!--
 | 
						|
 * @Descripttion:
 | 
						|
 * @version:
 | 
						|
 * @Author: kBank
 | 
						|
 * @Date: 2022-11-21 15:11:22
 | 
						|
-->
 | 
						|
<template>
 | 
						|
  <view class="content">
 | 
						|
    <special-area-wrapper />
 | 
						|
 | 
						|
    <cl-tabbar :current="1"></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;
 | 
						|
  padding-bottom: 100rpx;
 | 
						|
}
 | 
						|
</style>
 |