2021-05-13 11:03:32 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="content">
|
|
|
|
|
<u-navbar :background="navObj" :is-back="false">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<mSearch ref="mSearch" class="mSearch-input-box" @clickLeft="back" :mode="2" :placeholder="defaultKeyword"
|
|
|
|
|
@search="doSearch(false)" @confirm="doSearch(false)" @SwitchType="doSearchSwitch()" v-model="keyword"
|
|
|
|
|
:isFocusVal="!isShowSeachGoods"></mSearch>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</u-navbar>
|
|
|
|
|
|
|
|
|
|
<view class="search-keyword" v-if="!isShowSeachGoods">
|
|
|
|
|
<scroll-view class="keyword-list-box" v-show="isShowKeywordList" scroll-y>
|
|
|
|
|
<block v-for="(row, index) in keywordList" :key="index">
|
|
|
|
|
<view class="keyword-entry" hover-class="keyword-entry-tap">
|
|
|
|
|
<view class="keyword-text" @tap.stop="doSearch(keywordList[index].words)">
|
|
|
|
|
<rich-text :nodes="row.words"></rich-text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</block>
|
|
|
|
|
</scroll-view>
|
|
|
|
|
<div class="keyword-box" v-show="!isShowKeywordList">
|
|
|
|
|
<view class="keyword-block add1">
|
|
|
|
|
<view class="keyword-list-header">
|
|
|
|
|
<view class="u-tips">热门搜索</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="keyword keywordBox">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<view class="wes" v-for="(keyword, index) in hotKeywordList" @tap="doSearch(keyword)" :key="index">
|
|
|
|
|
{{ keyword }}</view>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="keyword-block" v-if="oldKeywordList.length > 0">
|
|
|
|
|
<view class="keyword-list-header">
|
|
|
|
|
<view class="u-tips">搜索历史</view>
|
|
|
|
|
</view>
|
|
|
|
|
<div class="oldKeyList">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<div class="oldKeyItem" v-if="keyword" v-for="(keyword, index) in oldKeywordList" :key="index"
|
|
|
|
|
@click="doSearch(keyword)">
|
2021-05-13 11:03:32 +08:00
|
|
|
|
<span>{{ keyword }} </span>
|
|
|
|
|
</div>
|
|
|
|
|
<div @click="showMore" v-if=" oldKeywordIndex > loadIndex" class="oldKeyItem">展示更多</div>
|
|
|
|
|
</div>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<div class="clear mp-iphonex-bottom" @tap="oldDelete">清空搜索历史</div>
|
|
|
|
|
</div>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- 搜索 -->
|
|
|
|
|
<view class="goods-content" v-if="isShowSeachGoods">
|
|
|
|
|
<view class="navbar">
|
|
|
|
|
<view class="nav-item" :class="{ current: filterIndex === 0 }" @click="tabClick(0)">综合排序</view>
|
|
|
|
|
<view class="nav-item" :class="{ current: filterIndex === 3 }" @click="tabClick(3, 'buyCount')">
|
|
|
|
|
<text>销量</text>
|
|
|
|
|
<view class="p-box">
|
|
|
|
|
<view class="index-nav-arrow">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<image class="img" src="/static/index/arrow-up-1.png"
|
|
|
|
|
v-if="params.sort === 'buyCount' && params.order === 'asc'" mode="aspectFit"></image>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
<image class="img" src="/static/index/arrow-up.png" v-else mode="aspectFit"></image>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="index-nav-arrow">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<image class="img" src="/static/index/arrow-down.png"
|
|
|
|
|
v-if="params.sort === 'buyCount' && params.order === 'desc'" mode="aspectFit"></image>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
<image class="img" src="/static/index/arrow-down-1.png" v-else mode="aspectFit"></image>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="nav-item" :class="{ current: filterIndex === 4 }" @click="tabClick(4, 'price')">
|
|
|
|
|
<text>价格</text>
|
|
|
|
|
<view class="p-box">
|
|
|
|
|
<view class="index-nav-arrow">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<image class="img" src="/static/index/arrow-up-1.png"
|
|
|
|
|
v-if="params.sort === 'price' && params.order === 'asc'" mode="aspectFit"></image>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
<image class="img" src="/static/index/arrow-up.png" v-else mode="aspectFit"></image>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="index-nav-arrow">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<image class="img" src="/static/index/arrow-down.png"
|
|
|
|
|
v-if="params.sort === 'price' && params.order === 'desc'" mode="aspectFit"></image>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
<image class="img" src="/static/index/arrow-down-1.png" v-else mode="aspectFit"></image>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="nav-item" @click="sortGoods">筛选</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- 一行一个商品展示 -->
|
|
|
|
|
<div v-if="isSWitch">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<scroll-view :style="{ height: goodsHeight }" enableBackToTop="true" lower-threshold="250"
|
|
|
|
|
@scrolltolower="loadmore()" scroll-with-animation scroll-y class="scoll-page">
|
2021-10-13 18:01:09 +08:00
|
|
|
|
<div class="goods-class">
|
|
|
|
|
<div v-for="(item, index) in goodsList" :key="index" class="goods-row">
|
|
|
|
|
<div class="flex goods-col">
|
|
|
|
|
<div class="goods-img" @click="navigateToDetailPage(item)">
|
|
|
|
|
<u-image width="230rpx" height="230rpx" :src="item.content.thumbnail">
|
|
|
|
|
<u-loading slot="loading"></u-loading>
|
|
|
|
|
</u-image>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="goods-detail">
|
|
|
|
|
<div class="title clamp3" @click="navigateToDetailPage(item)">{{ item.content.goodsName }}</div>
|
|
|
|
|
<view class="price-box" @click="navigateToDetailPage(item)">
|
|
|
|
|
<div class="price" v-if="item.content.price!=undefined">
|
|
|
|
|
¥<span>{{ formatPrice(item.content.price )[0] }} </span>.{{
|
2021-09-02 16:08:35 +08:00
|
|
|
|
formatPrice(item.content.price )[1]
|
2021-05-13 11:03:32 +08:00
|
|
|
|
}}
|
2021-10-13 18:01:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
</view>
|
|
|
|
|
<div class="promotion" @click="navigateToDetailPage(item)">
|
|
|
|
|
<div v-for="(promotionItem,promotionIndex) in getPromotion(item)" :key="promotionIndex">
|
|
|
|
|
<span v-if="promotionItem.indexOf('COUPON') != -1">劵</span>
|
|
|
|
|
<span v-if="promotionItem.indexOf('FULL_DISCOUNT') != -1">满减</span>
|
|
|
|
|
<span v-if="promotionItem.indexOf('SECKILL') != -1">秒杀</span>
|
|
|
|
|
</div>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</div>
|
2021-10-13 18:01:09 +08:00
|
|
|
|
<div style="overflow: hidden" @click="navigateToDetailPage(item)" class="count-config">
|
|
|
|
|
<span style="float: left; font-size: 22rpx">已售 {{ item.content.buyCount || '0' }}</span>
|
|
|
|
|
<span style="float: right; font-size: 22rpx">{{ item.content.commentNum || '0' }}条评论</span>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</div>
|
2021-10-13 18:01:09 +08:00
|
|
|
|
<div style="overflow: hidden" @click="navigateToStoreDetailPage(item)" class="count-config">
|
|
|
|
|
<div class="text-hidden">
|
|
|
|
|
<u-tag style="margin-right: 10rpx" size="mini" mode="dark" v-if="item.selfOperated" text="自营"
|
|
|
|
|
type="error" />
|
|
|
|
|
<span class="line1-store-name">{{ item.content.storeName }}</span>
|
|
|
|
|
<span class="to-store">进店<u-icon size="24" name="arrow-right" color="#666"></u-icon></span>
|
|
|
|
|
</div>
|
|
|
|
|
<span>
|
|
|
|
|
<u-icon name="arrow-right" color="#c5c5c5"></u-icon>
|
|
|
|
|
</span>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-10-13 18:01:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</div>
|
|
|
|
|
<uni-load-more :status="loadingType" @loadmore="loadmore()"></uni-load-more>
|
|
|
|
|
</scroll-view>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="empty" v-if="goodsList == [] || goodsList == '' || goodsList == null">
|
|
|
|
|
<view>
|
|
|
|
|
<image style="width: 320rpx; height: 240rpx" src="/static/nodata.png">
|
|
|
|
|
|
|
|
|
|
</image>
|
|
|
|
|
</view>
|
|
|
|
|
<view>
|
|
|
|
|
<p>没有找到相关的商品信息</p>
|
|
|
|
|
<p>请换一个关键词试试吧</p>
|
|
|
|
|
</view>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 一行两个商品展示 -->
|
|
|
|
|
<div v-if="
|
|
|
|
|
!isSWitch &&
|
|
|
|
|
!(goodsList == [] || goodsList == '' || goodsList == null)
|
|
|
|
|
">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<scroll-view :style="{ height: goodsHeight }" scroll-anchoring enableBackToTop="true"
|
|
|
|
|
@scrolltolower="loadmore()" scroll-with-animation scroll-y lower-threshold="250" class="scoll-page">
|
2021-05-13 11:03:32 +08:00
|
|
|
|
<view class="goods-list">
|
2021-10-13 18:01:09 +08:00
|
|
|
|
<view v-for="(item, index) in goodsList" :key="index" class="goods-item">
|
|
|
|
|
<view class="image-wrapper" @click="navigateToDetailPage(item)">
|
2021-09-02 16:08:35 +08:00
|
|
|
|
<image :src="item.content.thumbnail" mode="aspectFill"></image>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="goods-detail">
|
2021-10-13 18:01:09 +08:00
|
|
|
|
<div class="title clamp" @click="navigateToDetailPage(item)">{{ item.content.goodsName }}</div>
|
|
|
|
|
<view class="price-box" @click="navigateToDetailPage(item)">
|
2021-09-02 16:08:35 +08:00
|
|
|
|
<div class="price" v-if="item.content.price!=undefined">
|
|
|
|
|
¥<span>{{ formatPrice(item.content.price )[0] }} </span>.{{
|
|
|
|
|
formatPrice(item.content.price )[1]
|
2021-05-13 11:03:32 +08:00
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
</view>
|
|
|
|
|
|
2021-10-13 18:01:09 +08:00
|
|
|
|
<div class="promotion" @click="navigateToDetailPage(item)">
|
2021-05-13 11:03:32 +08:00
|
|
|
|
<div v-for="(promotionItem,promotionIndex) in getPromotion(item)" :key="promotionIndex">
|
|
|
|
|
<span v-if="promotionItem.indexOf('COUPON') != -1">劵</span>
|
|
|
|
|
<span v-if="promotionItem.indexOf('FULL_DISCOUNT') != -1">满减</span>
|
|
|
|
|
<span v-if="promotionItem.indexOf('SECKILL') != -1">秒杀</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-10-13 18:01:09 +08:00
|
|
|
|
<div class="count-config" @click="navigateToDetailPage(item)">
|
2021-09-18 09:59:47 +08:00
|
|
|
|
<span>已售 {{ item.content.buyCount || "0" }}</span>
|
|
|
|
|
<span>{{ item.content.commentNum || "0" }}条评论</span>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</div>
|
2021-10-13 18:01:09 +08:00
|
|
|
|
<div class="store-seller-name" @click="navigateToStoreDetailPage(item)">
|
|
|
|
|
<div class="text-hidden">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<u-tag style="margin-right: 10rpx" size="mini" mode="dark" v-if="item.selfOperated" text="自营"
|
|
|
|
|
type="error" />
|
2021-09-18 09:59:47 +08:00
|
|
|
|
<span>{{ item.content.storeName || "暂无" }}</span>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</div>
|
|
|
|
|
<span>
|
|
|
|
|
<u-icon name="arrow-right"></u-icon>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<uni-load-more :status="loadingType"></uni-load-more>
|
|
|
|
|
</scroll-view>
|
|
|
|
|
</div>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<u-popup border-radius="20" mode="right" width="90%" v-model="sortPopup">
|
|
|
|
|
<view class="status_bar"></view>
|
|
|
|
|
<view class="sort-box ">
|
|
|
|
|
<view class="sort-list">
|
|
|
|
|
<view class="sort-item">
|
|
|
|
|
<view class="sort-title"> 品牌 </view>
|
|
|
|
|
<view class="flex" v-if="sortData.brands">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<view class="sort-brand-item" :key="brandsIndex" v-for="(brand, brandsIndex) in sortData.brands"
|
|
|
|
|
@click="handleSort(brand, brandsIndex, 'brand')">
|
2021-05-13 11:03:32 +08:00
|
|
|
|
<view class="sort-radius" :class="{
|
|
|
|
|
'sort-active': brand.__selected,
|
|
|
|
|
}">
|
|
|
|
|
{{ brand.name }}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- <u-empty v-else text="暂无品牌" mode="list"></u-empty> -->
|
|
|
|
|
</view>
|
|
|
|
|
<view class="sort-item">
|
|
|
|
|
<view class="sort-title"> 全部分类 </view>
|
|
|
|
|
<view class="flex" style="flex-wrap: wrap;" v-if="sortData.categories">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<view class="sort-brand-item" :key="categoriesIndex"
|
|
|
|
|
v-for="(categoryId, categoriesIndex) in sortData.categories"
|
|
|
|
|
@click="handleSort(categoryId, categoriesIndex, 'categoryId')">
|
2021-05-13 11:03:32 +08:00
|
|
|
|
<view class="sort-radius" :class="{
|
|
|
|
|
'sort-active': categoryId.__selected,
|
|
|
|
|
}">
|
|
|
|
|
{{ categoryId.name }}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- <u-empty v-else text="暂无分类" mode="list"></u-empty> -->
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="sort-list">
|
|
|
|
|
<view class="sort-item">
|
|
|
|
|
<view class="sort-title"> 价格区间 </view>
|
|
|
|
|
<view style="display:flex; margin-top:20rpx; align-items: center;">
|
|
|
|
|
<view class="sort-brand-item uinput">
|
|
|
|
|
<view class="sort-radius">
|
|
|
|
|
<u-input v-model="minPrice" type="number" placeholder="最低价" input-align="center" />
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view>-</view>
|
|
|
|
|
<view class="sort-brand-item uinput">
|
|
|
|
|
<view class="sort-radius">
|
|
|
|
|
<u-input v-model="maxPrice" type="number" placeholder="最高价" input-align="center" />
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="sort-list" v-if="sortData.paramOptions">
|
|
|
|
|
<view class="sort-item" :key="paramIndex" v-for="(param, paramIndex) in sortData.paramOptions">
|
|
|
|
|
<view class="sort-title"> {{ param.key }} </view>
|
|
|
|
|
<view class="flex" style="flex-warp:warp" v-if="param.values">
|
2021-09-01 17:30:54 +08:00
|
|
|
|
<view class="sort-brand-item" :key="i" v-for="(value, i) in param.values"
|
|
|
|
|
@click="handleSort(value, i, 'prop', param)">
|
2021-05-13 11:03:32 +08:00
|
|
|
|
<view class="sort-radius" :class="{
|
|
|
|
|
'sort-active': value.__selected,
|
|
|
|
|
}">
|
|
|
|
|
{{ value.title }}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<div class="null-view"></div>
|
|
|
|
|
<view class="sort-btn mp-iphonex-bottom">
|
|
|
|
|
<view class="sort-btn-repick" @click="repick">重置</view>
|
|
|
|
|
<view class="sort-btn-confim" @click="sortConfim">确定</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</u-popup>
|
2021-10-13 18:01:09 +08:00
|
|
|
|
<u-back-top :scroll-top="scrollTop"></u-back-top>
|
2021-05-13 11:03:32 +08:00
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { getGoodsList, getGoodsRelated } from "@/api/goods.js";
|
|
|
|
|
|
|
|
|
|
import { getHotKeywords } from "@/api/home.js";
|
|
|
|
|
import mSearch from "@/components/m-search-revision/m-search-revision.vue";
|
2021-07-30 16:29:05 +08:00
|
|
|
|
import storage from "@/utils/storage";
|
2021-05-13 11:03:32 +08:00
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2021-10-13 18:01:09 +08:00
|
|
|
|
scrollTop: 0,
|
2021-05-13 11:03:32 +08:00
|
|
|
|
loadIndex: 10,
|
|
|
|
|
oldKeywordIndex: "",
|
|
|
|
|
selectedWay: {
|
|
|
|
|
brand: [],
|
|
|
|
|
categoryId: [],
|
|
|
|
|
prop: [],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
sortPopup: false, //筛选的开关
|
|
|
|
|
navObj: {
|
|
|
|
|
background: "#fff",
|
|
|
|
|
},
|
|
|
|
|
typeSortData: {
|
|
|
|
|
type: "",
|
|
|
|
|
index: "",
|
|
|
|
|
},
|
|
|
|
|
goodsHeight: "",
|
|
|
|
|
defaultKeyword: "",
|
|
|
|
|
keyword: "",
|
|
|
|
|
oldKeywordList: [],
|
|
|
|
|
hotKeywordList: [],
|
|
|
|
|
keywordList: [],
|
|
|
|
|
goodsList: [],
|
|
|
|
|
|
|
|
|
|
cateMaskState: 0, //分类面板展开状态
|
|
|
|
|
loadingType: "more", //加载更多状态
|
|
|
|
|
filterIndex: 0,
|
|
|
|
|
cateId: 0, //已选三级分类id
|
|
|
|
|
priceOrder: 0, //1 价格从低到高 2价格从高到低
|
|
|
|
|
cateList: [],
|
|
|
|
|
isShowSeachGoods: false,
|
|
|
|
|
isShowKeywordList: false,
|
|
|
|
|
sortData: "",
|
|
|
|
|
isSWitch: false,
|
|
|
|
|
|
|
|
|
|
params: {
|
2021-06-22 18:12:35 +08:00
|
|
|
|
pageNumber: 1,
|
2021-05-13 11:03:32 +08:00
|
|
|
|
pageSize: 10,
|
|
|
|
|
// sort: 'grade_asc',
|
|
|
|
|
sort: "releaseTime",
|
|
|
|
|
order: "desc",
|
|
|
|
|
keyword: "",
|
|
|
|
|
},
|
|
|
|
|
minPrice: "",
|
|
|
|
|
maxPrice: "",
|
|
|
|
|
sortParams: {
|
2021-06-22 18:12:35 +08:00
|
|
|
|
pageNumber: 1,
|
2021-05-13 11:03:32 +08:00
|
|
|
|
pageSize: 10,
|
|
|
|
|
|
|
|
|
|
// price: "", //价格,示例值(10_30)
|
|
|
|
|
// prop: "", //属性:参数名_参数值@参数名_参数值,示例值(屏幕类型_LED@屏幕尺寸_15英寸)
|
|
|
|
|
// brandId:"", //品牌,可以多选 品牌Id@品牌Id@品牌Id
|
|
|
|
|
categoryId: "",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
routerVal: "",
|
|
|
|
|
};
|
|
|
|
|
},
|
2021-10-13 18:01:09 +08:00
|
|
|
|
onPageScroll(e) {
|
2021-11-09 19:04:38 +08:00
|
|
|
|
console.log(e);
|
2021-10-13 18:01:09 +08:00
|
|
|
|
this.scrollTop = e.scrollTop;
|
|
|
|
|
},
|
2021-05-13 11:03:32 +08:00
|
|
|
|
onLoad(val) {
|
|
|
|
|
this.init();
|
2021-10-13 18:01:09 +08:00
|
|
|
|
// this.initSortGoods();
|
2021-05-13 11:03:32 +08:00
|
|
|
|
// 接收分类的数据
|
|
|
|
|
|
|
|
|
|
this.routerVal = val;
|
|
|
|
|
|
|
|
|
|
// 有值
|
|
|
|
|
if (this.routerVal.category) {
|
|
|
|
|
this.params.categoryId = this.routerVal.category;
|
2021-09-18 10:11:29 +08:00
|
|
|
|
this.sortParams.categoryId = this.routerVal.category;
|
2021-05-13 11:03:32 +08:00
|
|
|
|
this.isShowSeachGoods = true;
|
|
|
|
|
}
|
|
|
|
|
if (this.routerVal.keyword) {
|
|
|
|
|
this.params.keyword = this.routerVal.keyword;
|
|
|
|
|
this.isShowSeachGoods = true;
|
|
|
|
|
}
|
|
|
|
|
if (this.routerVal.storeId) {
|
|
|
|
|
this.params.storeId = this.routerVal.storeId;
|
|
|
|
|
this.isShowSeachGoods = true;
|
|
|
|
|
}
|
|
|
|
|
this.loadData();
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
mSearch,
|
|
|
|
|
},
|
2021-09-01 17:30:54 +08:00
|
|
|
|
watch: {
|
|
|
|
|
/**
|
|
|
|
|
* 将搜索的字和热词进行匹配,如果为热词则不改商品搜索关键字
|
|
|
|
|
*/
|
|
|
|
|
keyword(val) {
|
|
|
|
|
if (val) {
|
2021-09-03 09:48:35 +08:00
|
|
|
|
if (val) {
|
2021-09-01 17:30:54 +08:00
|
|
|
|
this.defaultKeyword = val;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.defaultKeyword = "请输入搜索商品";
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-09-17 18:08:08 +08:00
|
|
|
|
sortPopup(val) {
|
|
|
|
|
if (val) {
|
|
|
|
|
this.selectedWay = { brand: [], categoryId: [], prop: [] };
|
|
|
|
|
console.log(this.selectedWay);
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-09-01 17:30:54 +08:00
|
|
|
|
},
|
2021-05-13 11:03:32 +08:00
|
|
|
|
|
|
|
|
|
onReachBottom() {
|
|
|
|
|
this.params.pageNumber++;
|
|
|
|
|
this.loadData();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
|
const { windowWidth, windowHeight } = uni.getSystemInfoSync();
|
|
|
|
|
|
|
|
|
|
let topHeight = 0;
|
|
|
|
|
let navHeight = 0;
|
|
|
|
|
|
|
|
|
|
uni.getSystemInfo({
|
|
|
|
|
success: function (res) {
|
|
|
|
|
// res - 各种参数
|
|
|
|
|
|
|
|
|
|
let top = uni.createSelectorQuery().select(".u-navbar");
|
|
|
|
|
top
|
|
|
|
|
.boundingClientRect(function (data) {
|
|
|
|
|
if (data && data.height) {
|
|
|
|
|
//data - 各种参数
|
|
|
|
|
topHeight = data.height; // 获取元素宽度
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.exec();
|
|
|
|
|
let nav = uni.createSelectorQuery().select(".navbar");
|
|
|
|
|
nav
|
|
|
|
|
.boundingClientRect(function (data) {
|
|
|
|
|
if (data && data.height) {
|
|
|
|
|
//data - 各种参数
|
|
|
|
|
navHeight = data.height; // 获取元素宽度
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.exec();
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
this.goodsHeight = windowHeight - navHeight - topHeight;
|
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
this.goodsHeight = this.goodsHeight - 100;
|
|
|
|
|
// #endif
|
|
|
|
|
this.goodsHeight += "px";
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
// 数据去重一下 只显示一次 减免 劵 什么的
|
|
|
|
|
getPromotion(item) {
|
|
|
|
|
if (item.promotionMap) {
|
|
|
|
|
let array = [];
|
|
|
|
|
Object.keys(item.promotionMap).forEach((child) => {
|
|
|
|
|
if (!array.includes(child.split("-")[0])) {
|
|
|
|
|
array.push(child.split("-")[0]);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return array;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 格式化金钱 1999 --> [1999,00]
|
2021-05-17 18:19:26 +08:00
|
|
|
|
formatPrice(val) {
|
2021-05-13 11:03:32 +08:00
|
|
|
|
if (typeof val == "undefined") {
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
return val.toFixed(2).split(".");
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 展示更多数据
|
|
|
|
|
showMore() {
|
|
|
|
|
this.loadOldKeyword(this.oldKeywordIndex);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 点击确定进行筛选
|
|
|
|
|
sortConfim() {
|
|
|
|
|
// 处理品牌(多选
|
2021-11-09 19:04:38 +08:00
|
|
|
|
if (!this.params.brandId) {
|
|
|
|
|
this.params.brandId = [];
|
|
|
|
|
} else {
|
|
|
|
|
this.params.brandId = [this.params.brandId];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 如果选中品牌 赋值
|
2021-05-13 11:03:32 +08:00
|
|
|
|
this.selectedWay["brand"].forEach((item) => {
|
|
|
|
|
if (item.__selected) {
|
|
|
|
|
this.params.brandId.push(item.value);
|
|
|
|
|
}
|
|
|
|
|
});
|
2021-11-09 19:04:38 +08:00
|
|
|
|
|
2021-11-10 10:22:37 +08:00
|
|
|
|
this.params.brandId = this.params.brandId.join("@") || "";
|
2021-11-09 19:04:38 +08:00
|
|
|
|
|
2021-05-13 11:03:32 +08:00
|
|
|
|
// 处理分类 (单选)
|
|
|
|
|
if (this.selectedWay["categoryId"][0]) {
|
|
|
|
|
this.params.categoryId = this.selectedWay["categoryId"][0].value;
|
|
|
|
|
}
|
|
|
|
|
// 处理属性
|
|
|
|
|
this.params.prop = [];
|
|
|
|
|
this.selectedWay["prop"].forEach((item) => {
|
|
|
|
|
if (item.__selected) {
|
|
|
|
|
this.params.prop.push(`${item.parent}_${item.title}`);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.params.prop = this.params.prop.join("@");
|
|
|
|
|
// 处理价格
|
|
|
|
|
if (this.minPrice || this.maxPrice) {
|
|
|
|
|
this.params.price = `${this.minPrice}_${this.maxPrice}`;
|
|
|
|
|
} else {
|
|
|
|
|
this.params.price = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.goodsList = [];
|
|
|
|
|
this.loadData();
|
2021-09-17 18:08:08 +08:00
|
|
|
|
this.sortParams = this.params;
|
2021-05-13 11:03:32 +08:00
|
|
|
|
this.sortPopup = false;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 重置
|
|
|
|
|
repick() {
|
2021-09-18 10:11:29 +08:00
|
|
|
|
this.sortParams = {
|
2021-09-17 18:08:08 +08:00
|
|
|
|
pageNumber: 1,
|
|
|
|
|
pageSize: 10,
|
2021-11-09 19:04:38 +08:00
|
|
|
|
categoryId: this.routerVal.category || "",
|
2021-09-17 18:08:08 +08:00
|
|
|
|
};
|
2021-09-18 10:11:29 +08:00
|
|
|
|
this.sortPopup = false;
|
2021-05-13 11:03:32 +08:00
|
|
|
|
this.initSortGoods();
|
|
|
|
|
this.minPrice = "";
|
|
|
|
|
this.maxPrice = "";
|
|
|
|
|
this.params = {
|
2021-06-22 18:12:35 +08:00
|
|
|
|
pageNumber: 1,
|
2021-05-13 11:03:32 +08:00
|
|
|
|
pageSize: 10,
|
2021-11-09 19:04:38 +08:00
|
|
|
|
categoryId: this.routerVal.category || "",
|
|
|
|
|
order: "desc",
|
|
|
|
|
sort: "releaseTime",
|
2021-05-13 11:03:32 +08:00
|
|
|
|
};
|
2021-09-18 10:11:29 +08:00
|
|
|
|
this.goodsList = [];
|
2021-05-13 11:03:32 +08:00
|
|
|
|
this.loadData();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 点击筛选的内容
|
|
|
|
|
handleSort(val, index, type, parent) {
|
|
|
|
|
if (type == "prop") {
|
|
|
|
|
val.parent = parent.key;
|
|
|
|
|
}
|
|
|
|
|
this.selectedWay[type].push(val);
|
|
|
|
|
if (type == "categoryId") {
|
|
|
|
|
this.sortData.categories.forEach((item) => {
|
|
|
|
|
item.__selected = false;
|
|
|
|
|
});
|
|
|
|
|
val.__selected = true;
|
|
|
|
|
} else {
|
|
|
|
|
val.__selected ? (val.__selected = false) : (val.__selected = true);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
init() {
|
2021-09-01 17:30:54 +08:00
|
|
|
|
// 加载搜索记录
|
2021-05-13 11:03:32 +08:00
|
|
|
|
this.loadOldKeyword(this.loadIndex);
|
2021-09-01 17:30:54 +08:00
|
|
|
|
// 加载热词
|
2021-05-13 11:03:32 +08:00
|
|
|
|
this.loadHotKeyword();
|
|
|
|
|
},
|
|
|
|
|
blur() {
|
|
|
|
|
uni.hideKeyboard();
|
|
|
|
|
},
|
|
|
|
|
back() {
|
|
|
|
|
uni.navigateBack({
|
|
|
|
|
delta: 1,
|
|
|
|
|
});
|
|
|
|
|
},
|
2021-10-13 18:01:09 +08:00
|
|
|
|
// 跳转到商品详情
|
2021-05-13 11:03:32 +08:00
|
|
|
|
navigateToDetailPage(item) {
|
|
|
|
|
uni.navigateTo({
|
2021-09-02 16:08:35 +08:00
|
|
|
|
url: `/pages/product/goods?id=${item.content.id}&goodsId=${item.content.goodsId}`,
|
2021-05-13 11:03:32 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
2021-10-13 18:01:09 +08:00
|
|
|
|
// 跳转地址
|
|
|
|
|
navigateToStoreDetailPage(item) {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: `/pages/product/shopPage?id=${item.content.storeId}`,
|
|
|
|
|
});
|
|
|
|
|
},
|
2021-05-13 11:03:32 +08:00
|
|
|
|
loadmore() {
|
|
|
|
|
this.params.pageNumber++;
|
|
|
|
|
this.loadData();
|
|
|
|
|
},
|
|
|
|
|
initSortGoods() {
|
|
|
|
|
getGoodsRelated(this.sortParams).then((res) => {
|
|
|
|
|
if (res.data.success) {
|
|
|
|
|
for (let item of Object.keys(res.data.result)) {
|
|
|
|
|
res.data.result[item].forEach((child) => {
|
|
|
|
|
child.__selected = false;
|
|
|
|
|
|
|
|
|
|
// 循环出和品牌分类一样的数据格式
|
|
|
|
|
if (child.values) {
|
|
|
|
|
child.values = child.values.map((item) => ({
|
|
|
|
|
title: item,
|
|
|
|
|
__selected: false,
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
this.sortData = res.data.result;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 筛选商品
|
|
|
|
|
sortGoods() {
|
|
|
|
|
this.sortPopup = true;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
tabClick(index, type) {
|
2021-06-22 18:12:35 +08:00
|
|
|
|
this.params.pageNumber = 1;
|
2021-05-13 11:03:32 +08:00
|
|
|
|
this.params.pageSize = 10;
|
|
|
|
|
// this.params.order = "desc";
|
|
|
|
|
if (this.params.sort == type) {
|
|
|
|
|
this.params.order == "asc"
|
|
|
|
|
? (this.params.order = "desc")
|
|
|
|
|
: (this.params.order = "asc");
|
|
|
|
|
|
|
|
|
|
this.$set(this.params, "sort", type);
|
|
|
|
|
} else {
|
|
|
|
|
this.params.order = "desc";
|
|
|
|
|
this.$set(this.params, "sort", type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (index == 0) {
|
|
|
|
|
this.params.sort = "releaseTime";
|
|
|
|
|
this.params.order = "desc";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.filterIndex = index;
|
|
|
|
|
|
|
|
|
|
uni.pageScrollTo({
|
|
|
|
|
duration: 300,
|
|
|
|
|
scrollTop: 0,
|
|
|
|
|
});
|
|
|
|
|
this.loadData("refresh", 1);
|
|
|
|
|
uni.showLoading({
|
|
|
|
|
title: "正在加载",
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//加载默认搜索关键字
|
|
|
|
|
loadDefaultKeyword() {
|
2021-09-01 17:30:54 +08:00
|
|
|
|
/**
|
|
|
|
|
* 定义默认搜索关键字会根据当前热门搜索来进行显示
|
|
|
|
|
* 如果当前热门搜索没有的话,则会显示默认关键字
|
|
|
|
|
*/
|
|
|
|
|
if (this.hotKeywordList.length != 0) {
|
|
|
|
|
//
|
|
|
|
|
this.defaultKeyword = this.hotKeywordList[0];
|
|
|
|
|
} else {
|
|
|
|
|
this.defaultKeyword = "请输入搜索商品";
|
|
|
|
|
}
|
2021-05-13 11:03:32 +08:00
|
|
|
|
},
|
|
|
|
|
//加载历史搜索,自动读取本地Storage
|
|
|
|
|
loadOldKeyword(index) {
|
|
|
|
|
this.oldKeywordList = [];
|
|
|
|
|
uni.getStorage({
|
|
|
|
|
key: "OldKeys",
|
|
|
|
|
success: (res) => {
|
|
|
|
|
var OldKeys = JSON.parse(res.data);
|
|
|
|
|
this.oldKeywordIndex = res.data.length;
|
|
|
|
|
for (let i = 0; i < index; i++) {
|
|
|
|
|
this.oldKeywordList.push(OldKeys[i]);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
},
|
2021-07-30 16:29:05 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 加载热门搜索
|
2021-08-04 18:14:31 +08:00
|
|
|
|
* 1.5分钟之后更新缓存
|
2021-07-30 16:29:05 +08:00
|
|
|
|
* 2.如果有缓存热门关键字则去请求缓存
|
|
|
|
|
*/
|
2021-05-13 11:03:32 +08:00
|
|
|
|
async loadHotKeyword() {
|
|
|
|
|
this.hotKeywordList = [];
|
2021-07-30 16:29:05 +08:00
|
|
|
|
if (
|
|
|
|
|
!storage.getHotWords().time ||
|
|
|
|
|
storage.getHotWords().time <= new Date().getTime() / 1000
|
|
|
|
|
) {
|
|
|
|
|
// 没有缓存或者第一次进入请求接口保存缓存
|
|
|
|
|
let res = await getHotKeywords(10);
|
|
|
|
|
let keywords = res.data.result;
|
|
|
|
|
|
|
|
|
|
keywords.forEach((item) => {
|
|
|
|
|
this.hotKeywordList.push(item);
|
|
|
|
|
});
|
2021-05-13 11:03:32 +08:00
|
|
|
|
|
2021-07-30 16:29:05 +08:00
|
|
|
|
let hotData = {
|
2021-08-04 18:14:31 +08:00
|
|
|
|
time: new Date().getTime() / 1000 + 30 * 5,
|
2021-07-30 16:29:05 +08:00
|
|
|
|
keywords: keywords,
|
|
|
|
|
};
|
|
|
|
|
storage.setHotWords(hotData);
|
|
|
|
|
} else {
|
|
|
|
|
let keywords = storage.getHotWords().keywords;
|
|
|
|
|
|
|
|
|
|
keywords.forEach((item) => {
|
|
|
|
|
this.hotKeywordList.push(item);
|
|
|
|
|
});
|
|
|
|
|
}
|
2021-09-01 17:30:54 +08:00
|
|
|
|
this.loadDefaultKeyword();
|
2021-05-13 11:03:32 +08:00
|
|
|
|
},
|
|
|
|
|
//加载商品 ,带下拉刷新和上滑加载
|
|
|
|
|
async loadData(type, loading) {
|
|
|
|
|
this.loadingType = "loading";
|
|
|
|
|
if (type == "refresh") {
|
|
|
|
|
this.goodsList = [];
|
|
|
|
|
}
|
2021-09-02 16:08:35 +08:00
|
|
|
|
//没有更多直接返回 #TODO
|
2021-05-13 11:03:32 +08:00
|
|
|
|
let goodsList = await getGoodsList(this.params);
|
2021-07-30 16:29:05 +08:00
|
|
|
|
|
2021-05-13 11:03:32 +08:00
|
|
|
|
if (goodsList.data.result.content.length < 10) {
|
|
|
|
|
this.loadingType = "noMore";
|
|
|
|
|
}
|
|
|
|
|
this.goodsList.push(...goodsList.data.result.content);
|
|
|
|
|
this.initSortGoods();
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//高亮关键字
|
|
|
|
|
drawCorrelativeKeyword(keywords, keyword) {
|
|
|
|
|
var len = keywords.length,
|
|
|
|
|
keywordArr = [];
|
|
|
|
|
for (var i = 0; i < len; i++) {
|
|
|
|
|
var row = keywords[i];
|
|
|
|
|
//定义高亮#9f9f9f
|
|
|
|
|
var html = row[0].replace(
|
|
|
|
|
keyword,
|
|
|
|
|
"<span style='color: #9f9f9f;'>" + keyword + "</span>"
|
|
|
|
|
);
|
|
|
|
|
html = "<div>" + html + "</div>";
|
|
|
|
|
var tmpObj = {
|
|
|
|
|
keyword: row[0],
|
|
|
|
|
htmlStr: html,
|
|
|
|
|
};
|
|
|
|
|
keywordArr.push(tmpObj);
|
|
|
|
|
}
|
|
|
|
|
return keywordArr;
|
|
|
|
|
},
|
|
|
|
|
//顶置关键字
|
|
|
|
|
setKeyword(index) {
|
|
|
|
|
this.keyword = this.keywordList[index].keyword;
|
|
|
|
|
},
|
|
|
|
|
//清除历史搜索
|
|
|
|
|
oldDelete() {
|
|
|
|
|
uni.showModal({
|
|
|
|
|
content: "确定清除历史搜索记录?",
|
|
|
|
|
success: (res) => {
|
|
|
|
|
if (res.confirm) {
|
|
|
|
|
this.oldKeywordList = [];
|
|
|
|
|
uni.removeStorage({
|
|
|
|
|
key: "OldKeys",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 样式修改布局
|
2021-09-01 17:30:54 +08:00
|
|
|
|
doSearchSwitch() {
|
2021-05-13 11:03:32 +08:00
|
|
|
|
this.isSWitch = !this.isSWitch;
|
|
|
|
|
this.isShowSeachGoods = true;
|
|
|
|
|
},
|
|
|
|
|
|
2021-09-01 17:30:54 +08:00
|
|
|
|
/**
|
|
|
|
|
* 执行搜索
|
|
|
|
|
*/
|
2021-05-13 11:03:32 +08:00
|
|
|
|
doSearch(keyword) {
|
2021-09-01 17:30:54 +08:00
|
|
|
|
// 用户自行搜索/热门搜索/搜索历史
|
2021-05-13 11:03:32 +08:00
|
|
|
|
keyword = keyword === false ? this.keyword : keyword;
|
2021-09-01 17:30:54 +08:00
|
|
|
|
|
|
|
|
|
if (!keyword) {
|
|
|
|
|
/**
|
|
|
|
|
* 进行空搜索
|
|
|
|
|
* 第一次搜索如果没有关键词会将热门搜索中第一个热词进行判定
|
|
|
|
|
* 如果没有热词则会展示一个空词搜索
|
|
|
|
|
*/
|
|
|
|
|
keyword = (this.hotKeywordList.length && this.hotKeywordList[0]) || "";
|
|
|
|
|
}
|
|
|
|
|
this.defaultKeyword == "请输入搜索商品" ? (keyword = "") : "";
|
2021-09-03 09:48:35 +08:00
|
|
|
|
// this.keyword = keyword;
|
|
|
|
|
keyword ? (this.keyword = keyword) : "";
|
2021-05-13 11:03:32 +08:00
|
|
|
|
this.saveKeyword(keyword); //保存为历史
|
|
|
|
|
this.isShowSeachGoods = true;
|
|
|
|
|
this.$refs.mSearch.isShowSeachGoods = true;
|
2021-09-03 09:48:35 +08:00
|
|
|
|
this.params.keyword = this.keyword;
|
2021-06-22 18:12:35 +08:00
|
|
|
|
this.params.pageNumber = 1;
|
2021-05-13 11:03:32 +08:00
|
|
|
|
this.$set(this.sortParams, "keyword", keyword);
|
|
|
|
|
this.loadData("refresh", 1);
|
|
|
|
|
},
|
|
|
|
|
//保存关键字到历史记录
|
|
|
|
|
saveKeyword(keyword) {
|
|
|
|
|
if (!keyword) return false;
|
|
|
|
|
uni.getStorage({
|
|
|
|
|
key: "OldKeys",
|
|
|
|
|
success: (res) => {
|
|
|
|
|
var OldKeys = JSON.parse(res.data);
|
|
|
|
|
var findIndex = OldKeys.indexOf(keyword);
|
|
|
|
|
if (findIndex == -1) {
|
|
|
|
|
OldKeys.unshift(keyword);
|
|
|
|
|
} else {
|
|
|
|
|
OldKeys.splice(findIndex, 1);
|
|
|
|
|
OldKeys.unshift(keyword);
|
|
|
|
|
}
|
|
|
|
|
//最多10个纪录
|
|
|
|
|
OldKeys.length > 10 && OldKeys.pop();
|
|
|
|
|
|
|
|
|
|
uni.setStorage({
|
|
|
|
|
key: "OldKeys",
|
|
|
|
|
data: JSON.stringify(OldKeys),
|
|
|
|
|
});
|
|
|
|
|
this.oldKeywordList = OldKeys; //更新历史搜索
|
|
|
|
|
},
|
|
|
|
|
fail: (e) => {
|
|
|
|
|
var OldKeys = [keyword];
|
|
|
|
|
uni.setStorage({
|
|
|
|
|
key: "OldKeys",
|
|
|
|
|
data: JSON.stringify(OldKeys),
|
|
|
|
|
});
|
|
|
|
|
this.oldKeywordList = OldKeys; //更新历史搜索
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import "./search.scss";
|
|
|
|
|
</style>
|