123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- <template>
- <view class="main">
- <!-- <view class="top-search">
- <input type="text" class="search-key" placeholder="请输入关键字" v-model="keyword" />
- <image src="../../static/icon/search.png" mode="" class="search-logo"></image>
- <view class="search-btn" @click.stop="search">搜索</view>
- </view> -->
- <scroll-view scroll-y="true" :style="{'height': height}" class="scoll-wrap" @scrolltolower="getArticleList()">
- <view class="list-box-h">
- <view v-for="(item, index) in list" :key="index" class="guess-item" @click="navToDetailPage(item)">
- <image :src="item.image"></image>
- <view class="guess-box">
- <view class="title clamp2">{{ item.store_name }}</view>
- <view class="flex itemContent">
- <view>
- <view class="price-box flex">
- <!-- <view class="yuanprice">{{ item.ot_price }}</view> -->
- <!-- <image src="../../static/img/jiantou.png" mode=""></image> -->
- <!-- <view class="jiang">直降{{ (item.ot_price - item.price).toFixed(2) }}元</view> -->
- </view>
- <view class="price" >{{ ((item.result.value[0].integral)*(three_integral)).toFixed(2) }}积分</view>
- </view>
- <view class="btn">立即购买</view>
- </view>
- </view>
- </view>
- </view>
- <uni-load-more :status="loadingType"></uni-load-more>
- </scroll-view>
- </view>
- </template>
- <script>
- import {jfShop} from '@/api/index.js'
- export default {
- data() {
- return {
- height: '',
- list: [],
- page: 1,
- limit: 10,
- loadingType: 'more',
- total_pages: 0,
- keyword: '',
- three_integral: 1,
- }
- },
- onLoad(opt) {
- // this.getBl()
- this.getArticleList()
- },
- // onReachBottom() {
- // this.getArticleList()
- // },
- onReady(res) {
- var obj = this;
- uni.getSystemInfo({
- success: resu => {
- const query = uni.createSelectorQuery();
- query.select('.scoll-wrap').boundingClientRect();
- query.exec(function(res) {
- console.log(res, 'ddddddddddddd');
- obj.height = resu.windowHeight - res[0].top + 'px';
- console.log('打印页面的剩余高度', obj.height);
- });
- },
- fail: res => {}
- });
- },
- methods: {
- // getBl(){
- // let obj = this
- // getBl().then(res => {
- // console.log(res)
- // obj.three_integral = res.data.three_integral
- // console.log(obj.three_integral)
- // })
- // },
- navToDetailPage(item) {
- console.log(item.id);
- uni.navigateTo({
- url: '/pages/product/product?id=' + item.id
- })
- },
- getArticleList() {
- let obj = this
- if (obj.loadingType == 'noMore' || obj.loadingType == 'loading') {
- return
- }
- obj.loadingType = 'loading'
- jfShop({
- page: obj.page,
- limit: obj.limit,
- // keyword: obj.keyword //商品关键字
- // is_gp:1 //设置是否vip商品
- }).then(({
- data
- }) => {
- console.log(data,'data');
- obj.list = obj.list.concat(data)
- // obj.total_pages = data.meta.pagination.total_pages
- obj.page++
- if(obj.page <= obj.total_pages) {
- obj.loadingType = 'more'
- }else {
- obj.loadingType = 'noMore'
- }
- // if (data.length == obj.limit) {
- // obj.loadingType = 'more'
- // } else {
- // obj.loadingType = 'noMore'
- // }
- })
- },
- search() {
- let obj = this
- obj.page = 1
- obj.list = []
- obj.loadingType = 'more'
- obj.getArticleList()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page {
- background-color: #fff;
- min-height: 100%;
- }
- .list-box-h {
- padding: 20rpx;
- }
- .guess-item {
- padding: 10rpx;
- display: flex;
- min-width: 100%;
- width: 0;
- margin-bottom: 20rpx;
- background: #ffffff;
- border-radius: 10rpx;
- box-shadow: 0px 0px 20rpx 0px rgba(50, 50, 52, 0.06);
- image {
- width: 200rpx;
- height: 200rpx;
- border-radius: 10rpx;
- flex-shrink: 0;
- }
- .guess-box {
- width: 100%;
- padding: 5px;
- position: relative;
- .itemContent {
- position: absolute ;
- width: 100%;
- padding: 20rpx 10rpx;
- bottom: 0;
- right: 0;
- }
- .title {
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- height: 2.5em;
- line-height: 1.25em;
- }
- .price-box {
- justify-content: flex-start;
- .yuanprice {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- text-decoration: line-through;
- color: #999999;
- padding-right: 6rpx;
- }
- image {
- width: 14rpx;
- height: 16rpx;
- }
- .jiang {
- padding-left: 2rpx;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #b59467;
- }
- }
- .price {
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FF6F0F;
- }
- .btn {
- background: #16cc9f;
- border-radius: 28rpx;
- font-size: 28rpx;
- font-weight: 500;
- color: #ffffff;
- float: right;
- padding: 10rpx 20rpx;
- }
- }
- }
- .top-search {
- width: 750rpx;
- height: 100rpx;
- // padding-top: 20rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
-
- .search-key {
- width: 700rpx;
- height: 70rpx;
- padding-left: 100rpx;
- background: #FFFFFF;
- box-shadow: 0px 1rpx 5rpx #16cc9f;
- border-radius: 35rpx;
- position: relative;
- }
-
- .search-logo {
- width: 36rpx;
- height: 36rpx;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 50rpx;
- margin: auto;
- }
-
- .search-btn {
- width: 150rpx;
- height: 70rpx;
- border-radius: 30rpx;
- color: #16cc9f;
- text-align: center;
- line-height: 70rpx;
- position: absolute;
- top: 0;
- bottom: 0;
- right: 10rpx;
- margin: auto;
- // background-color: red;
- z-index: 9;
- }
- }
- </style>
|