|
@@ -1,15 +1,15 @@
|
|
|
<template>
|
|
|
<view class="bookList_content" :style="{width:window_width}">
|
|
|
<view class="top">
|
|
|
- <view class='top__info'>
|
|
|
+ <view class='top__info' v-if="!is_edit">
|
|
|
<view class="" style="margin-left: 20rpx;" @click="clickButtonStatus(config.book_action_status.QUAN_BU)">
|
|
|
- {{is_edit?'':'全部'}}
|
|
|
+ 全部
|
|
|
</view>
|
|
|
<view class="" style="margin-left: 20rpx;" @click="clickButtonStatus(config.book_action_status.LIAN_ZAI)">
|
|
|
- {{is_edit?'':'连载'}}
|
|
|
+ 连载
|
|
|
</view>
|
|
|
<view class="" style="margin-left: 20rpx;" @click="clickButtonStatus(config.book_action_status.WAN_JIE)">
|
|
|
- {{is_edit?'':'完结'}}
|
|
|
+ 完结
|
|
|
</view>
|
|
|
</view>
|
|
|
<view :class="cur_button_status==config.book_action_status.QUAN_BU?'top__edit':'top__edit-none'" @click="clickEdit">
|
|
@@ -162,7 +162,6 @@
|
|
|
.top{
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
|
- justify-content: space-between;
|
|
|
align-items: center;
|
|
|
height: 80rpx;
|
|
|
background-color: red;
|
|
@@ -172,7 +171,9 @@
|
|
|
// background-color: green;
|
|
|
}
|
|
|
&__edit{
|
|
|
+ position: absolute;
|
|
|
display: flex;
|
|
|
+ right: 20rpx;
|
|
|
width: 120rpx;
|
|
|
height: 100%;
|
|
|
justify-content: center;
|