123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542 |
- <template>
- <app-layout>
- <view class="pond">
- <view class="bulletin dir-left-nowrap">
- <text class="bulletin-text">结算规则:选购商品数等于任选商品数的倍数</text>
- <view class="edit" v-if="!edit" @click="setEdit(true)">编辑</view>
- <view class="edit" v-else @click="setEdit(false)">完成</view>
- </view>
- <view class="list">
- <view class="empty" v-if="pond.length === 0">
- <view class="cart">
- <image src="/static/image/icon/nav-icon-cart.png"></image>
- </view>
- <text>凑单池还是空的哦</text>
- </view>
- <view class="item dir-left-nowrap" v-for="(item) in pond" :key="item.id" v-else>
- <view class="radio dir-top-nowrap main-center cross-center" @click="changeActive(item)" v-if="item.pick_activity_id == pick_activity_id && !edit">
- <view class="radio-single" v-if="!item.is_active"></view>
- <view class="radio-single-active" v-else :class="getTheme + '-m-back ' + getTheme"></view>
- </view>
- <view class="radio dir-top-nowrap main-center cross-center" @click="changeActive(item)" v-if="edit">
- <view class="radio-single" v-if="!item.is_active"></view>
- <view class="radio-single-active" v-else :class="getTheme + '-m-back ' + getTheme"></view>
- </view>
- <view class="radio dir-top-nowrap main-center cross-center" v-else-if="item.pick_activity_id != pick_activity_id && !edit">
- <view class="radio-lapse">
- 失效
- </view>
- </view>
- <view class="content dir-left-nowrap">
- <image class="cover-pic" :src="item.attrs.pic_url ? item.attrs.pic_url : item.goods.cover_pic "></image>
- <view class="text dir-top-nowrap main-between">
- <text class="name t-omit-two">
- {{item.goods.name}}
- </text>
- <view class="it-attr">
- <text v-for="(it, i) in item.attrs.attr" :key="i">
- {{it.attr_group_name}}:{{it.attr_name}}<text class="empty-nbsp"></text>
- </text>
- </view>
- <view class="dir-left-nowrap main-between cross-center">
- <template v-if="item.pick_activity_id == pick_activity_id">
- <text class="price" :class="getTheme + '-m-text ' + getTheme">{{item.attrs.price}}</text>
- <view class="aob dir-left-nowrap main-around cross-center">
- <view class="icon" @click="_calcValue(item, 'minus')" :class="{'app-unreducible': item.num == 1, 'app-can-be-reduced': item.num > 1}"></view>
- <input v-model="item.num" @change="editInput(item)" type="number">
- <view class="icon" @click="_calcValue(item, 'plus')" :class="[{'app-not-add': item.num >= item.attrs.stock, 'app-can-add': item.num < item.attrs.stock}, getTheme+ '-m-back', getTheme]"></view>
- </view>
- </template>
- <view v-else style="font-size: 25rpx;">
- 此活动已过期,无法购买
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="safe-area-inset-bottom u-bottom-fixed">
- <view class="settlement dir-left-nowrap">
- <view class="all-price dir-left-nowrap">
- <view class="all-select dir-left-nowrap main-center cross-center" @click="selectAll">
- <view class="all-radio">
- <view class="radio-single" v-if="!is_active"></view>
- <view class="radio-single-active" :class="getTheme + '-m-back ' + getTheme" v-else></view>
- </view>
- <text class="all-text">全选</text>
- </view>
- <view class="red-text dir-top-nowrap main-center" v-if="!edit">
- <text class="all-price-text" :class="getTheme + '-m-text ' + getTheme">总计:¥{{all_price}}</text>
- <text class="other-good" :class="getTheme + '-m-text ' + getTheme" v-if="stillNeed !== 0">还需添加{{stillNeed}}件商品</text>
- </view>
- </view>
- <view class="button" :class="[{'disabled': stillNeed !== 0 , 'disabled': all_num === 0}, getTheme + '-m-back', getTheme]" @click="buy" v-if="!edit">
- 去结算
- </view>
- <view class="delete" :class="getTheme + '-m-text ' + getTheme" @click="del()" v-else>
- <view>
- 删除
- </view>
- </view>
- </view>
- </view>
- </view>
- </app-layout>
- </template>
- <script>
- import {mapGetters} from "vuex";
- export default {
- name: "pond",
- data() {
- return {
- pond: [],
- step: 1,
- pick_activity_id: 0,
- pay_pond: [],
- all_price: 0,
- is_active: false,
- rule_num: 0,
- edit: false,
- stillNeed: 0,
- buy_goods_list: [],
- all_num: 0
- }
- },
- computed: {
- ...mapGetters('mallConfig', {
- getTheme: 'getTheme',
- }),
- },
- onLoad(options) {
- this.pick_activity_id = options.pick_activity_id;
- this.rule_num = options.rule_num;
- },
- onShow() {
- this.getCart();
- },
- methods: {
- changeActive(item) {
- item.is_active = !item.is_active;
- },
- _calcValue(item, type) {
- const scale = this._getDecimalScale();
- let value = item.num * scale;
- let step = this.step * scale;
- if (type === "minus") {
- value -= step;
- } else if (type === "plus") {
- value += step;
- }
- if (value < 1 || value > item.attrs.stock) {
- return;
- }
- item.num = String(value / scale);
- this.editList();
- // this.$storage.setStorageSync('PICK', this.pond);
- },
- editInput() {
- this.editList();
- },
- _getDecimalScale() {
- let scale = 1;
- // 浮点型
- if (~~this.step !== this.step) {
- scale = Math.pow(10, (this.step + "").split(".")[1].length);
- }
- return scale;
- },
- selectAll() {
- this.is_active = !this.is_active;
- for (let i = 0; i < this.pond.length; i++) {
- if (this.pond[i].pick_activity_id == this.pick_activity_id && !this.edit) {
- this.pond[i].is_active = this.is_active;
- } else if (this.edit) {
- this.pond[i].is_active = this.is_active;
- }
- }
- },
- buy() {
- let data = [];
- this.buy_goods_list = [];
- let obj = {
- mch_id: '0',
- goods_list: this.buy_goods_list,
- pick_activity_id: this.pick_activity_id
- };
- data.push(obj);
- for (let i = 0; i < this.pay_pond.length; i++) {
- this.buy_goods_list.push({
- id: this.pay_pond[i].goods_id,
- attr: this.pay_pond[i].attrs.attr,
- num: this.pay_pond[i].num,
- cat_id:0,
- cart_id: this.pay_pond[i].id,
- goods_attr_id: this.pay_pond[i].attrs.id
- });
- }
- if (this.stillNeed !== 0) {
- return;
- }
- if (this.buy_goods_list.length === 0) {
- return;
- }
- let str = `/pages/order-submit/order-submit?mch_list=${JSON.stringify(data)}&preview_url=${encodeURIComponent(this.$api.pick.order_preview)}&submit_url=${encodeURIComponent(this.$api.pick.order_submit)}`;
- uni.navigateTo({
- url: str
- });
- },
- setEdit(boolean) {
- if (boolean === false) {
- for (let i = 0; i < this.pond.length; i++) {
- this.pond[i].is_active = false;
- }
- }
- this.is_active = false;
- this.edit = boolean;
- },
- async del() {
- let data = JSON.parse(JSON.stringify(this.pay_pond));
- let list = [];
- for (let i = 0; i < data.length; i++) {
- list.push( data[i].id);
- }
- const e = await this.$request({
- url: this.$api.pick.delete,
- method: 'post',
- data: {
- cart_id_list: JSON.stringify(list),
- }
- });
- if (e.code === 0) {
- this.is_active = false;
- this.getCart();
- }
- },
- async getCart() {
- const e = await this.$request({
- url: this.$api.pick.list
- });
- if (e.code === 0) {
- let list = e.data.list;
- for (let i = 0; i < list.length; i++) {
- list[i].is_active = false;
- }
- this.pond = list;
- }
- },
- async editList() {
- let data = JSON.parse(JSON.stringify(this.pond));
- let list = [];
- for (let i = 0; i < data.length; i++) {
- list.push({
- attr: data[i].attr_id,
- goods_id: data[i].goods_id,
- num: data[i].num
- })
- }
- const e = await this.$request({
- url: this.$api.pick.edit,
- method: 'post',
- data: {
- list: JSON.stringify(list),
- }
- });
- }
- },
- watch: {
- pond: {
- handler(data) {
- this.pay_pond = [];
- let all_price = 0;
- let all_active = 0;
- this.all_num = 0;
- for (let i = 0; i < data.length; i++) {
- if (data[i].is_active) {
- this.pay_pond.push(data[i]);
- all_active++;
- this.all_num += Number(data[i].num);
- all_price += data[i].num*data[i].attrs.price;
- }
- }
- if (all_active === data.length) {
- this.is_active = true;
- if (data.length === 0) {
- this.is_active = false;
- }
- }
- if (this.all_num%this.rule_num === 0) {
- this.stillNeed = 0;
- } else {
- this.stillNeed = this.rule_num - (this.all_num%this.rule_num);
- }
- this.all_price = all_price.toFixed(2);
- },
- deep: true
- }
- },
- }
- </script>
- <style scoped lang="scss">
- .pond {
- padding-bottom: #{100upx};
- }
- .settlement {
- height: #{110upx};
- width: #{750upx};
- background-color: #ffffff;
- border-top: #{1upx} solid #e2e2e2;
- }
- .button {
- width: #{250upx};
- height: #{100upx};
- font-size: #{32upx};
- color: #ffffff;
- text-align: center;
- line-height: #{100upx};
- }
- .all-price {
- width: #{500upx};
- height: #{100upx};
- }
- .bulletin {
- height: #{70upx};
- width: #{750upx};
- background-color: #ffffff;
- position: fixed;
- top: 0;
- }
- .edit {
- width: #{116upx};
- height: #{70upx};
- line-height: #{70upx};
- font-size: #{25upx};
- text-align: center;
- }
- .bulletin-text {
- font-size: #{25upx};
- line-height: #{70upx};
- width: #{610upx};
- color: #999999;
- margin-left: #{24upx};
- }
- .list {
- margin-top: #{100upx};
- background-color: #ffffff;
- }
- .item {
- width: #{750upx};
- border-bottom: #{1upx} solid #e2e2e2;
- height: #{218upx};
- padding: #{30upx 0 15upx 0};
- }
- .radio {
- width: #{85upx};
- height: #{156upx};
- }
- .radio-single {
- width: #{40rpx};
- height: #{40rpx};
- border-radius: 50%;
- background-color: white;
- border: #{1rpx} solid #e2e2e2;
- }
- .radio-single-active {
- width: #{40rpx};
- height: #{40rpx};
- border-radius: 50%;
- background-repeat: repeat;
- background-size: 100% 100%;
- background-image: url("../../../static/image/icon/icon-checkbox-checked.png");
- }
- .content {
- width: #{665upx};
- padding-right: #{25upx};
- }
- .cover-pic {
- width: #{156upx};
- height: #{156upx};
- }
- .text {
- margin-left: #{20upx};
- height: #{171upx};
- width: #{440upx};
- }
- .text>view {
- width: 100%;
- }
- .name {
- font-size: #{28upx};
- color: #3f3f3f;
- }
- .price {
- font-size: #{32upx};
- }
- .price:before {
- content: '¥';
- font-size: #{24upx};
- }
- .aob {
- height: #{60upx};
- input {
- height: #{60rpx};
- width: #{88rpx};
- font-size: #{21rpx};
- color: #353535;
- text-align: center;
- }
- }
- .app-unreducible {
- background-image: url("../../../static/image/cart/unreducible.png");
- }
- .app-not-add {
- background-image: url("../../../static/image/cart/can-add.png");
- }
- .app-can-add {
- background-image: url("../../../static/image/icon/add-but.png");
- }
- .app-can-be-reduced {
- background-image: url("../../../static/image/icon/subtract.png");
- }
- .all-select {
- width: #{150upx};
- height: 100%;
- }
- .all-text {
- font-size: #{26upx};
- color: #3f3f3f;
- margin-left: #{5upx};
- }
- .all-radio {
- margin-right: #{5upx};
- }
- .all-price-text {
- font-size: #{26upx};
- line-height: 1;
- }
- .red-text {
- width: #{350upx};
- }
- .other-good {
- font-size: #{21upx};
- margin-top: #{10upx};
- line-height: 1;
- }
- .delete {
- width: #{250upx};
- height: #{100upx};
- position: relative;
- >view {
- font-size: #{24upx};
- text-align: center;
- width: #{140upx};
- height: #{64upx};
- line-height: #{64upx};
- border-radius: #{28upx};
- border: #{1upx} solid;
- position: absolute;
- right: #{24upx};
- top: #{18upx};
- }
- }
- .it-attr {
- font-size: #{22upx};
- color: #999999;
- }
- .disabled {
- background-color: #999999;
- }
- .empty {
- margin-top: #{150upx};
- width: #{750upx};
- /*position: relative;*/
- text-align: center;
- >text {
- color: #999999;
- font-size: #{26upx};
- position: absolute;
- top: #{325upx};
- transform: translateX(-50%);
- }
- }
- .cart {
- width: #{160upx};
- height: #{160upx};
- border-radius: 50%;
- background-color: #dedede;
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- >image {
- width: #{59upx};
- height: #{59upx};
- position: absolute;
- left: 50%;
- top:50%;
- transform: translate(-50%, -50%);
- }
- }
- .empty-nbsp {
- width: #{10upx};
- display: inline-block;
- }
- .radio-lapse {
- height: #{32upx};
- width: #{64upx};
- border-radius: #{16upx};
- background-color: #cdcdcd;
- font-size: #{23upx};
- color: #ffffff;
- line-height: #{32upx};
- text-align: center;
- }
- .icon {
- height: #{44rpx};
- width: #{44rpx};
- background-size: 100% 100%;
- background-repeat: no-repeat;
- }
- .u-bottom-fixed {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- z-index: 1602;
- background-color: #ffffff;
- }
- </style>
|