123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739 |
- <template>
- <view class="app-goods-list" :class="listClass">
- <block v-for="(goods, index) in list" :key="index">
- <!-- 列表模式 -->
- <template v-if="listStyle == 1">
- <view class="dir-left-nowrap goods-item-1" @click="jump(goods)">
- <view class="box-grow-0 cover-pic">
- <view class="out-dialog" v-if="goods.goods_stock == 0 && appSetting.is_show_stock == '1'">
- <image :src="appSetting.is_use_stock == '1' ? appImg.plugins_out : appSetting.sell_out_pic"></image>
- </view>
- <app-image :img-src="goods.cover_pic" borderRadius="16rpx" width="200rpx"
- height="200rpx"></app-image>
- </view>
- <view class="box-grow-1 dir-top-nowrap content main-between" style="padding: 28rpx 24rpx 24rpx 0">
- <view class="box-grow-0 goods-name"
- :class="(goods.is_level == 1 && goods.is_negotiable != 1 && is_show_member) || goods.vip_card_appoint.discount ? 't-omit' : 't-omit-two'"
- v-if="isShowGoodsName == 1">{{goods.name}}</view>
- <view class="dir-top-nowrap" :class="isShowGoodsName == 1 ? 'box-grow-0' : 'box-grow-1'">
- <view class="box-grow-0 cross-bottom"
- v-if="goods.is_level == 1 && goods.is_negotiable != 1 && is_show_member">
- <app-member-price :theme="theme" :price="goods.level_price"></app-member-price>
- </view>
- <app-sup-vip :is_vip_card_user="goods.vip_card_appoint.is_vip_card_user"
- v-if="goods.vip_card_appoint.discount"
- :discount="goods.vip_card_appoint.discount">
- </app-sup-vip>
- <view :class="isShowCart == 0 || goods.is_negotiable == 1 ? 'dir-left-nowrap' : 'dir-top-nowrap'"
- class="box-grow-1">
- <view class="box-grow-1 " :class="(goods.is_level == 1 && goods.is_negotiable != 1 && is_show_member) || goods.vip_card_appoint.discount ? 'dir-left-nowrap cross-center '+ themeText : 'dir-top-nowrap ' + themeText">
- <template v-if="goods.is_negotiable == 1">
- <view :class="themeText+ '-m-text ' + themeText">价格面议</view>
- </template>
- <template v-else>
- <app-price :theme="themeText" :price="`${goods.price}`" type="text-price-all"></app-price>
- </template>
- <view v-if="goods.sales && goods.is_negotiable != 1" :style="{marginLeft: (goods.is_level == 1 && goods.is_negotiable != 1 && is_show_member) || goods.vip_card_appoint.discount ? '14rpx' : '0rpx'}" class="box-grow-1 sales">{{goods.sales}}</view>
- </view>
- <view class="dir-left-nowrap cross-center sales-box">
- <view @click.stop="specification(goods)" class="box-grow-0 cross-center main-center cart-box"
- :class="themeText+ '-m-text ' + themeText"
- v-if="goods.is_negotiable != 1 && isShowCart == 1 && goods.goods_stock > 0">
- <app-cart-image class="goods-cart"></app-cart-image>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <!-- 一行两个 -->
- <template v-if="listStyle == 2">
- <view class="box-grow-0 goods-item-2 dir-top-nowrap" @click="jump(goods)"
- :class="index%2 === 0 ? 'mr-14' : ''">
- <view class="box-grow-0">
- <view class="out-dialog" v-if="goods.goods_stock == 0 && appSetting.is_show_stock == '1'">
- <image :src="appSetting.is_use_stock == '1' ? appImg.plugins_out : appSetting.sell_out_pic"></image>
- </view>
- <app-image :img-src="goods.cover_pic" width="344rpx" height="344rpx"
- :border-radius="`16rpx 16rpx 0 0`"></app-image>
- </view>
- <view class="box-grow-0 goods-name t-omit-two padding" v-if="isShowGoodsName == 1">
- <span v-if="sign === 'pick'" class="dir-tag-def" :class="themeText + '-m-text ' + themeText + ' ' + themeText + '-m-back-o '">N元任选</span>
- {{goods.name}}
- </view>
- <view v-if="sign === 'pick'">
- <text class="des-price" style="margin-left: 24rpx;margin-top: 15rpx;" :class="themeText + '-m-text ' + themeText + '-m-border ' + themeText">
- {{detail.rule_price}}元选{{detail.rule_num}}件
- </text>
- </view>
- <view class="box-grow-1 dir-top-nowrap main-right">
- <view class="box-grow-0 cross-bottom padding"
- v-if="goods.is_level == 1 && goods.is_negotiable != 1 && is_show_member">
- <app-member-price :theme="theme" :price="goods.level_price"></app-member-price>
- </view>
- <app-sup-vip :is_vip_card_user="goods.vip_card_appoint.is_vip_card_user" margin="4rpx 24rpx 0"
- v-if="goods.vip_card_appoint.discount"
- :discount="goods.vip_card_appoint.discount"></app-sup-vip>
- <view class="box-grow-0 dir-left-nowrap content padding">
- <view class="box-grow-0">
- <template v-if="goods.is_negotiable == 1">
- <view :class="themeText + '-m-text ' + themeText">价格面议</view>
- </template>
- <template v-else>
- <app-price :theme="themeText" :price="`${goods.price}`" type="text-price-all"></app-price>
- </template>
- </view>
- <template v-if="goods.is_negotiable != 1 && sign != 'pick'">
- <view class="dir-left-nowrap cross-center sales-box box-grow-1"
- :class="[isShowCart == 1 ? '' : 'main-right']"
- v-if="goods.sales">
- <view class="sales">{{goods.sales}}</view>
- </view>
- <view v-if="isShowCart == 1 && goods.goods_stock > 0" :class="[goods.sales ? 'box-grow-0' : 'box-grow-1 main-right']">
- <app-cart-image @click.stop.native="specification(goods)"></app-cart-image>
- </view>
- </template>
- </view>
- </view>
- </view>
- </template>
- <!-- 一行三个 -->
- <template v-if="listStyle == 3">
- <view class="box-grow-0 goods-item-3 dir-top-nowrap" @click="jump(goods)"
- :class="index%3 === 2 ? '' : 'mr-8'">
- <view class="box-grow-0">
- <view class="out-dialog" v-if="goods.goods_stock == 0 && appSetting.is_show_stock == '1'">
- <image :src="appSetting.is_use_stock == '1' ? appImg.plugins_out : appSetting.sell_out_pic"></image>
- </view>
- <app-image :img-src="goods.cover_pic" width="238rpx" height="238rpx"
- :border-radius="`16rpx 16rpx 0 0`"></app-image>
- </view>
- <view class="box-grow-0 goods-name t-omit-two padding" v-if="isShowGoodsName == 1">{{goods.name}}</view>
- <view class="box-grow-1 dir-top-nowrap main-right">
- <view class="box-grow-0 cross-bottom padding"
- v-if="goods.is_level == 1 && goods.is_negotiable != 1 && is_show_member">
- <app-member-price :theme="theme" :price="goods.level_price"></app-member-price>
- </view>
- <app-sup-vip :is_vip_card_user="goods.vip_card_appoint.is_vip_card_user" margin="4rpx 20rpx 0"
- v-if="goods.vip_card_appoint.discount"
- :discount="goods.vip_card_appoint.discount"
- ></app-sup-vip>
- <view :class="theme" class="padding box-grow-0">
- <template v-if="goods.is_negotiable == 1">
- <view :class="themeText + '-m-text ' + themeText">价格面议</view>
- </template>
- <template v-else>
- <app-price :theme="themeText" :price="`${goods.price}`" type="text-price-all"></app-price>
- </template>
- </view>
- <view class="sales-box cross-bottom box-grow-1">
- <view v-if="goods.sales && goods.is_negotiable != 1" class="box-grow-1 sales">{{goods.sales}}</view>
- <view v-if="goods.is_negotiable != 1 && isShowCart == 1 && goods.goods_stock > 0" class="box-grow-0 goods-cart">
- <app-cart-image @click.stop.native="specification(goods)"></app-cart-image>
- </view>
- </view>
- </view>
- </view>
- </template>
- </block>
- <view class="attr">
- <app-attr ref="attr"
- :goods="item"
- :select-attr="selectAttr"
- :attr-group-list="attrGroup"
- :show="show"
- :cartShow="cartShow"
- :buyText="buyText"
- :buyClick="buyBool"
- :plugin="plugin"
- :previewUrl="previewUrl"
- :submitUrl="submitUrl"
- @buyClick="buyClick"
- @attrtap="onAttr"
- @attr="attr"
- :theme="themeText"
- >
- <view slot="extra" v-if="detail_sign === 'pintuan'">
- <app-pt-attr
- v-if="pt"
- :theme="themeText"
- :pintuan_groups="item.pintuan_groups"
- :selectGroupAttrId="selectGroupAttrId"
- @click="setGroupAttrID"
- ></app-pt-attr>
- </view>
- </app-attr>
- </view>
- <view class="pt-btn" v-if="detail_sign === 'pintuan' && show_pt">
- <app-iphone-x>
- <view class="pintuan dir-left-nowrap" slot="empty-area">
- <view class="single box-grow-1 dir-top-nowrap" :class="themeText + '-s-back ' + themeText + ' ' + themeText + '-m-text '" @click="individual" v-if="item.pintuanGoods.is_alone_buy">
- <text class="app-text">单独购买</text>
- </view>
- <view class="tuan box-grow-1 dir-top-nowrap" :class="themeText+ '-m-back ' + themeText" @click="multiplayer">
- <text class="app-text">拼团</text>
- </view>
- </view>
- </app-iphone-x>
- </view>
- </view>
- </template>
- <script>
- import {mapState, mapGetters} from "vuex";
- import appPrice from '../../page-component/goods/app-price.vue';
- import appAttr from '../app-attr/app-attr.vue';
- import appPtAttr from '../app-pt-attr/app-pt-attr.vue';
- import appMemberPrice from "../app-member-mark/app-member-price.vue";
- import appSupVip from '../app-sup-vip/app-sup-vip.vue';
- import appIphoneX from '../../basic-component/app-iphone-x/app-iphone-x.vue';
- import allPay from '../../../core/all-pay.js';
- export default {
- name: "app-goods-list",
- components: {
- 'app-price': appPrice,
- 'app-attr': appAttr,
- 'app-pt-attr': appPtAttr,
- 'app-member-price': appMemberPrice,
- 'app-sup-vip': appSupVip,
- 'app-iphone-x': appIphoneX,
- },
- props: {
- listStyle: {
- type: String,
- default() {
- return '2';
- }
- },
- list: Array,
- previewUrl: String,
- submitUrl: String,
- theme: Object,
- is_show_member: {
- type: Boolean,
- default() {
- return true;
- }
- },
- sign: String,
- detail: Object
- },
- data() {
- return {
- show: 0,
- buyText: '立即购买',
- detail_sign: '',
- goods_id: '',
- cartShow: 1,
- plugin: '',
- goods_list: [],
- buyBool: false,
- cur_index: 0,
- item: null,
- show_pt: false,
- pt: true,
- loading: false,
- selectAttr: {},
- appAttr: {},
- attrGroup: [],
- selectGroupAttrId: -1,
- }
- },
- computed: {
- ...mapState({
- appImg: state => state.mallConfig.__wxapp_img.mall,
- appSetting: state => state.mallConfig.mall.setting,
- isShowCart: state => state.mallConfig.mall.setting.is_show_cart,
- isShowGoodsName: state => state.mallConfig.mall.setting.is_show_goods_name,
- }),
- themeText:function() {
- return this.theme.back[0]
- },
- ...mapGetters('mallConfig', {
- getVideo: 'getVideo'
- }),
- listClass() {
- if (this.listStyle == 3) {
- return `list-style-3 dir-left-wrap`;
- } else if (this.listStyle == 2) {
- return `list-style-2 dir-left-wrap`;
- } else {
- return ``;
- }
- }
- },
- watch: {
- appAttr: {
- handler(data) {
- if (data.display === 'none') {
- this.show_pt = false;
- // this.selectAttr = {};
- }
- }
- }
- },
- methods: {
- setGroupAttrID(id) {
- this.selectGroupAttrId = id;
- this.selectAttr = {};
- this.request_pt(id);
- },
- multiplayer() {
- if (this.$user.isLogin() && this.$store.state.user.info) {
- let member_level =this.$store.state.user.info.identity.member_level;
- if(member_level<this.detail.member_level){
- uni.showToast({
- title: '您的会员等级未达到'+this.detail.member_name+',继续加油哟。。。',
- icon: 'none'
- });
- return;
- }
-
- }
- let that = this;
- if (that.pt) {
- if (that.selectAttr && Object.keys(that.selectAttr).length === 0) {
- uni.showToast({
- title: '请选择规格',
- icon: "none"
- })
- } else if (that.selectAttr && Object.keys(that.selectAttr).length > 0) {
- let mch_id = that.item.mch_id;
- let mch_list = [];
- let goods = {
- id: that.item.id,
- attr: [],
- num: that.appAttr.number,
- goods_attr_id: that.selectAttr.id,
- cart_id: 0,
- };
- for (let i = 0; i < that.selectAttr.attr_list.length; i++) {
- let attr = {
- attr_id: that.selectAttr.attr_list[i].attr_id,
- attr_group_id: that.selectAttr.attr_list[i].attr_group_id,
- };
- goods.attr.push(attr);
- }
- mch_list.push({
- mch_id: mch_id,
- pintuan_order_id: 0,
- pintuan_group_id: that.selectGroupAttrId,
- goods_list: [goods],
- });
- uni.navigateTo({
- url: `/pages/order-submit/order-submit?mch_list=${JSON.stringify(mch_list)}&preview_url=${encodeURIComponent(that.$api.pt.order_preview)}&submit_url=${encodeURIComponent(that.$api.pt.order_submit)}&order_page_url=/plugins/pt/order/order&plugin=pt`
- });
- }
- } else {
- that.selectAttr = {};
- that.pt = true;
- that.request_pt(that.selectGroupAttrId);
- const temp = setInterval(() => {
- if (that.loading) {
- clearInterval(temp);
- if(that.item.pintuan_groups.length == 1) {
- that.multiplayer();
- }
- return;
- }
- }, 500);
- }
- },
- buyClick(data) {
- allPay(data, this.detail_sign, this, this.goods_list[this.cur_index]);
- },
- attr(data) {
- this.appAttr = data;
- },
- specification(goods) {
- this.goods_id = goods.id;
- this.detail_sign = goods.sign;
- if(this.detail_sign != 'pintuan') {
- this.item = goods;
- this.attrGroup = goods.attr_groups;
- this.show = Math.random();
- }
- switch (this.detail_sign) {
- case "advance":
- this.cartShow = 0;
- this.buyText = '支付定金';
- this.buyBool = true;
- break;
- case "booking":
- this.cartShow = 0;
- this.buyText = '立即预约';
- this.plugin = 'booking';
- break;
- case "pintuan":
- this.$request({
- url: this.$api.pt.detail,
- data: {
- id: this.goods_id,
- group_id: 0,
- }
- }).then((res) => {
- this.item = res.data.detail;
- this.selectGroupAttrId = this.item.pintuan_groups[0].id;
- this.attrGroup = this.item.attr_groups;
- this.show = Math.random();
- this.show_pt = true;
- this.request_pt(this.selectGroupAttrId);
- });
- break;
- case "integral_mall":
- this.cartShow = 0;
- this.buyText = '立即兑换';
- break;
- case "step":
- this.cartShow = 0;
- this.buyText = '立即兑换';
- break;
- case "gift":
- this.cartShow = 0;
- this.buyBool = true;
- this.buyText = '加入礼包';
- break;
- default:
- break;
- }
- },
- async request_pt(group_id) {
- try {
- this.loading = false;
- uni.showLoading();
- const response = await this.$request({
- url: this.$api.pt.detail,
- data: {
- id: this.goods_id,
- group_id: group_id,
- }
- });
- if (response.code === 0) {
- uni.hideLoading();
- this.item = response.data.detail;
- this.attrGroup = this.item.attr_groups;
- this.loading = true;
- }
- } catch(e) {
- throw new Error(e);
- }
- },
- buy() {
- let goods = this.item;
- let number = this.appAttr.number;
- let select_attr = this.selectAttr;
- let goods_attr_id = select_attr.id;
- let attr = [];
- for (let i in select_attr.attr_list) {
- attr.push({
- attr_id: select_attr.attr_list[i].attr_id,
- attr_group_id: select_attr.attr_list[i].attr_group_id,
- });
- }
- let mch_list = [];
- let mch = {
- mch_id: goods.mch_id ? goods.mch_id : 0,
- goods_list: []
- };
- mch.goods_list.push({
- id: goods.id,
- attr: attr,
- num: number,
- cat_id: 0,
- goods_attr_id: goods_attr_id
- });
- mch_list.push(mch);
- uni.navigateTo({
- url: '/pages/order-submit/order-submit?mch_list=' + JSON.stringify(mch_list),
- })
- },
- individual() {
- if (this.$user.isLogin() && this.$store.state.user.info) {
- let member_level =this.$store.state.user.info.identity.member_level;
- if(member_level<this.detail.member_level){
- uni.showToast({
- title: '您的会员等级未达到'+this.detail.member_name+',继续加油哟。。。',
- icon: 'none'
- });
- return;
- }
-
- }
- let that = this;
- if (that.pt) {
- that.pt = false;
- that.selectAttr = {};
- that.request_pt(0);
- }
- const temp = setInterval(() => {
- if (that.loading) {
- clearInterval(temp);
- if (Object.keys(that.selectAttr).length === 0) {
- uni.showToast({
- title: '请选择规格',
- icon: "none"
- })
- } else {
- that.buy();
- }
- return;
- }
- }, 500);
- },
- jump(data) {
- // #ifndef MP-BAIDU
- if (data.video_url && this.getVideo == 1) {
- uni.navigateTo({
- url: `/pages/goods/video?goods_id=${data.id}&sign=${data.sign}`
- });
- } else {
- uni.navigateTo({
- url: data.page_url
- });
- }
- // #endif
- // #ifdef MP-BAIDU
- uni.navigateTo({
- url: data.page_url
- });
- // #endif
- },
- onAttr(data) {
- if (data !== null) {
- this.selectAttr = data;
- } else {
- this.selectAttr = {};
- }
- },
- },
- created() {
- }
- }
- </script>
- <style scoped lang="scss">
- .attr {
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: 1503;
- }
- .pintuan {
- width: #{750upx};
- height: #{110upx};
- .single {
- text-align: center;
- line-height: #{110upx};
- }
- .tuan {
- color: #ffffff;
- text-align: center;
- line-height: #{110upx};
- }
- }
- .app-goods-list {
- font-size: $uni-font-size-general-one;
- color: $uni-important-color-black;
- .sales {
- color: $uni-general-color-two;
- }
- .goods-item-1 {
- padding: #{16rpx} #{24rpx};
- background-color: #ffffff;
- border-top: #{1rpx} solid #e2e2e2;
- .cover-pic {
- border-radius: #{16rpx};
- margin-right: #{20rpx};
- position: relative;
- .out-dialog {
- width: #{200rpx};
- height: #{200rpx};
- position: absolute;
- top: 0;
- left: 0;
- z-index: 10;
- background-color: rgba(0,0,0,.5);
- image {
- width: #{200rpx};
- height: #{200rpx};
- }
- }
- }
- .content {
- padding: #{8rpx} 0;
- .sales {
- font-size: #{20rpx};
- }
- }
- .cart {
- width: #{50rpx};
- height: #{50rpx};
- display: block;
- }
- .sales-box {
- position: relative;
- }
- .cart-box {
- position: absolute;
- width:#{56rpx};
- height:#{56rpx};
- border-radius: 50%;
- border: 1px solid;
- right: #{10rpx};
- bottom:#{5rpx};
- }
- }
- &.list-style-2 {
- padding: 0 #{24rpx};
- }
- .goods-item-2 {
- width: #{344rpx};
- margin-top: #{14rpx};
- background-color: #ffffff;
- border-radius: #{16rpx};
- overflow: hidden;
- position: relative;
- .out-dialog {
- border-top-left-radius: #{16rpx};
- border-top-right-radius: #{16rpx};
- width: #{344rpx};
- height: #{344rpx};
- position: absolute;
- top: 0;
- left: 0;
- z-index: 10;
- background-color: rgba(0,0,0,.5);
- image {
- width: #{344rpx};
- height: #{344rpx};
- }
- }
- &.mr-14 {
- margin-right: #{14rpx};
- }
- .goods-name {
- padding-top: #{20rpx};
- line-height: 1.4;
- margin-bottom: #{8rpx};
- }
- .content {
- margin-bottom: #{14rpx};
- }
- .padding {
- padding-left: #{24rpx};
- padding-right: #{24rpx};
- }
- .sales {
- font-size: #{20rpx};
- }
- .sales-box {
- margin-left: #{12rpx};
- }
- }
- &.list-style-3 {
- padding: 0 #{10rpx};
- }
- .goods-item-3 {
- width: #{238rpx};
- margin-top: #{8rpx};
- background-color: #ffffff;
- border-radius: #{16rpx};
- overflow: hidden;
- position: relative;
- .out-dialog {
- border-top-left-radius: #{16rpx};
- border-top-right-radius: #{16rpx};
- width: #{238rpx};
- height: #{238rpx};
- position: absolute;
- top: 0;
- left: 0;
- z-index: 10;
- background-color: rgba(0,0,0,.5);
- image {
- width: #{238rpx};
- height: #{238rpx};
- }
- }
- &.mr-8 {
- margin-right: #{8rpx};
- }
- .goods-name {
- line-height: 1.4;
- }
- .padding {
- padding-left: #{20rpx};
- padding-right: #{20rpx};
- }
- .sales {
- font-size: #{20rpx};
- padding-top: #{6rpx};
- }
- & > view:last-child {
- padding-bottom: #{20rpx};
- }
- .sales-box {
- padding: 0 #{20rpx};
- }
- }
- .goods-cart {
- width: #{36rpx};
- height: #{36rpx};
- }
- .goods-price {
- font-size: #{32rpx};
- }
- .sales-box {
- /*position: relative;*/
- }
- }
- .dir-tag-def {
- padding: 0 #{10rpx};
- margin-right: #{8rpx};
- font-size: $uni-font-size-weak-two;
- border-radius: #{28rpx};
- }
- .des-price {
- display: inline-block;
- padding: #{4rpx 4rpx};
- border: #{1rpx} solid;
- border-radius: #{8rpx};
- font-size: #{20rpx};
- line-height: 1;
- transform: rotateZ(360deg);
- }
- .pt-btn {
- position: relative;
- z-index: 1600;
- }
- </style>
|