seller-confirm.vue 5.46 KB
<template>
  <LayoutApp :show-back="true" title="确认出售">
    <div class="body">
      <ProductInfo :data="productDetail" class="product-info"></ProductInfo>
      <InputPrice @input="changePrice" :value="price" class="input-price" @on-blur="compute"></InputPrice>
      <OrderMargin class="order-item order-margin" :data="fee"></OrderMargin>
      <OrderFee class="order-item" :data="fee"></OrderFee>
      <AddressInfo :data="address" class="order-item"></AddressInfo>
    </div>
    <div class="footer">
      <OrderAgree :value="agree" @input="changeAgree" class="agree-wrapper" :desc="agreeDesc"></OrderAgree>
      <div class="btn-wrapper">
        <YohoButton :txt="txt" class="submit-btn" @click="onClick" :disable="!agree"></YohoButton>
      </div>
    </div>
  </LayoutApp>
</template>

<script>

import ProductInfo from './components/confirm/product';
import InputPrice from './components/confirm/input-price';
import AddressInfo from './components/confirm/address';
import TitleComp from './components/confirm/title';
import OrderMargin from './components/confirm/order-margin';
import OrderFee from './components/confirm/order-fee';
import OrderAgree from './components/confirm/agree';
import { Types, UserType } from 'store/order/order-confirm';
import { get } from 'lodash';

import { createNamespacedHelpers, mapState } from 'vuex';

const { mapState: mapOrderState, mapActions: mapOrderAction, mapMutations: mapOrderMutations } = createNamespacedHelpers('order/orderConfirm');

export default {
  name: 'OrderConfirm',
  props: ['productId', 'storageId'],
  components: {
    ProductInfo,
    AddressInfo,
    InputPrice,
    TitleComp,
    OrderMargin,
    OrderFee,
    OrderAgree
  },
  data() {
    return {
      txt: '提交',
      error: false,
      num: 1,
      agreeDesc: '有货卖家协议'
    };
  },
  mounted() {
    this.fetchUserStatus();
    this.fetchOrderAddress({ tabType: UserType.sell });
    this.$store.dispatch('product/getSelectedTradeProduct', {
      productId: this.productId,
      storageId: this.storageId
    });
  },
  computed: {
    ...mapOrderState(['address', 'fee', 'price', 'agree']),
    ...mapState({
      productDetail: state => {
        return {
          goodImg: get(state.product.selectedProductInfo, 'product.goods_list[0].image_list[0].image_url', ''),
          colorName: get(state.product.selectedProductInfo, 'product.goods_list[0].color_name', ''),
          sizeName: get(state.product.selectedProductInfo, 'size.size_name', ''),
          goodPrice: get(state.product.selectedProductInfo, 'size.least_price', ''),
        };
      }
    })
  },
  methods: {
    ...mapOrderAction(['fetchOrderAddress', 'fetchUserStatus', 'fetchOrderPrice', 'submitOrder', 'fetchPayList']),
    ...mapOrderMutations([Types.CHANGE_PRICE, Types.CHANGE_AGREE]),

    onClick() {
      this.submit();
    },
    compute() {
      return this.fetchOrderPrice({
        address_id: this.address.address_id,
        num: this.num,
        price: this.price,
        storage_id: this.storageId,
      }).then(result => {
        if (result.error) {
          this.error = result.error;
          this.$createToast({
            time: 1500,
            txt: result.error,
            type: 'txt'
          }).show();
          return;
        }
        this.error = false;
      });
    },
    changePrice(val) {
      this[Types.CHANGE_PRICE](val);
    },
    changeAgree(val) {
      this[Types.CHANGE_AGREE](val);
    },
    async submit() {
      const vm = this;

      await this.compute();

      if (this.error) {
        return;
      }

      const orderResult = await this.submitOrder({
        address_id: this.address.address_id,
        num: 1,
        price: this.price,
        storage_id: this.storageId,
      });

      if (orderResult.code !== 200) {
        this.$createToast({
          time: 1500,
          txt: orderResult.message,
          type: 'txt'
        }).show();
        return;
      }

      // 从定金中走了钱,不用支付宝
      if (orderResult.data.orderCode === 0) {
        this.$createToast({
          time: 1500,
          txt: orderResult.message,
          type: 'txt'
        }).show();
        return;
      }

      this.$createOrderPayType({
        price: this.fee.earnestMoneyStr,
        desc: '保证金',
        orderCode: orderResult.data.orderCode,
        extra: JSON.stringify({
          type: UserType.sell,
          back: {
            name: 'ProductDetail',
            params: {
              productId: this.productId
            }
          },
          forward: {
            name: 'SellPayOk',
            query: {
              orderCode: orderResult.data.orderCode
            }
          }
        }),
        onCloseAction() {
          vm.onClose(orderResult.data.orderCode);
        }
      }).show();
    },
    onClose(orderCode) {
      this.$router.replace({
        name: 'sellOrderDetail',
        params: {
          owner: UserType.sell,
          code: orderCode
        }
      });
    },
  }
};
</script>

<style lang="scss" scoped>
.body {
  height: 100%;
  margin: 0 40px;
  padding-bottom: 200px;
  overflow-y: auto;
}

.order-item {
  padding-top: 40px;
  padding-bottom: 40px;
}

.order-item + .order-item {
  border-top: 1px solid #eee;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #eee;
  z-index: 1;
}

.btn-wrapper {
  margin-bottom: 40px;
  padding: 0 40px;
}

.agree-wrapper {
  padding: 0 50px;
}

.submit-btn {
  height: 80px;
  line-height: 80px;
  font-size: 28px;
}

</style>