seller-confirm.vue 5 KB
<template>
  <LayoutApp :show-back="true">
    <div class="body">
      <TitleComp txt="出售"></TitleComp>
      <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>
      <YohoButton :txt="txt" @click="onClick" :disable="!agree"></YohoButton>
    </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();
        }
        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: '创建订单失败',
          type: 'txt'
        }).show();
        return;
      }

      const { orderCode } = orderResult.data;

      const payListResult = await this.fetchPayList({
        order_code: orderCode
      });

      this.orderPay = this.$createOrderPayType({
        data: payListResult.data,
        price: this.fee.earnestMoneyStr,
        desc: '保证金',
        orderCode,
        onCloseAction() {
          vm.onClose();
          vm.$router.push({
            name: 'orderDetail',
            params: {
              owner: UserType.sell,
              code: orderCode
            }
          });
        },
        onPayAction() {
          vm.onPay();
        }
      }).show();
    },
    onClose() {
      console.log('close');
    },
    onPay() {
      console.log('pay');
    }
  }
};
</script>

<style lang="scss" scoped>
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.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;
}

.agree-wrapper {
  height: 60px;
  background-color: white;
  border-top: 1px solid #eee;
  padding: 0 40px;
  line-height: 60px;
}
</style>