| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542 |
- <template>
- <view class="container">
- <!-- <view class="vheigh"></view> -->
- <!-- 小程序头部兼容 -->
- <!-- 顶部logo and 搜索 start-->
- <view class="top-search flex">
- <view class="search-box flex" @click="clickSearch()">
- <image class="search" src="../../static/icon/search-h.png" mode=""></image>
- <view class="search-font"><input type="text" placeholder="输入关键词搜索" v-model="productname" /></view>
- </view>
- </view>
- <view class="tabbar"><image src="../../static/img/banner.png" mode=""></image></view>
- <!-- 精品 商品 -->
- <view class="scroll-view flex-tpl" :style="{ height: pageHeight }">
- <scroll-view scroll-y class="left-aside">
- <view v-for="item in flist" class="f-item" :class="{ active_top: item.id == erjiid }" @click="changeSlist(item.id)">{{ item.cate_name }}</view>
- </scroll-view>
- <scroll-view :scroll-with-animation="scrollAnimation" scroll-y class="right-aside" @scroll="loadData()">
- <view class="tlist-box" v-for="ls in bastList" :id="'main-' + ls.id">
- <view class="tlist-list flex_item" @click="navToDetailPage(ls)">
- <view class="tlist-img">
- <view class="img"><image :src="ls.image" :lazy-load="true" mode="scaleToFill"></image></view>
- </view>
- <view class="sell-out" v-if="ls.stock == 0"><text>已售罄</text></view>
- <view class="tlist-info">
- <view class="tlist-tip">
- <view class="ywyw">以物易物</view>
- <view class="bmhw">必买好物</view>
- </view>
- <view class="name ellipsis">{{ ls.store_name }}</view>
- <view class="tlist-price flex">
- <view class="price-box">
- <view class="price">
- ¥
- <text class="blod">{{ ls.price }}</text>
- <text class="fen" v-if="ls.unit_name">/{{ ls.unit_name }}</text>
- </view>
- </view>
- <view class="btn">立即购买</view>
- </view>
- <view class="bottom_border"></view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </template>
- <script>
- import { loadIndexs } from '@/api/index.js';
- import { getUserInfo } from '@/api/user.js';
- import { getProducts, getCategoryList } from '@/api/product.js';
- import { saveUrl, interceptor } from '@/utils/loginUtils.js';
- import { mapState } from 'vuex';
- export default {
- data() {
- return {
- scrollAnimation: true, //是否开启动画
- bastList: [], //精品推荐列表
- pageHeight: 0, //保存滚轮页面高度
- flist: [], //一级分类列表
- erjiid: '', //二级选择id
- page: 1,
- limit: 10,
- productname: '',
- loadingType: 'more' //加载更多状态
- };
- },
- computed: {
- ...mapState(['loginInterceptor']),
- ...mapState('user', ['hasLogin', 'userInfo'])
- },
- onReady(res) {
- // 初始化获取页面宽度
- var _this = this;
- uni.getSystemInfo({
- success: resu => {
- const query = uni.createSelectorQuery();
- query.select('.scroll-view').boundingClientRect();
- query.exec(function(res) {
- _this.pageHeight = resu.windowHeight - res[0].top + 'px';
- console.log('打印页面的剩余高度', _this.pageHeight);
- });
- },
- fail: res => {}
- });
- },
- onLoad: function(option) {},
- onShow: function() {
- this.productname = '';
- this.loadingType = 'more';
- this.page = 1;
- this.bastList = []; //精品推荐列表
- this.flist = [];
- // this.loadData();
- this.categoryList();
- },
- onReachBottom() {
- this.loadData();
- },
- methods: {
- categoryList() {
- getCategoryList({}).then(({ data }) => {
- data.forEach(e => {
- if (e.id == 9) {
- this.flist = e.children;
- this.erjiid = this.flist[0].id;
- console.log(this.flist, this.erjiid, 'shuj');
- }
- });
- this.loadData();
- });
- },
- changeSlist(id) {
- this.bastList = [];
- this.page = 1;
- this.limit = 10;
- this.loadingType = 'more';
- this.erjiid = id;
- this.loadData();
- },
- // 點擊搜索框
- clickSearch() {
- this.bastList = [];
- this.page = 1;
- this.limit = 10;
- this.loadingType = 'more';
- this.loadData();
- },
- // 请求载入数据
- async loadData() {
- let obj = this;
- if (obj.loadingType == 'nomore' || obj.loadingType == 'loading') {
- return;
- }
- obj.loadingType = 'loading';
- let data = {
- page: obj.page,
- limit: obj.limit,
- keyword: obj.productname,
- sid: obj.erjiid
- };
- getProducts(data).then(function(e) {
- obj.bastList = obj.bastList.concat(e.data);
- //判断是否还有下一页,有是more 没有是nomore
- if (obj.limit == e.data.length) {
- obj.page++;
- obj.loadingType = 'more';
- } else {
- obj.loadingType = 'nomore';
- }
- });
- },
- //轮播图切换修改背景色
- swiperChange(e) {
- const index = e.detail.current;
- this.swiperCurrent = index;
- this.titleNViewBackground = this.carouselList[index].background;
- },
- //详情页
- navToDetailPage(item) {
- let id = item.id;
- uni.navigateTo({
- url: '/pages/product/product?id=' + id + '&isyw=1'
- });
- },
- // 轮播图跳转
- bannerNavToUrl(item) {
- // #ifdef H5
- if (item.wap_url.indexOf('http') > 0) {
- window.location.href = item.wap_url;
- }
- // #endif
- //测试数据没有写id,用title代替
- uni.navigateTo({
- url: item.wap_url
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- .cate-section {
- position: relative;
- z-index: 5;
- border-radius: 16rpx 16rpx 0 0;
- margin-top: -20rpx;
- }
- }
- page {
- background: #f7f8f7;
- }
- .top-search {
- height: 80rpx;
- padding: 0 20rpx;
- background-color: #fff;
- .search-box {
- justify-content: center;
- width: 698rpx;
- height: 60rpx;
- background: #eeeeee;
- // box-shadow: 0px 10rpx 20rpx 0px rgba(4, 114, 69, 0.22);
- border-radius: 30rpx;
- .search {
- width: 34rpx;
- height: 34rpx;
- }
- .search-font {
- width: 500rpx;
- margin-left: 14rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #cbcbcb;
- }
- }
- }
- // 顶部轮播图
- .top-swiper {
- width: 750rpx;
- height: 360rpx;
- // margin: 20rpx 0 0;
- image {
- width: 750rpx;
- height: 360rpx;
- }
- }
- .swiper-btm {
- height: 60rpx;
- width: 750rpx;
- background-color: #fff;
- margin-bottom: 20rpx;
- font-size: 21rpx;
- font-weight: 500;
- color: #333333;
- .btm-item {
- flex-grow: 1;
- justify-content: center;
- image {
- width: 25rpx;
- height: 25rpx;
- margin-right: 14rpx;
- }
- }
- }
- .tabbar {
- margin: 18rpx auto 0;
- width: 720rpx;
- height: 272rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- /* 分类 */
- .cate-section {
- display: flex;
- justify-content: space-around;
- align-items: center;
- flex-wrap: wrap;
- padding: 30rpx 22rpx;
- .cate-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- font-size: $font-sm + 2rpx;
- color: $font-color-dark;
- }
- /* 原图标颜色太深,不想改图了,所以加了透明度 */
- image {
- width: 88rpx;
- height: 88rpx;
- margin-bottom: 14rpx;
- border-radius: 50%;
- opacity: 0.7;
- }
- }
- /*公用边框样式*/
- %icon {
- margin-right: 10rpx;
- display: inline-block;
- padding: 2rpx 10rpx;
- border: 1rpx solid $color-yellow;
- color: $color-yellow;
- line-height: 1;
- font-size: $font-base;
- border-radius: 10rpx;
- }
- .vheigh {
- height: var(--status-bar-height);
- }
- .flex-tpl {
- display: flex;
- justify-content: space-between;
- }
- .scroll-view {
- margin-top: 15rpx;
- .left-aside {
- flex-shrink: 0;
- width: 180rpx;
- height: 100%;
- background: #f2f2f2;
- overflow: hidden;
- display: block;
- overflow-y: scroll;
- }
- }
- .f-item {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 180rpx;
- height: 100rpx;
- font-size: 24rpx;
- color: $font-color-base;
- position: relative;
- &.active_top {
- background: #ffffff;
- font-size: 26rpx;
- font-weight: 500;
- color: rgba(51, 51, 51, 1);
- &:before {
- content: '';
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- height: 100rpx;
- width: 8rpx;
- background-color: #fd377a;
- border-radius: 0 4px 4px 0;
- opacity: 0.8;
- }
- }
- }
- .right-aside {
- overflow: hidden;
- padding: 0rpx 20rpx;
- height: 100%;
- display: block;
- overflow-y: scroll;
- width: 100%;
- .image {
- width: 100%;
- padding-bottom: 15rpx;
- .imageLV {
- width: 100%;
- height: 200rpx;
- }
- }
- .tlist-box {
- .tlistname {
- font-size: 24rpx;
- padding: 25rpx 25rpx;
- border-top: 2rpx solid rgba(238, 238, 238, 1);
- border-bottom: 2rpx solid rgba(238, 238, 238, 1);
- }
- .tlist-list.flex_item {
- height: 0;
- min-height: 230rpx;
- align-items: stretch;
- }
- .tlist-list {
- padding: 25rpx 0rpx;
- position: relative;
- .tlist-img {
- width: 169rpx;
- position: relative;
- .img {
- width: 169rpx;
- height: 169rpx;
- image {
- width: 169rpx;
- height: 169rpx;
- }
- }
- .stock {
- margin-top: 13rpx;
- font-size: 26rpx;
- background: #fff1ee;
- width: 100%;
- color: #fb4912;
- padding: 6rpx 0;
- border-radius: 5rpx;
- justify-content: center;
- align-items: center;
- position: absolute;
- left: 0;
- bottom: 0;
- .img {
- width: 20rpx;
- height: 20rpx;
- flex-shrink: 0;
- }
- .stock-num {
- padding-left: 7rpx;
- font-size: 22rpx;
- border-radius: 5rpx;
- height: 32rpx;
- line-height: 32rpx;
- }
- }
- }
- .sell-out {
- position: absolute;
- width: 169rpx;
- height: 190rpx;
- background: rgba(255, 255, 255, 0.4);
- text-align: center;
- text {
- line-height: 190rpx;
- background: rgba(0, 0, 0, 0.5);
- color: #ffffff;
- padding: 10rpx 25rpx;
- border-radius: 25rpx;
- font-size: 20rpx;
- }
- }
- .tlist-info {
- font-size: 24rpx;
- width: 61%;
- padding-left: 25rpx;
- padding-right: 25rpx;
- position: relative;
- .tlist-tip {
- display: flex;
- align-items: center;
- .ywyw {
- width: 86rpx;
- height: 31rpx;
- background: linear-gradient(90deg, #fa0100 0%, #fa4716 100%);
- border-radius: 5rpx;
- text-align: center;
- line-height: 31rpx;
- font-size: 16rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- }
- .bmhw {
- margin-left: 10rpx;
- width: 86rpx;
- height: 31rpx;
- background: linear-gradient(90deg, #1b4282 0%, #2b5da6 100%);
- border-radius: 5rpx;
- text-align: center;
- line-height: 31rpx;
- font-size: 16rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- }
- }
- .bottom_border {
- position: absolute;
- border-bottom: 1px solid #eeeeee;
- left: 25rpx;
- bottom: 0;
- height: 2rpx;
- width: 100%;
- }
- .name {
- margin-top: 10rpx;
- color: #141821;
- font-weight: 500;
- font-size: 26rpx;
- &.ellipsis {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- .info {
- color: #979797;
- font-size: 24rpx;
- padding: 8rpx 0rpx;
- }
- .tipBox {
- height: 50rpx;
- }
- .tip {
- padding: 10rpx 0rpx;
- text {
- border: 2rpx solid #ff1a27;
- color: #ff1a27;
- border-radius: 5rpx;
- font-size: 18rpx;
- padding: 5rpx 10rpx;
- margin-right: 15rpx;
- }
- }
- .tlist-price {
- position: absolute;
- left: 25rpx;
- width: 100%;
- bottom: 25rpx;
- .price-box {
- .price {
- color: #ff1a27;
- .blod {
- font-size: 35rpx;
- font-weight: bold;
- }
- .fen {
- color: #838691;
- }
- }
- }
- .btn {
- width: 85rpx;
- height: 30rpx;
- background: linear-gradient(90deg, #fa0100 0%, #fa4716 100%);
- border-radius: 14rpx;
- text-align: center;
- line-height: 30rpx;
- font-size: 14rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- }
- }
- }
- }
- }
- .tlist {
- .cate {
- padding: 25rpx 0rpx;
- color: #666666;
- font-size: 24rpx;
- }
- }
- }
- </style>
|