123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <template>
- <view class="coupon-shop-list-container">
- <JHeader title="优惠券可用商品列表" width="50" height="50" style="padding: 24upx 0 0;"></JHeader>
- <!-- 商品列表 -->
- <view>
- <view
- v-for="(item, index) in couponProductsList" :key="index"
- class="goodsDetails-box flex-display flex-column mar-left-30"
- @click="go(`/another-tf/another-serve/goodsDetails/index?shopId=${item.shopId}&productId=${item.productId}&skuId=${item.skuId}`)"
- >
- <view v-if="item.activityType == 0" class="goodsDetails flex-items-plus flex-row mar-top-30">
- <image class="goodsImg" :src="common.seamingImgUrl(item.image)"></image>
- <view class="mar-left-30">
- <view class="goodsName-box overflowNoDot">
- <label class="goodsName fs26">{{ item.productName }}</label>
- </view>
- <view class="priceBuyNum-box mar-top-20">
- <label class="fs24 font-color-C5AA7B">¥</label>
- <label class="fs36 font-color-C5AA7B mar-left-10">{{ item.price }}</label>
- <label v-if="item.users != null" class="fs24 font-color-999 mar-left-10">{{ item.users }}人付款</label>
- <label v-else class="fs24 font-color-999 mar-left-10">0人付款</label>
- </view>
- <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items">
- <label class="fs22 font-color-999">{{ item.shopName }}</label>
- <tui-icon name="arrowright" :size="24" unit="upx" color="#9f8a66" margin="0"></tui-icon>
- </view>
- </view>
- </view>
- <view v-else class="spikeList">
- <view class="listItem">
- <view class="itemBox">
- <image :src="common.seamingImgUrl(item.image)"></image>
- </view>
- <view class="itemInfo mar-top-30">
- <p>{{ item.productName }}</p>
- <view v-if="item.users != null" class="number">
- {{ item.users }}人付款 <span v-if="item.total != 0">
- ,限量{{ item.total }}件
- </span>
- </view>
- <view v-else class="number">0人付款<span v-if="item.total != 0">,限量{{ item.total }}件</span></view>
- <view class="flex-row-plus flex-item mar-top-30">
- <view class="discountsPriceLine font-color-999">¥{{ item.originalPrice }}</view>
- <view class="mar-left-30 font-color-C5AA7B flex-row-plus">
- <label v-if="item.activityType == 1" class="fs30">拼团价</label>
- <label v-if="item.activityType == 2" class="fs30">秒杀价</label>
- <label v-if="item.activityType == 3" class="fs30">折扣价</label>
- <b>¥</b>
- <label class="fs28">{{ item.price }}</label>
- </view>
- </view>
- <view class="flex-display flex-sp-between flex-row mar-top-10 flex-items">
- <label class="fs22 font-color-999">{{ item.shopName }}</label>
- <tui-icon name="arrowright" :size="24" unit="upx" color="#9f8a66" margin="0"></tui-icon>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view style="padding-bottom: 45upx;">
- <LoadingMore
- :status="!isEmpty && !couponProductsList.length
- ? 'loading' : !isEmpty && couponProductsList.length && (couponProductsList.length >= couponProductsTotal) ? 'no-more' : ''"
- >
- </LoadingMore>
- <tui-no-data v-if="isEmpty" :fixed="false" style="margin-top: 60upx;">无可用商品</tui-no-data>
- </view>
- </view>
- </template>
- <script>
- import { getCouponProductsApi } from '../../../api/anotherTFInterface'
- export default {
- name: 'CouponShopList',
- data() {
- return {
- isEmpty: false,
- couponProductsList: [],
- couponProductsTotal: 0,
- queryInfo: {
- page: 1,
- pageSize: 20,
- activityId: null,
- shopCouponId: null
- }
- }
- },
- onLoad(option) {
- this.queryInfo.activityId = option.activityId
- this.queryInfo.shopCouponId = option.shopCouponId
- this.getCouponProductsList()
- },
- methods: {
- getCouponProductsList(isLoadmore) {
- uni.showLoading()
- getCouponProductsApi(this.queryInfo).then((res) => {
- this.couponProductsTotal = res.data.total
- if (isLoadmore) {
- this.couponProductsList.push(...res.data.list)
- } else {
- this.couponProductsList = res.data.list
- }
- this.isEmpty = this.couponProductsList.length === 0
- uni.hideLoading()
- })
- .catch((e) => {
- uni.hideLoading()
- })
- }
- },
- onReachBottom() {
- if (this.couponProductsList.length < this.couponProductsTotal) {
- ++this.queryInfo.page
- this.getCouponProductsList(true)
- }
- }
- }
- </script>
- <style lang="less" scoped>
- input {
- padding-left: 80upx;
- }
- .coupon-shop-list-container {
- min-height: 100vh;
- box-sizing: border-box;
- .goodsDetails-box {
- width: 690upx;
- .goodsDetails {
- border-bottom: 1upx solid #EDEDED;
- padding-bottom: 30upx;
- .goodsName-box {
- width: 389upx;
- height: 85upx;
- }
- .goodsImg {
- width: 260upx;
- height: 260upx;
- }
- }
- }
- .spikeList {
- padding-top: 30rpx;
- border-bottom: 1upx solid #EDEDED;
- .listItem {
- display: flex;
- border-bottom: 1upx solid #EEEEEE;
- margin-bottom: 30upx;
- &:last-child {
- border-bottom: none;
- }
- .itemBox {
- width: 260upx;
- height: 260upx;
- margin-right: 30upx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .itemInfo {
- flex: 1;
- p {
- font-size: 26upx;
- color: #333333;
- line-height: 40upx;
- margin-bottom: 20upx;
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .number {
- color: #999999;
- font-size: 26upx;
- }
- }
- }
- }
- }
- </style>
|