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.

44 lines
724 B

<template>
<view :class="['container', extend_class]">
<image class="background" src="@/static/components/swiper/community/background.png"></image>
<image class="button" @click="go_to_community" src="@/static/components/swiper/community/button.png"></image>
</view>
</template>
<script>
export default {
name: "community",
data() {
return {
extend_class : ''
};
},
methods: {
go_to_community() {
uni.navigateTo({
url: '/pages/homepages/community/community/community'
})
}
}
}
</script>
<style lang="scss">
.background{
position: absolute;
width: 100%;
}
.button{
position: absolute;
height: 20%;
width: 36%;
left: 7%;
top: 67%;
}
</style>