You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
965 B

<template>
<view class="work-container">
<view class=""><FengXianGuanKong></FengXianGuanKong></view>
<!-- tabbar页面 -->
<Tabbar :value="'项目'"></Tabbar>
</view>
</template>
<script>
import Tabbar from '@/components/tabbar/tabbar.vue';
import FengXianGuanKong from '@/pages/indexpage/FengXianGuanKong/FengXianGuanKong.vue';
export default {
name: 'work',
components: { Tabbar, FengXianGuanKong },
data() {
return {
current: 0,
swiperDotIndex: 0,
data: [
{
image: '/static/images/banner/banner01.jpg'
},
{
image: '/static/images/banner/banner02.jpg'
},
{
image: '/static/images/banner/banner03.jpg'
}
]
};
},
methods: {
clickBannerItem(item) {
console.info(item);
},
changeSwiper(e) {
this.current = e.detail.current;
},
changeGrid(e) {
this.$modal.showToast('模块建设中~');
}
},
onLoad() {
uni.hideTabBar();
}
};
</script>
<style lang="scss" scoped></style>