| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- <template>
- <view class="search-result-page">
- <image class="top-bg-image" src="/pages-sell/static/top-bg.png" mode="widthFix"></image>
- <Navbar title="书嗨" :titleSize="36" :title-color="navbarTitleColor" :back-icon-color="navbarIconColor"
- :background="navbarBackground"></Navbar>
- <!-- Custom Header -->
- <view class="search-bar-wrapper">
- <u-search style="width: 100%;" v-model="keyword" placeholder="书名/作者/ISBN" :show-action="true"
- action-text="反馈" :action-style="{ color: '#fff' }" bg-color="#fff" shape="round" :clearabled="true"
- search-icon="/pages-sell/static/search-icon.png" @custom="toFeedback" @search="onSearch"></u-search>
- </view>
- <!-- Banner -->
- <view class="banner-section">
- <image src="/pages-sell/static/top-banner.png" class="top-banner" mode="widthFix"></image>
- </view>
- <!-- Content Area -->
- <view class="content-area">
- <!-- Everyone is watching -->
- <view class="section-block" v-if="hotBook && hotBook.isbn">
- <text class="section-title">大家都在看</text>
- <HotRecommendItem :item="hotBook" @add-cart="addToCart"></HotRecommendItem>
- </view>
- <!-- Filter Bar -->
- <view class="filter-bar">
- <view class="filter-item" :class="{ active: sort === 1 }" @click="handleSort(1)">
- <text>综合</text>
- <view class="sort-icons">
- <u-icon name="arrow-down-fill" :color="sort === 1 ? '#38C148' : '#cccccc'" size="14"></u-icon>
- </view>
- </view>
- <view class="filter-item" :class="{ active: sort === 4 || sort === 5 }" @click="handleSort('sales')">
- <text>销量</text>
- <view class="sort-icons">
- <u-icon name="arrow-up-fill" :color="sort === 4 ? '#38C148' : '#cccccc'" size="14"></u-icon>
- <u-icon name="arrow-down-fill" :color="sort === 5 ? '#38C148' : '#cccccc'" size="14"></u-icon>
- </view>
- </view>
- <view class="filter-item" :class="{ active: sort === 2 || sort === 3 }" @click="handleSort('price')">
- <text>价格</text>
- <view class="sort-icons">
- <u-icon name="arrow-up-fill" :color="sort === 2 ? '#38C148' : '#cccccc'" size="14"></u-icon>
- <u-icon name="arrow-down-fill" :color="sort === 3 ? '#38C148' : '#cccccc'" size="14"></u-icon>
- </view>
- </view>
- <view class="filter-item" @click="showFilter = true">
- <text>筛选</text>
- <image src="/pages-sell/static/search-result/icon-filter.png" class="icon-filter"></image>
- </view>
- </view>
- <!-- Book List -->
- <view class="book-list">
- <RecommendItem v-for="(item, index) in bookList" :key="index" :item="item" @add-cart="addToCart"
- :show-desc="false">
- </RecommendItem>
- <u-loadmore :status="loadStatus" margin-top="30" margin-bottom="30"></u-loadmore>
- </view>
- </view>
- <!-- Filter Popup -->
- <u-popup v-model="showFilter" mode="bottom">
- <view class="filter-popup">
- <view class="filter-content">
- <view class="filter-title">价格区间</view>
- <view class="price-inputs">
- <u-input v-model="tempMinPrice" type="number" placeholder="最低价" border="surround"></u-input>
- <view class="divider">-</view>
- <u-input v-model="tempMaxPrice" type="number" placeholder="最高价" border="surround"></u-input>
- </view>
- </view>
- <view class="filter-footer">
- <view class="btn reset" @click="resetFilter">重置</view>
- <view class="btn confirm" @click="confirmFilter">确定</view>
- </view>
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- import RecommendItem from '../components/recommend-item/index.vue';
- import HotRecommendItem from '../components/hot-recommend-item/index.vue';
- import Navbar from '@/components/navbar/navbar.vue';
- export default {
- components: {
- RecommendItem,
- HotRecommendItem,
- Navbar,
- },
- data() {
- return {
- keyword: '',
- pageNum: 1,
- pageSize: 10,
- hotBook: {},
- bookList: [],
- loadStatus: 'loadmore',
- navbarBackground: 'transparent',
- navbarTitleColor: '#ffffff',
- navbarIconColor: '#ffffff',
- sort: 1, // 1-综合 2-价格升序 3-价格降序 4-销量升序 5-销量降序
- showFilter: false,
- tempMinPrice: '',
- tempMaxPrice: '',
- minPrice: '',
- maxPrice: ''
- }
- },
- onPullDownRefresh() {
- this.pageNum = 1;
- this.loadStatus = 'loading';
- this.loadData();
- },
- onReachBottom() {
- if (this.loadStatus === 'nomore') return;
- this.pageNum++;
- this.loadStatus = 'loading';
- this.loadData();
- },
- onPageScroll(e) {
- if (e.scrollTop > 50) {
- this.navbarBackground = '#ffffff';
- this.navbarTitleColor = '#000000';
- this.navbarIconColor = '#000000';
- } else {
- this.navbarBackground = 'transparent';
- this.navbarTitleColor = '#ffffff';
- this.navbarIconColor = '#ffffff';
- }
- },
- onLoad(options) {
- this.keyword = options.keyword ? decodeURIComponent(options.keyword) : '';
- this.loadData();
- },
- methods: {
- loadData() {
- const params = {
- keyword: this.keyword,
- pageNum: this.pageNum,
- pageSize: this.pageSize,
- sort: this.sort
- };
- if (this.minPrice) params.minPrice = this.minPrice;
- if (this.maxPrice) params.maxPrice = this.maxPrice;
- this.$u.api.getSearchKeywordAjax(params).then(res => {
- uni.stopPullDownRefresh();
- const rows = res.data.rows || [];
- if (this.pageNum === 1) {
- this.bookList = rows;
- } else {
- this.bookList = [...this.bookList, ...rows];
- }
- if (rows.length < this.pageSize) {
- this.loadStatus = 'nomore';
- } else {
- this.loadStatus = 'loadmore';
- }
- }).catch(() => {
- uni.stopPullDownRefresh();
- this.loadStatus = 'loadmore';
- });
- if (this.pageNum === 1) {
- this.$u.api.getSearchRecommendAjax().then(res => {
- if (res.code == 200) {
- res.data.discountDesc = res.data.productPrice ? (res.data.productPrice / res.data.price) + '折' : '';
- res.data.discountPrice = res.data.productPrice ? res.data.price - res.data.productPrice : '';
- this.hotBook = res.data;
- }
- });
- }
- },
- handleSort(type) {
- if (type === 1) {
- if (this.sort === 1) return;
- this.sort = 1;
- } else if (type === 'price') {
- if (this.sort === 2) {
- this.sort = 3;
- } else {
- this.sort = 2;
- }
- } else if (type === 'sales') {
- if (this.sort === 5) {
- this.sort = 4;
- } else {
- this.sort = 5;
- }
- }
- this.pageNum = 1;
- this.loadStatus = 'loading';
- this.loadData();
- },
- resetFilter() {
- this.tempMinPrice = '';
- this.tempMaxPrice = '';
- },
- confirmFilter() {
- this.minPrice = this.tempMinPrice;
- this.maxPrice = this.tempMaxPrice;
- this.showFilter = false;
- this.pageNum = 1;
- this.loadStatus = 'loading';
- this.loadData();
- },
- goBack() {
- uni.navigateBack();
- },
- toFeedback() {
- uni.navigateTo({
- url: '/pages-sell/pages/feedback'
- });
- },
- onSearch(val) {
- console.log('Search:', val);
- this.keyword = val;
- this.pageNum = 1;
- this.loadData();
- },
- addToCart(data) {
- // data now contains { product, quality, quantity } from the popup
- console.log('Added to cart:', data);
- uni.showToast({
- title: '已加入购物车',
- icon: 'success'
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .search-result-page {
- min-height: 100vh;
- background-color: #F6F6F6;
- font-family: 'Source Han Sans SC', sans-serif;
- position: relative;
- }
- /* 顶部大背景图 */
- .top-bg-image {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 0;
- display: block;
- }
- .search-bar-wrapper {
- position: relative;
- z-index: 2;
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- height: 88rpx;
- width: 100%;
- }
- .banner-section {
- position: relative;
- width: 100%;
- z-index: 1;
- padding: 10rpx 30rpx;
- .top-banner {
- width: 100%;
- display: block;
- }
- }
- .content-area {
- position: relative;
- z-index: 2;
- padding: 30rpx 30rpx;
- border-radius: 30rpx 30rpx 0 0;
- min-height: 500rpx;
- .section-block {
- margin-bottom: 30rpx;
- background-color: #fff;
- padding: 30rpx 24rpx;
- border-radius: 20rpx;
- .section-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 20rpx;
- display: block;
- }
- }
- }
- .filter-bar {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20rpx;
- .filter-item {
- display: flex;
- align-items: center;
- font-size: 28rpx;
- color: #666;
- &.active {
- color: #333;
- font-weight: bold;
- .triangle-icon {
- border-top-color: #333;
- }
- }
- text {
- margin-right: 6rpx;
- }
- .triangle-icon {
- width: 0;
- height: 0;
- border-left: 8rpx solid transparent;
- border-right: 8rpx solid transparent;
- border-top: 10rpx solid #666;
- }
- .sort-icons {
- display: flex;
- flex-direction: column;
- margin-left: 4rpx;
- justify-content: center;
- gap: 4rpx;
-
- u-icon {
- margin: -2rpx 0;
- }
- }
- .icon-filter {
- width: 24rpx;
- height: 24rpx;
- margin-left: 4rpx;
- }
- }
- }
- .book-list {
- background: #fff;
- border-radius: 20rpx;
- padding: 0 24rpx;
- padding-bottom: 40rpx;
- }
- .filter-popup {
- background-color: #fff;
- height: 100%;
- display: flex;
- flex-direction: column;
- .filter-content {
- flex: 1;
- padding: 30rpx;
- .filter-title {
- font-size: 30rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 30rpx;
- }
- .price-inputs {
- display: flex;
- align-items: center;
- justify-content: space-between;
- u-input {
- flex: 1;
- }
- .divider {
- margin: 0 20rpx;
- color: #999;
- }
- }
- }
- .filter-footer {
- display: flex;
- height: 100rpx;
- .btn {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 32rpx;
- &.reset {
- background-color: #fff;
- color: #666;
- border-top: 1rpx solid #eee;
- }
- &.confirm {
- background-color: #38C148;
- color: #fff;
- }
- }
- }
- }
- </style>
|