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.
32 lines
401 B
32 lines
401 B
1 year ago
|
<template>
|
||
|
<view class="book-page btPadding">
|
||
|
<view class="page-box"></view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.book-page{
|
||
|
height: 100vh;
|
||
|
width: 100%;
|
||
|
background: #F6F6F6;
|
||
|
overflow-y: auto;
|
||
|
box-sizing: border-box;
|
||
|
.page-box{
|
||
|
width: calc(100% - 34rpx);
|
||
|
}
|
||
|
}
|
||
|
</style>
|