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.
43 lines
696 B
43 lines
696 B
3 weeks ago
|
<template>
|
||
|
<view :class="['container', extend_class]">
|
||
|
<image class="background" src="@/static/components/swiper/puppy_chat/background.png"></image>
|
||
|
<image class="button" @click="go_go_puppy_chat" src="@/static/components/swiper/puppy_chat/button.png"></image>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
export default {
|
||
|
name: "puppy_chat",
|
||
|
data() {
|
||
|
return {};
|
||
|
|
||
|
},
|
||
|
methods:{
|
||
|
go_go_puppy_chat(){
|
||
|
uni.navigateTo({
|
||
|
url: '/pages/puppy_chat/puppy_chat'
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.background{
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
|
||
|
}
|
||
|
.button{
|
||
|
position: absolute;
|
||
|
height: 20%;
|
||
|
width: 36%;
|
||
|
left: 7%;
|
||
|
top: 67%;
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
</style>
|