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.

49 lines
825 B

<template>
<view :class="['container', extend_class]">
<image class="background" src="@/static/components/swiper/read/background.png"></image>
<image class="button" @click="go_to_choice_book" src="@/static/components/swiper/read/button.png"></image>
</view>
</template>
<script>
export default {
name: "read_center",
data() {
return {
extend_class : ''
};
},
methods:{
go_to_choice_book() {
uni.navigateTo({
url: '/pages/homepages/homes/knowledge_dictionary/knowledge_dictionary'
})
uni.showToast({
title: '跳转成功',
icon: 'success',
})
}
}
}
</script>
<style lang="scss">
.background{
position: absolute;
width: 100%;
}
.button{
position: absolute;
height: 20%;
width: 36%;
left: 7%;
top: 67%;
}
</style>