order-confirm.js 2.08 KB
import { get, find } from 'lodash';

export const Types = {
  FETCH_ORDER_ADDRESS: 'FETCH_ORDER_ADDRESS',
  FETCH_ORDER_USER_STATUS: 'FETCH_ORDER_USER_STATUS',
  FETCH_ORDER_FEE: 'FETCH_ORDER_FEE',
  CHANGE_PRICE: 'CHANGE_PRICE',
  CHANGE_AGREE: 'CHANGE_AGREE'
};

export default function() {
  return {
    namespaced: true,
    state: {
      productDetail: {},
      fetchProductDetail: false,
      address: {},
      fee: {
        income: '',
        bankTransferFee: '',
        platformFee: {
          amount: '',
          appraiseFee: '',
          goodsPaymentRatePercent: '',
          packageFee: '',
          payChannelPercentage: '',
          serviceFee: ''
        }
      },
      alipayStatus: false,
      userStatus: false,
      price: '',
      agree: false
    },
    mutations: {
      [Types.FETCH_ORDER_ADDRESS](state, data) {
        state.address = data;
      },
      [Types.FETCH_ORDER_FEE](state, data) {
        state.fee = data;
      },
      [Types.CHANGE_PRICE](state, data) {
        state.price = data;
      },
      [Types.CHANGE_AGREE](state, data) {
        state.agree = data;
      }
    },
    actions: {
      async fetchOrderAddress({ commit }, payload) {
        const orderCount = await this.$api.get('/api/order/confirm/count', payload);

        if (get(orderCount, 'data.cnt', 0)) {
          const addressInfo = await this.$api.get('/api/order/confirm/address');

          const address = find(get(addressInfo, 'data', []), { is_default: 'Y' });

          commit(Types.FETCH_ORDER_ADDRESS, address);
        }
      },

      async fetchOrderPrice({ commit }, payload) {
        const order = await this.$api.post('/api/order/confirm/compute', payload);

        if (order.code !== 200) {
          return {
            error: order.message
          };
        }

        commit(Types.FETCH_ORDER_FEE, order.data);
        return {};
      },

      async fetchUserStatus() {
        const alipayStatus = await this.$api.get('/api/order/alipay/status');
        const userStatus = await this.$api.get('/api/order/user/status');
      }
    },
    getters: {},
  };
}