order-logistics-info.vue 492 Bytes
<template>
  <div class="logistics-wrapper">
    物流信息
  </div>
</template>

<script>
import { createNamespacedHelpers } from "vuex";
const { mapActions } = createNamespacedHelpers("order/logisticsInfo");

export default {
  computed: {},
  mounted() {
    this.fetchLogisticInfo(this.$route.params);
  },
  methods: {
    ...mapActions(["fetchLogisticInfo"])
  }
};
</script>

<style lang="scss" scoped>
.logistics-wrapper {
  height: 100vh;
  -webkit-box-orient: vertical;
}
</style>