123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691 |
- <template>
- <view>
- <scroll-view class="container" style="height: 100%">
- <view class="search-header">
- <view class="input-box">
- <van-icon name="search" />
- <input
- name="input"
- class="keywrod"
- :focus="true"
- :value="keyword"
- confirm-type="search"
- @input="inputChange"
- @focus="inputFocus"
- @confirm="onKeywordConfirm"
- :placeholder="defaultKeyword.keyword"
- />
- <van-icon class="del" v-if="keyword" @tap.native="clearKeyword" name="cross" />
- </view>
- <view class="right" @tap="closeSearch">取消</view>
- </view>
- <view class="no-search" v-if="!searchStatus">
- <view class="search-keywords search-history" v-if="!keyword && historyKeyword.length">
- <view class="h">
- <text class="title">历史记录</text>
- <van-icon @tap.native="clearHistory" name="delete" class="icon" />
- </view>
- <view class="b">
- <view class="item" @tap="onKeywordTap" :data-keyword="item.keyword" hover-class="navigator-hover" v-for="(item, index) in historyKeyword" :key="index">
- {{ item.keyword }}
- </view>
- </view>
- </view>
- <view class="search-keywords search-hot" v-if="!keyword && hotKeyword.length">
- <view class="h">
- <text class="title">热门搜索</text>
- </view>
- <view class="b">
- <view
- :class="'item ' + (item.is_hot === 1 ? 'active' : '')"
- hover-class="navigator-hover"
- @tap="onKeywordTap"
- :data-keyword="item.keyword"
- v-for="(item, index) in hotKeyword"
- :key="index"
- >
- {{ item.keyword }}
- </view>
- </view>
- </view>
- <view class="shelper-list" v-if="keyword">
- <view class="item" hover-class="navigator-hover" @tap="onKeywordTap" :data-keyword="item" v-for="(item, index) in helpKeyword" :key="index">{{ item }}</view>
- </view>
- </view>
- <view class="search-result" v-if="searchStatus && goodsList.length">
- <view class="sort">
- <view class="sort-box">
- <view :class="'item ' + (currentSortType == 'default' ? 'active' : '')" @tap="openSortFilter" id="defaultSort">
- <text class="txt">综合</text>
- </view>
- <view :class="'item ' + (currentSortType == 'price' ? 'active' : '')" @tap="openSortFilter" id="priceSort">
- <text class="txt">价格</text>
- <van-icon name="arrow-up" v-if="currentSortType == 'price' && currentSortOrder == 'asc'" />
- <van-icon name="arrow-down" v-else-if="currentSortType == 'price' && currentSortOrder == 'desc'" />
- </view>
- <view :class="'item ' + (currentSortType == 'category' ? 'active' : '')" @tap="openSortFilter" id="categoryFilter">
- <text class="txt">分类</text>
- </view>
- </view>
- <view class="sort-box-category" v-if="categoryFilter">
- <view
- :class="'item ' + (item.checked ? 'active' : '')"
- :data-category-index="index"
- @tap="selectCategory"
- v-for="(item, index) in filterCategory"
- :key="index"
- >
- {{ item.name }}
- </view>
- </view>
- </view>
- <view class="cate-item">
- <view class="b">
- <navigator
- :class="'item ' + ((iindex + 1) % 2 == 0 ? 'item-b' : '')"
- :url="'/pages/goods/goods?id=' + iitem.id"
- v-for="(iitem, iindex) in goodsList"
- :key="iindex"
- >
- <image class="img" :src="iitem.picUrl" background-size="cover"></image>
- <text class="name">{{ iitem.name }}</text>
- <!-- <view class="price">
- <view class="retailPrice">¥{{iitem.retailPrice}}</view>
- <view class="memberPrice">¥{{iitem.memberPrice}}</view>
- <view class="member-price-tag">会员价</view>
- </view> -->
- <!-- <view class="price"><text>¥{{iitem.retailPrice}}</text>
- <text class="counterPrice sub-color">¥{{iitem.counterPrice}}</text>
- </view> -->
- </navigator>
- </view>
- </view>
- </view>
- <view class="search-result-empty" v-if="!goodsList.length && searchStatus">
- <text class="text">您寻找的商品还未上架</text>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- var util = require('../../../utils/util.js');
- var api = require('../../../config/api.js');
- var app = getApp();
- export default {
- data() {
- return {
- keywrod: '',
- searchStatus: false,
- goodsList: [],
- helpKeyword: [],
- historyKeyword: [],
- categoryFilter: false,
- currentSort: 'name',
- currentSortType: 'default',
- currentSortOrder: 'desc',
- filterCategory: [],
- defaultKeyword: {
- keyword: ''
- },
- hotKeyword: [],
- page: 1,
- limit: 20,
- categoryId: 0,
- addressInfo: {},
- keyword: '',
- iindex: 0,
- iitem: {
- id: '',
- picUrl: '',
- name: ''
- }
- };
- },
- onLoad: function () {
- var addressInfo = uni.getStorageSync('addressInfo');
- if (addressInfo) {
- this.setData({
- addressInfo: addressInfo
- });
- }
- this.getSearchKeyword();
- },
- methods: {
- //事件处理函数
- closeSearch: function () {
- uni.navigateBack();
- },
- clearKeyword: function () {
- this.setData({
- keyword: '',
- searchStatus: false
- });
- },
- getSearchKeyword() {
- let that = this;
- util.request(api.SearchIndex).then(function (res) {
- if (res.errno === 0) {
- that.setData({
- historyKeyword: res.data.historyKeywordList,
- defaultKeyword: res.data.defaultKeyword,
- hotKeyword: res.data.hotKeywordList
- });
- }
- });
- },
- inputChange: function (e) {
- this.setData({
- keyword: e.detail.value,
- searchStatus: false
- });
- if (e.detail.value) {
- this.getHelpKeyword();
- }
- },
- getHelpKeyword: function () {
- let that = this;
- util.request(api.SearchHelper, {
- keyword: that.keyword
- }).then(function (res) {
- if (res.errno === 0) {
- that.setData({
- helpKeyword: res.data
- });
- }
- });
- },
- inputFocus: function () {
- this.setData({
- searchStatus: false,
- goodsList: []
- });
- if (this.keyword) {
- this.getHelpKeyword();
- }
- },
- clearHistory: function () {
- this.setData({
- historyKeyword: []
- });
- util.request(api.SearchClearHistory, {}, 'POST').then(function (res) {
- console.log('清除成功');
- });
- },
- getGoodsList: function () {
- let that = this;
- util.request(api.GoodsList, {
- keyword: that.keyword,
- page: that.page,
- limit: that.limit,
- sort: that.currentSort,
- order: that.currentSortOrder,
- categoryId: that.categoryId,
- city: that.addressInfo.city,
- shopId: that.addressInfo.shopId
- }).then(function (res) {
- if (res.errno === 0) {
- that.setData({
- searchStatus: true,
- categoryFilter: false,
- goodsList: res.data.list,
- filterCategory: res.data.filterCategoryList
- });
- }
- //重新获取关键词
- that.getSearchKeyword();
- });
- },
- onKeywordTap: function (event) {
- this.getSearchResult(event.target.dataset.keyword);
- },
- getSearchResult(keyword) {
- if (keyword === '') {
- keyword = this.defaultKeyword.keyword;
- }
- this.setData({
- keyword: keyword,
- page: 1,
- categoryId: 0,
- goodsList: []
- });
- this.getGoodsList();
- },
- openSortFilter: function (event) {
- let currentId = event.currentTarget.id;
- switch (currentId) {
- case 'categoryFilter':
- this.setData({
- categoryFilter: !this.categoryFilter,
- currentSortType: 'category',
- currentSort: 'add_time',
- currentSortOrder: 'desc'
- });
- break;
- case 'priceSort':
- let tmpSortOrder = 'asc';
- if (this.currentSortOrder == 'asc') {
- tmpSortOrder = 'desc';
- }
- this.setData({
- currentSortType: 'price',
- currentSort: 'retail_price',
- currentSortOrder: tmpSortOrder,
- categoryFilter: false
- });
- this.getGoodsList();
- break;
- default:
- //综合排序
- this.setData({
- currentSortType: 'default',
- currentSort: 'name',
- currentSortOrder: 'desc',
- categoryFilter: false,
- categoryId: 0
- });
- this.getGoodsList();
- }
- },
- selectCategory: function (event) {
- let currentIndex = event.target.dataset.categoryIndex;
- let filterCategory = this.filterCategory;
- let currentCategory = null;
- for (let key in filterCategory) {
- if (key == currentIndex) {
- filterCategory[key].selected = true;
- currentCategory = filterCategory[key];
- } else {
- filterCategory[key].selected = false;
- }
- }
- this.setData({
- filterCategory: filterCategory,
- categoryFilter: false,
- categoryId: currentCategory.id,
- page: 1,
- goodsList: []
- });
- this.getGoodsList();
- },
- onKeywordConfirm(event) {
- this.getSearchResult(event.detail.value);
- }
- }
- };
- </script>
- <style>
- page {
- min-height: 100%;
- background-color: #f4f4f4;
- }
- .container {
- min-height: 100%;
- background-color: #f4f4f4;
- }
- .search-header {
- position: fixed;
- top: 0;
- width: 750rpx;
- height: 91rpx;
- display: flex;
- background: #fff;
- border-bottom: 1px solid rgba(0, 0, 0, 0.15);
- padding: 0 31.25rpx;
- font-size: 29rpx;
- color: #333;
- }
- .search-header .van-icon-search {
- line-height: 59rpx;
- }
- .search-header .input-box {
- position: relative;
- margin-top: 16rpx;
- float: left;
- width: 0;
- flex: 1;
- height: 59rpx;
- line-height: 59rpx;
- padding: 0 20rpx;
- background: #f4f4f4;
- }
- .search-header .icon {
- position: absolute;
- top: 14rpx;
- left: 20rpx;
- width: 31rpx;
- height: 31rpx;
- }
- .search-header .del {
- position: absolute;
- top: 3rpx;
- right: 10rpx;
- width: 53rpx;
- height: 53rpx;
- z-index: 10;
- }
- .search-header .keywrod {
- position: absolute;
- top: 0;
- left: 40rpx;
- width: 506rpx;
- height: 59rpx;
- padding-left: 30rpx;
- }
- .search-header .right {
- margin-top: 24rpx;
- margin-left: 31rpx;
- margin-right: 6rpx;
- width: 58rpx;
- height: 43rpx;
- line-height: 43rpx;
- float: right;
- }
- .no-search {
- height: auto;
- overflow: hidden;
- margin-top: 91rpx;
- }
- .search-keywords {
- background: #fff;
- width: 750rpx;
- height: auto;
- overflow: hidden;
- margin-bottom: 20rpx;
- }
- .search-keywords .h {
- padding: 0 31.25rpx;
- height: 93rpx;
- line-height: 93rpx;
- width: 100%;
- color: #999;
- font-size: 29rpx;
- }
- .search-keywords .title {
- display: block;
- width: 120rpx;
- float: left;
- }
- .search-keywords .icon {
- margin-top: 19rpx;
- float: right;
- display: block;
- margin-left: 511rpx;
- height: 55rpx;
- width: 55rpx;
- }
- .search-keywords .b {
- width: 750rpx;
- height: auto;
- overflow: hidden;
- padding-left: 31.25rpx;
- }
- .search-keywords .item {
- display: inline-block;
- width: auto;
- height: 48rpx;
- line-height: 48rpx;
- padding: 0 15rpx;
- border: 1px solid #999;
- margin: 0 31.25rpx 31.25rpx 0;
- font-size: 24rpx;
- color: #333;
- }
- .search-keywords .item.active {
- color: #b4282d;
- border: 1px solid #b4282d;
- }
- .shelper-list {
- width: 750rpx;
- height: auto;
- overflow: hidden;
- background: #fff;
- padding: 0 31.25rpx;
- }
- .shelper-list .item {
- height: 93rpx;
- width: 687.5rpx;
- line-height: 93rpx;
- font-size: 24rpx;
- color: #333;
- border-bottom: 1px solid #f4f4f4;
- }
- .sort {
- position: fixed;
- top: 91rpx;
- background: #fff;
- width: 100%;
- height: 78rpx;
- }
- .sort-box {
- background: #fff;
- width: 100%;
- height: 78rpx;
- overflow: hidden;
- padding: 0 30rpx;
- display: flex;
- border-bottom: 1px solid #d9d9d9;
- }
- .sort-box .item {
- height: 78rpx;
- line-height: 78rpx;
- text-align: center;
- flex: 1;
- color: #333;
- font-size: 30rpx;
- }
- .sort-box .item .txt {
- color: #333;
- }
- .sort-box .item.active .txt {
- color: #b4282d;
- }
- .sort-box .item .van-icon {
- margin-left: 6rpx;
- }
- .sort-box-category {
- background: #fff;
- width: 100%;
- height: auto;
- overflow: hidden;
- padding: 40rpx 40rpx 0 0;
- border-bottom: 1px solid #d9d9d9;
- }
- .sort-box-category .item {
- height: 54rpx;
- line-height: 54rpx;
- text-align: center;
- float: left;
- padding: 0 16rpx;
- margin: 0 0 40rpx 40rpx;
- border: 1px solid #666;
- color: #333;
- font-size: 24rpx;
- }
- .sort-box-category .item.active {
- color: #b4282d;
- border: 1px solid #b4282d;
- }
- .cate-item {
- margin-top: 175rpx;
- height: auto;
- overflow: hidden;
- }
- .cate-item .h {
- height: 145rpx;
- width: 750rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .cate-item .h .name {
- display: block;
- height: 35rpx;
- margin-bottom: 18rpx;
- font-size: 30rpx;
- color: #333;
- }
- .cate-item .h .desc {
- display: block;
- height: 24rpx;
- font-size: 24rpx;
- color: #999;
- }
- .cate-item .b {
- width: 750rpx;
- padding: 0 6.25rpx;
- height: auto;
- overflow: hidden;
- }
- .cate-item .list-filter {
- height: 80rpx;
- width: 100%;
- background: #fff;
- margin-bottom: 6.25rpx;
- }
- .cate-item .b .item {
- float: left;
- background: #fff;
- width: 365rpx;
- margin-bottom: 6.25rpx;
- padding-bottom: 33.333rpx;
- height: auto;
- overflow: hidden;
- text-align: center;
- }
- .cate-item .b .item-b {
- margin-left: 6.25rpx;
- }
- .cate-item .item .img {
- width: 302rpx;
- height: 302rpx;
- }
- .cate-item .item .name {
- display: block;
- width: 365.625rpx;
- height: 35rpx;
- margin: 11.5rpx 0 22rpx 0;
- text-align: center;
- overflow: hidden;
- padding: 0 20rpx;
- font-size: 30rpx;
- color: #333;
- }
- .cate-item .item .price {
- height: 40rpx;
- line-height: 40rpx;
- text-align: center;
- font-size: 30rpx;
- color: #b4282d;
- }
- .search-result-empty {
- width: 100%;
- height: 100%;
- padding-top: 600rpx;
- }
- .search-result-empty .text {
- display: block;
- width: 100%;
- height: 40rpx;
- font-size: 28rpx;
- text-align: center;
- color: #999;
- }
- .cate-item .item .price {
- height: 40rpx;
- justify-content: center;
- display: flex;
- margin-top: 20rpx;
- align-items: flex-end;
- }
- .counterPrice {
- text-decoration: line-through;
- font-size: 24rpx;
- margin: 0 0 0 20rpx;
- }
- .retailPrice {
- font-size: 30rpx;
- height: 30rpx;
- line-height: 30rpx;
- }
- .memberPrice {
- font-size: 22rpx;
- color: #dd483e;
- margin: 0 10rpx 0 20rpx;
- }
- .member-price-tag {
- width: 88rpx;
- height: 26rpx;
- line-height: 26rpx;
- background: url('https://jzmall.lifejingzhi.com/file/jzmall/weixin/member/member-price-bg.png') no-repeat center center;
- background-size: 100% 100%;
- color: #5e3a11;
- font-size: 16rpx;
- padding: 0 8rpx 0 0;
- text-align: right;
- margin: 0 0 6rpx 0;
- }
- </style>
|