123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <template>
- <view class="content">
- <view class="Box">
- <view
- v-for="(item, index) in productList" :key="index" class="productBox"
- @click="goodsDateils(item.shopId, item.productId, item.skuId)"
- >
- <view class="proImg">
- <image :src="item.image" mode=""></image>
- </view>
- <view class="rightBox">
- <view class="proTitle">
- {{ item.productName }}
- </view>
- <view class="price">
- <text class="fs36 font-color-red">
- ¥{{ item.price }}
- </text>
- <text class="mar-left-10 fs26">
- {{ item.users }}人付款
- </text>
- </view>
- <view class="flex-sp-between flex-display mar-top-20" @click.stop="goStore(item.shopId)">
- <view>
- {{ item.shopName }}
- </view>
- <view>
- <image class="rightIcon" src="../static/images/origin/arrowRight.png" mode="aspectFill"></image>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- const NET = require('@/utils/request')
- const API = require('@/config/api')
- export default {
- data() {
- return {
- list: [],
- pageSize: 1,
- productList: []
- }
- },
- onPullDownRefresh() { // 上拉触底函数
- this.pageSize = this.pageSize + 1
- this.GetremenList()
- },
- onLoad() {
- this.GetremenList()
- },
- methods: {
- // 获取列表数据
- GetremenList() {
- const timestamp = new Date().getTime()
- NET.request(API.GetremenList, {
- page: this.pageSize,
- pageSize: 5,
- timestamp
- }, 'get').then((res) => {
- uni.stopPullDownRefresh()
- if (res.code == 200) {
- this.productList = res.data.list
- } else {
- uni.showToast({
- title: res.message,
- icon: 'none'
- })
- }
- })
- },
- // 跳转店铺
- goStore(shopId) {
- uni.navigateTo({
- url: './store/index?storeId=' + shopId
- })
- },
- // 商品详情
- goodsDateils(shopId, productId, skuId) {
- uni.navigateTo({
- url: './goodsModule/goodsDetails?shopId=' + shopId + '&productId=' + productId + '&skuId=' +
- skuId
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page {
- background-color: #FBE7E0;
- }
- .content {
- .Box {
- padding: 30upx;
- .productBox {
- background-color: #FFFFFF;
- height: 280upx;
- margin-bottom: 20upx;
- border-radius: 20upx;
- padding: 20upx;
- display: flex;
- justify-content: space-between;
- .proImg {
- width: 240upx;
- height: 240upx;
- image {
- width: 100%;
- height: 100%;
- border-radius: 20upx;
- }
- }
- .rightBox {
- width: 60%;
- .proTitle {
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .biao {
- margin-top: 20upx;
- text {
- margin-right: 10upx;
- border-radius: 5upx;
- color: #C5AA7B;
- padding: 5upx 10upx 5upx;
- background-color: #FBE7E0;
- }
- }
- .price {
- margin-top: 55upx;
- }
- .rightIcon {
- width: 24upx;
- height: 24upx;
- }
- }
- }
- }
- }
- </style>
|