web-base-h5/pages/market/activeArea/index.vue

53 lines
779 B
Vue
Raw Normal View History

2025-03-23 09:29:40 +08:00
<template>
<view class="content">
2025-04-08 13:44:54 +08:00
<activeArea></activeArea>
2025-03-23 09:29:40 +08:00
</view>
</template>
<script>
import activeArea from '@/pages/market/activeArea/activeArea.vue'
export default{
components: {
2025-04-08 13:44:54 +08:00
activeArea,
2025-03-23 09:29:40 +08:00
},
data(){
2025-04-08 13:44:54 +08:00
return {
2025-03-23 09:29:40 +08:00
}
},
methods:{
2025-04-08 13:44:54 +08:00
2025-03-23 09:29:40 +08:00
}
}
</script>
<style lang="scss" scoped>
.tab {
display: flex;
align-items: center;
justify-content: space-around;
background: #F9F9F9;
flex-wrap: nowrap;
overflow-x: auto;
.tab_i {
text-align: center;
font-family: Source Han Sans CN;
font-weight: bold;
color: #333333;
white-space: nowrap;
margin-right: 20rpx;
padding-bottom: 15rpx;
font-size: 28rpx;
}
.heng {
border-bottom: 6rpx solid #FB3024;
color: #FB3024;
color: #333333;
}
}
</style>