order-list.vue 2.12 KB
<template>
  <div class="content-wrapper">
    <status-nav />
    <scroll
      @pulling-up="fetchMore"
      :options="options"
      :data="orderList"
      class="order-list-scroll-wrap"
    >
      <ul class="list-wrapper">
        <li v-for="order in orderList" :key="order.orderCode">
          <order-list-item :order="order" />
          <!-- 订单操作 -->
          <order-actions :actionList="order.buttons" :code="order.orderCode" />
        </li>
      </ul>
      <Modal v-model="isShowModal" @on-sure="() => {}"></Modal>
    </scroll>
  </div>
</template>

<script>
import { Button, Scroll } from "cube-ui";
import { createNamespacedHelpers } from "vuex";
import OrderListItem from "./components/order-list-item";
import StatusNav from "./components/status-nav";
import Modal from "../components/confirm/modal";
import OrderActions from "../components/order-actions";

const { mapActions, mapState } = createNamespacedHelpers("order/orderList");

export default {
  components: {
    Button,
    Scroll,
    OrderListItem,
    StatusNav,
    Modal,
    OrderActions
  },
  computed: {
    ...mapState(["orderList", "pullUpLoad", "isShowModal"]),
    options: function() {
      return {
        pullUpLoad: this.pullUpLoad
      };
    }
  },

  // 获取订单数据
  asyncData({ store, router }) {
    // const { owner, status } = router.params;
    // store.dispatch("order/orderList/fetchOrderList", { owner, status });
  },
  mounted() {
    const { params } = this.$route;
    this.fetchOrderList(params);
  },
  methods: {
    ...mapActions(["fetchOrderList"]),
    fetchMore() {
      this.fetchOrderList(this.$route.params);
    }
  },
  watch: {
    $route() {
      // console.log("---------route change----------");
      // this.fetchOrderList(this.$route.params);
    }
  }
};
</script>
<style lang="scss" scoped>
.content-wrapper {
  height: calc(100vh);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-orient: vertical;

  .order-list-scroll-wrap {
    .list-wrapper {
      li {
        padding: 40px 40px;
        border-bottom: 1px solid #eee;
      }

      & :last-child {
        border-bottom: 0;
      }
    }
  }
}
</style>