order-list.vue
2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<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>