future 1 year ago
parent
commit
9824b8eab5

+ 2 - 2
xs-app/pages/bookshelf/bookshelf-bookList.vue

@@ -4,8 +4,8 @@
 			<view class='top__info' v-if="!is_edit">
 				<view class="top__info__item" v-for="(item,index) in top_button_list" :key="index"
 				@click="clickButtonStatus(item.status)">
-					<image class="top__info__item__image" v-if="cur_button_status==item.status" src="../../static/imgs/public/img_selected.png"></image>
-					<image class="top__info__item__image" v-else src="../../static/imgs/public/img_unselected.png"></image>
+					<image class="top__info__item__image" v-if="cur_button_status==item.status" src="../../static/imgs/public/img_status_bg_2.png"></image>
+					<image class="top__info__item__image" v-else src="../../static/imgs/public/img_status_bg_1.png"></image>
 					<view class="top__info__item__name">
 						{{item.name}}
 					</view>

+ 2 - 2
xs-app/pages/bookshelf/bookshelf-readHistory.vue

@@ -4,8 +4,8 @@
 			<view class='top__info' v-if="!is_edit">
 				<view class="top__info__item" v-for="(item,index) in top_button_list" :key="index"
 				@click="clickButtonStatus(item.status)">
-					<image class="top__info__item__image" v-if="cur_button_status==item.status" src="../../static/imgs/public/img_selected.png"></image>
-					<image class="top__info__item__image" v-else src="../../static/imgs/public/img_unselected.png"></image>
+					<image class="top__info__item__image" v-if="cur_button_status==item.status" src="../../static/imgs/public/img_status_bg_2.png"></image>
+					<image class="top__info__item__image" v-else src="../../static/imgs/public/img_status_bg_1.png"></image>
 					<view class="top__info__item__name">
 						{{item.name}}
 					</view>

+ 14 - 3
xs-app/pages/bookstore/template/template-book-V-3.vue

@@ -21,8 +21,11 @@
 							{{item.author_name}}  著 | {{util.convertUnit(item.book_read_num)}}人读过
 						</view>
 						<view class="book-content__box__book-info__info1__status">
-							<image class="image" v-if="item.book_is_action==1"  src="../../../static/imgs/public/img_wanjie.png" mode="aspectFit"></image>
-							<image class="image" v-else src="../../../static/imgs/public/img_lianzai.png" mode="aspectFit"></image>
+							<image class="image" v-if="item.book_is_action==1"  src="../../../static/imgs/public/img_status_bg_2.png" mode="aspectFit"></image>
+							<image class="image" v-else src="../../../static/imgs/public/img_status_bg_3.png" mode="aspectFit"></image>
+							<view class="book-content__box__book-info__info1__status__name">
+								{{item.book_is_action==1?"完结":"连载"}}
+							</view>
 						</view>
 					</view>
 					<view class="book-content__box__book-info__brief">
@@ -156,11 +159,19 @@
 							flex-shrink: 0; //设置flex元素所有比例.默认是1,为0的时候不进行缩放
 							width: 162rpx;
 							height: 48rpx;
-							// background-color: green;
+							position: relative;
+							display: flex;
+							justify-content: center;
+							align-items: center;
 							.image {
 								width: 100%;
 								height: 100%;
 							}
+							&__name{
+								position: absolute;
+								font-size: 14px;
+								color: #ffffff;
+							}
 						}
 						
 					}

+ 3 - 3
xs-app/pages/bookstore/template/template-book-list.vue

@@ -107,11 +107,11 @@
 				}
 				&__book-brief{
 					text-align: left;
-					font-size: 13px;
+					font-size: 14px;
 					color: #6F6F6F;
 					margin: 0px 20rpx;
-					margin-bottom: 20rpx;
-					// background-color: blue;
+					margin-bottom: 15rpx;
+					height: 70rpx;
 					display: -webkit-box;
 					-webkit-line-clamp: 2;
 					-webkit-box-orient: vertical;

BIN
xs-app/static/imgs/.DS_Store


BIN
xs-app/static/imgs/public/img_lianzai.png


BIN
xs-app/static/imgs/public/img_selected.png


BIN
xs-app/static/imgs/public/img_status_bg_1.png


BIN
xs-app/static/imgs/public/img_status_bg_2.png


BIN
xs-app/static/imgs/public/img_status_bg_3.png


BIN
xs-app/static/imgs/public/img_unselected.png


BIN
xs-app/static/imgs/public/img_wanjie.png