123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568 |
- <template>
- <view>
- <!-- 排序 -->
- <view class="nav-sort bg-white oh pr">
- <view class="nav-sort-content">
- <block v-for="(item, index) in search_nav_sort_list" :key="index">
- <view class="item tc fl cp" :data-index="index" @tap="nav_sort_event">
- <text class="cr-base va-m">{{item.name}}</text>
- <image v-if="(item.icon || null) != null" class="icon va-m" :src="common_static_url + 'sort-' + item.icon + '-icon.png'" mode="aspectFill"></image>
- </view>
- </block>
- </view>
- <image class="screening-submit pa cp" :src="common_static_url+'search-submit-icon.png'" mode="aspectFill" @tap="popup_form_event_show"></image>
- <image class="show-type-submit pa cp" :src="common_static_url+'show-'+(data_show_type_value == 0 ? 'grid' : 'list')+'-icon.png'" mode="aspectFill" @tap="data_show_type_event"></image>
- </view>
- <!-- 列表 -->
- <scroll-view :scroll-y="true" class="scroll-box scroll-box-ece-nav" @scrolltolower="scroll_lower" lower-threshold="60">
- <view v-if="data_list.length > 0" class="padding-horizontal-main padding-top-main oh">
- <component-goods-list :propData="{style_type: data_show_type_value, goods_list: data_list}" :propLabel="plugins_label_data" :propCurrencySymbol="currency_symbol"></component-goods-list>
- </view>
- <view v-else>
- <!-- 提示信息 -->
- <component-no-data :propStatus="data_list_loding_status"></component-no-data>
- </view>
- <!-- 结尾 -->
- <component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
- </scroll-view>
- <!-- 筛选条件 popup -->
- <component-popup :propShow="is_show_popup_form" propPosition="left" @onclose="popup_form_event_close">
- <form @submit="form_submit_event" class="popup-form oh">
- <view class="search-map padding-main bg-base">
- <view class="padding-main border-radius-main bg-white">
- <view class="map-item map-base br-b">
- <text>筛选出</text>
- <text class="cr-main"> {{data_total}} </text>
- <text>条数据</text>
- <text class="fr cr-red cp" @tap="map_remove_event">清除</text>
- </view>
- <!-- 搜索关键字 -->
- <input type="text" confirm-type="search" placeholder="其实搜索很简单^_^ !" name="wd" :value="(post_data.wd || '')" class="map-keywords wh-auto round bg-base margin-top-lg" placeholder-class="cr-grey">
- </view>
- <!-- 品牌 -->
- <view v-if="((search_map_list.brand_list || null) != null && search_map_list.brand_list.length > 0) || ((search_map_info.brand || null) != null)" class="map-item padding-horizontal-main padding-top-main border-radius-main bg-white spacing-mt">
- <view class="map-nav br-b pr">
- <text>品牌</text>
- <text class="arrow-bottom pa cr-grey cp" v-if="search_map_list.brand_list.length > 3" @tap="more_event" data-value="brand_list">更多</text>
- </view>
- <view v-if="(search_map_info.brand || null) != null && (params.brand || null) != null" class="map-content brand-info oh margin-top-lg">
- <image v-if="(search_map_info.brand.logo || null) != null" :src="search_map_info.brand.logo" mode="aspectFit" class="fl"></image>
- <view v-else class="info-logo-empty tc fl">{{search_map_info.brand.name}}</view>
- <view class="info-right fr">
- <view v-if="(search_map_info.brand.logo || null) != null" class="info-name">{{search_map_info.brand.name}}</view>
- <view v-if="(search_map_info.brand.describe || null) != null" class="info-desc multi-text cr-grey">{{search_map_info.brand.describe}}</view>
- </view>
- </view>
- <view v-else class="map-content map-images-text-item map-brand-container oh margin-top-lg" :style="'height:' + map_fields_list.brand_list.height + ';'">
- <block v-for="(item, index) in search_map_list.brand_list" :key="index">
- <view :class="'item fl cr-base radius cp single-text tc ' + (item.active == 1 ? 'cr-main br-main' : '')" @tap="map_item_event" :data-index="index" data-field="brand_list">
- <image v-if="(item.logo || null) != null" :src="item.logo" mode="aspectFit"></image>
- <text v-else>{{item.name}}</text>
- </view>
- </block>
- </view>
- </view>
- <!-- 分类 -->
- <view v-if="(search_map_list.category_list || null) != null && search_map_list.category_list.length > 0" class="map-item padding-horizontal-main padding-top-main border-radius-main bg-white spacing-mt">
- <view class="map-nav pr br-b">
- <text>分类</text>
- <text class="arrow-bottom pa cr-grey cp" v-if="search_map_list.category_list.length > 3" @tap="more_event" data-value="category_list">更多</text>
- </view>
- <view class="map-content map-text-item map-category-container oh margin-top-lg" :style="'height:' + map_fields_list.category_list.height + ';'">
- <block v-for="(item, index) in search_map_list.category_list" :key="index">
- <view :class="'item fl cr-base radius cp ' + (item.active == 1 ? 'cr-main br-main' : '')" @tap="map_item_event" :data-index="index" data-field="category_list">{{item.name}}</view>
- </block>
- </view>
- </view>
- <!-- 价格 -->
- <view v-if="(search_map_list.screening_price_list || null) != null && search_map_list.screening_price_list.length > 0" class="map-item padding-horizontal-main padding-top-main border-radius-main bg-white spacing-mt">
- <view class="map-nav br-b pr">
- <text>价格</text>
- <text class="arrow-bottom pa cr-grey cp" v-if="search_map_list.screening_price_list.length > 3" @tap="more_event" data-value="screening_price_list">更多</text>
- </view>
- <view class="map-content map-text-item screening-price-container oh margin-top-lg" :style="'height:' + map_fields_list.screening_price_list.height + ';'">
- <block v-for="(item, index) in search_map_list.screening_price_list" :key="index">
- <view :class="'item fl cr-base radius cp ' + (item.active == 1 ? 'cr-main br-main' : '')" @tap="map_item_event" :data-index="index" data-field="screening_price_list">{{item.name}}</view>
- </block>
- </view>
- </view>
- <!-- 属性 -->
- <view v-if="(search_map_list.goods_params_list || null) != null && search_map_list.goods_params_list.length > 0" class="map-item padding-horizontal-main padding-top-main border-radius-main bg-white spacing-mt">
- <view class="map-nav br-b pr">
- <text>属性</text>
- <text class="arrow-bottom pa cr-grey cp" v-if="search_map_list.goods_params_list.length > 3" @tap="more_event" data-value="goods_params_list">更多</text>
- </view>
- <view class="map-content map-text-item goods-params-container oh margin-top-lg" :style="'height:' + map_fields_list.goods_params_list.height + ';'">
- <block v-for="(item, index) in search_map_list.goods_params_list" :key="index">
- <view :class="'item fl cr-base radius cp ' + (item.active == 1 ? 'cr-main br-main' : '')" @tap="map_item_event" :data-index="index" data-field="goods_params_list">{{item.value}}</view>
- </block>
- </view>
- </view>
- <!-- 规格 -->
- <view v-if="(search_map_list.goods_spec_list || null) != null && search_map_list.goods_spec_list.length > 0" class="map-item padding-horizontal-main padding-top-main border-radius-main bg-white spacing-mt">
- <view class="map-nav br-b pr">
- <text>规格</text>
- <text class="arrow-bottom pa cr-grey cp" v-if="search_map_list.goods_spec_list.length > 3" @tap="more_event" data-value="goods_spec_list">更多</text>
- </view>
- <view class="map-content map-text-item goods-spec-container oh margin-top-lg" :style="'height:' + map_fields_list.goods_spec_list.height + ';'">
- <block v-for="(item, index) in search_map_list.goods_spec_list" :key="index">
- <view :class="'item fl cr-base radius cp ' + (item.active == 1 ? 'cr-main br-main' : '')" @tap="map_item_event" :data-index="index" data-field="goods_spec_list">{{item.value}}</view>
- </block>
- </view>
- </view>
- <view class="search-submit padding-main pa">
- <button form-type="submit" class="bg-main cr-white text-size wh-auto round" :disabled="popup_form_loading_status" hover-class="none">确认</button>
- </view>
- </view>
- </form>
- </component-popup>
- <!-- 快捷导航 -->
- <component-quick-nav></component-quick-nav>
- </view>
- </template>
- <script>
- const app = getApp();
- import componentQuickNav from "../../components/quick-nav/quick-nav";
- import componentPopup from "../../components/popup/popup";
- import componentNoData from "../../components/no-data/no-data";
- import componentBottomLine from "../../components/bottom-line/bottom-line";
- import componentGoodsList from "../../components/goods-list/goods-list";
- var common_static_url = app.globalData.get_static_url('common');
- export default {
- data() {
- return {
- common_static_url: common_static_url,
- data_list_loding_status: 1,
- data_bottom_line_status: false,
- data_list: [],
- data_total: 0,
- data_page_total: 0,
- data_page: 1,
- params: null,
- post_data: {},
- is_show_popup_form: false,
- popup_form_loading_status: false,
- // 自定义分享信息
- share_info: {},
- // 排序导航
- search_nav_sort_index: 0,
- search_nav_sort_list: [
- { name: "综合", field: "default", sort: "asc", "icon": null },
- { name: "销量", field: "sales_count", sort: "asc", "icon": "default" },
- { name: "热度", field: "access_count", sort: "asc", "icon": "default" },
- { name: "价格", field: "min_price", sort: "asc", "icon": "default" },
- { name: "最新", field: "id", sort: "asc", "icon": "default" }
- ],
- // 数据展示样式(0图文、1九方格)
- data_show_type_value: 1,
- // 基础配置
- currency_symbol: app.globalData.data.currency_symbol,
- // 搜素条件
- search_map_list: {
- brand_list: [],
- category_list: [],
- screening_price_list: [],
- goods_params_list: [],
- goods_spec_list: []
- },
- search_map_info: [],
- map_fields_list: {
- brand_list: {height: "100rpx", default: "100rpx", form_key: "brand_ids"},
- category_list: {height: "82rpx", default: "82rpx", form_key: "category_ids"},
- screening_price_list: {height: "82rpx", default: "82rpx", form_key: "screening_price_values"},
- goods_params_list: {height: "82rpx", default: "82rpx", form_key: "goods_params_values"},
- goods_spec_list: {height: "82rpx", default: "82rpx", form_key: "goods_spec_values"}
- },
- // 标签插件
- plugins_label_data: null
- };
- },
- components: {
- componentQuickNav,
- componentPopup,
- componentNoData,
- componentBottomLine,
- componentGoodsList
- },
- props: {},
- onLoad(params) {
- this.setData({
- params: params,
- post_data: {
- wd: params.keywords || ''
- }
- });
- // 数据加载
- this.init();
- },
- onShow() {
- // 初始化配置
- this.init_config();
- },
- // 下拉刷新
- onPullDownRefresh() {
- this.setData({
- data_page: 1
- });
- this.get_data_list(1);
- },
- methods: {
- // 初始化配置
- init_config(status) {
- if ((status || false) == true) {
- this.setData({
- currency_symbol: app.globalData.get_config('currency_symbol')
- });
- } else {
- app.globalData.is_config(this, 'init_config');
- }
- },
- // 获取数据
- init() {
- // 获取数据
- this.get_data();
- },
- // 搜索
- search_event() {
- this.setData({
- data_list: [],
- data_page: 1
- });
- this.get_data_list(1);
- },
-
- // 初始化数据
- get_data() {
- uni.showLoading({
- title: '加载中...',
- mask: true
- });
- var post_data = this.request_map_handle();
- uni.request({
- url: app.globalData.get_request_url("index", "search"),
- method: 'POST',
- data: post_data,
- dataType: 'json',
- success: res => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- if (res.data.code == 0) {
- var data = res.data.data;
- this.setData({
- search_map_info: data.search_map_info || [],
- search_map_list: {
- brand_list: data.brand_list || [],
- category_list: data.category_list || [],
- screening_price_list: data.screening_price_list || [],
- goods_params_list: data.goods_params_list || [],
- goods_spec_list: data.goods_spec_list || []
- },
- plugins_label_data: (data.plugins_label_data || null) == null || (data.plugins_label_data.base || null) == null || (data.plugins_label_data.data || null) == null || data.plugins_label_data.data.length <= 0 ? null : data.plugins_label_data
- });
-
- // 获取数据列表
- this.get_data_list(1);
- } else {
- this.setData({
- data_list_loding_status: 0
- });
- app.globalData.showToast(res.data.msg);
- }
- // 基础自定义分享
- var category_id = this.params.category_id || 0;
- var brand = this.params.brand || 0;
- var keywords = this.params.keywords || '';
- this.setData({
- share_info: {
- path: '/pages/goods-search/goods-search',
- query: 'category_id=' + category_id + '&brand=' + brand + '&keywords=' + keywords
- }
- });
- // 分享菜单处理
- app.globalData.page_share_handle(this.share_info);
- },
- fail: () => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- this.setData({
- data_list_loding_status: 2
- });
- app.globalData.showToast('服务器请求出错');
- }
- });
- },
- // 获取数据列表
- get_data_list(is_mandatory) {
- // 分页是否还有数据
- if ((is_mandatory || 0) == 0) {
- if (this.data_bottom_line_status == true) {
- uni.stopPullDownRefresh();
- return false;
- }
- }
-
- // 获取数据
- uni.showLoading({
- title: '加载中...',
- mask: true
- });
- var post_data = this.request_map_handle();
- uni.request({
- url: app.globalData.get_request_url("datalist", "search"),
- method: 'POST',
- data: post_data,
- dataType: 'json',
- success: res => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- if (res.data.code == 0) {
- var data = res.data.data;
- if (data.data.length > 0) {
- if (this.data_page <= 1) {
- var temp_data_list = data.data;
- } else {
- var temp_data_list = this.data_list || [];
- var temp_data = data.data;
- for (var i in temp_data) {
- temp_data_list.push(temp_data[i]);
- }
- }
- this.setData({
- data_list: temp_data_list,
- data_total: data.total,
- data_page_total: data.page_total,
- data_list_loding_status: 3,
- data_page: this.data_page + 1
- });
- // 是否还有数据
- this.setData({
- data_bottom_line_status: (this.data_page > 1 && this.data_page > this.data_page_total)
- });
- } else {
- this.setData({
- data_list_loding_status: 0,
- data_total: 0
- });
- if (this.data_page <= 1) {
- this.setData({
- data_list: [],
- data_bottom_line_status: false
- });
- }
- }
- } else {
- this.setData({
- data_list_loding_status: 0
- });
- app.globalData.showToast(res.data.msg);
- }
- },
- fail: () => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- this.setData({
- data_list_loding_status: 2
- });
- app.globalData.showToast('服务器请求出错');
- }
- });
- },
- // 搜索条件处理
- request_map_handle() {
- var params = this.params;
- var post_data = this.post_data;
- post_data['page'] = this.data_page;
- // 指定分类、品牌
- post_data['category_id'] = params['category_id'] || 0;
- post_data['brand'] = params['brand'] || 0;
- // 搜索条件
- var temp_field = this.map_fields_list;
- var temp_list = this.search_map_list;
- for (var i in temp_field) {
- if (temp_list[i] != null != null && temp_list[i].length > 0) {
- var temp = {};
- var index = 0;
- for (var k in temp_list[i]) {
- if ((temp_list[i][k]['active'] || 0) == 1) {
- switch (i) {
- // 价格
- case 'screening_price_list':
- temp[index] = temp_list[i][k]['min_price'] + '-' + temp_list[i][k]['max_price'];
- break;
- // 属性、规格
- case 'goods_params_list':
- case 'goods_spec_list':
- temp[index] = temp_list[i][k]['value'];
- break;
- // 默认取值id
- default:
- temp[index] = temp_list[i][k]['id'];
- }
- index++;
- }
- }
- post_data[temp_field[i]['form_key']] = app.globalData.get_length(temp) > 0 ? JSON.stringify(temp) : '';
- }
- }
- // 排序
- var temp_index = this.search_nav_sort_index;
- var temp_search_nav_sort = this.search_nav_sort_list;
- post_data['order_by_type'] = temp_search_nav_sort[temp_index]['sort'] == 'desc' ? 'asc' : 'desc';
- post_data['order_by_field'] = temp_search_nav_sort[temp_index]['field'];
- return post_data;
- },
- // 滚动加载
- scroll_lower(e) {
- this.get_data_list();
- },
- // 搜索条件
- form_submit_event(e) {
- this.setData({
- post_data: e.detail.value,
- data_page: 1
- });
- this.popup_form_event_close();
- this.get_data_list(1);
- },
- // 筛选条件关闭
- popup_form_event_close(e) {
- this.setData({
- is_show_popup_form: false
- });
- },
- // 筛选条件开启
- popup_form_event_show(e) {
- this.setData({
- is_show_popup_form: true
- });
- },
- // 排序事件
- nav_sort_event(e) {
- var index = e.currentTarget.dataset.index || 0;
- var temp_search_nav_sort = this.search_nav_sort_list;
- var temp_sort = temp_search_nav_sort[index]['sort'] == 'desc' ? 'asc' : 'desc';
- for (var i in temp_search_nav_sort) {
- if (i != index) {
- if (temp_search_nav_sort[i]['icon'] != null) {
- temp_search_nav_sort[i]['icon'] = 'default';
- }
- temp_search_nav_sort[i]['sort'] = 'desc';
- }
- }
- temp_search_nav_sort[index]['sort'] = temp_sort;
- if (temp_search_nav_sort[index]['icon'] != null) {
- temp_search_nav_sort[index]['icon'] = temp_sort;
- }
- this.setData({
- search_nav_sort_index: index,
- search_nav_sort_list: temp_search_nav_sort,
- data_page: 1
- });
- this.get_data_list(1);
- },
- // 条件-更多数据展示事件
- more_event(e) {
- var value = e.currentTarget.dataset.value || null;
- var temp_more = this.map_fields_list;
- if (value != null && (temp_more[value] || null) != null) {
- temp_more[value]['height'] = temp_more[value]['height'] == 'auto' ? temp_more[value]['default'] : 'auto';
- this.setData({
- map_fields_list: temp_more
- });
- }
- },
- // 条件-选择事件
- map_item_event(e) {
- var index = e.currentTarget.dataset.index;
- var field = e.currentTarget.dataset.field;
- var temp_list = this.search_map_list;
- if ((temp_list[field] || null) != null && (temp_list[field][index] || null) != null) {
- temp_list[field][index]['active'] = (temp_list[field][index]['active'] || 0) == 0 ? 1 : 0;
- this.setData({
- search_map_list: temp_list
- });
- }
- },
- // 条件-清空
- map_remove_event(e) {
- var temp_list = this.search_map_list;
- var temp_post = this.post_data;
- // 关键字
- temp_post['wd'] = '';
- // 品牌、分类、价格、属性、规格
- for (var i in temp_list) {
- if((temp_list[i] || null) != null && temp_list[i].length > 0) {
- for(var k in temp_list[i]) {
- temp_list[i][k]['active'] = 0;
- }
- }
- }
- // 排序导航
- var temp_search_nav_sort = this.search_nav_sort_list;
- for (var i in temp_search_nav_sort) {
- temp_search_nav_sort[i]['sort'] = 'asc';
- temp_search_nav_sort[i]['icon'] = (temp_search_nav_sort[i]['field'] == 'default') ? null : 'default';
- }
- // 关闭弹窗、分页恢复1页、重新获取数据
- this.setData({
- search_map_list: temp_list,
- post_data: temp_post,
- is_show_popup_form: false,
- search_nav_sort_list: temp_search_nav_sort,
- search_nav_sort_index: 0,
- data_page: 1
- });
- this.get_data_list(1);
- },
- // 数据展示类型
- data_show_type_event(e) {
- this.setData({data_show_type_value: this.data_show_type_value == 0 ? 1 : 0});
- }
- }
- };
- </script>
- <style>
- @import './goods-search.css';
- </style>
|