in-sell-order-list.vue
3.29 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<template>
<layout-app title="出售中" class="in-sale-list-wrapper">
<div class="content-wrapper">
<scroll
@pulling-up="fetchData"
@pulling-down="onRefresh"
:options="options"
:data="orderList"
class="order-list-scroll-wrap"
>
<ul class="list-wrapper">
<li v-for="(order, i) in orderList" :key="i">
<order-item :order="order" />
<!-- 订单操作 -->
<div class="footer-wrapper">
<count-down :leftTime="order.leftTime" />
<order-actions
class="actions"
:order="order"
@on-action="
action =>
onInSaleOrderAction({ action, order, isInSale: true })
"
/>
</div>
</li>
</ul>
<empty-list
class="empty-wrapper"
tip="这里什么都没有..."
v-show="isShowEmpty"
/>
</scroll>
</div>
</layout-app>
</template>
<script>
import { Scroll } from "cube-ui";
import { createNamespacedHelpers } from "vuex";
import OrderItem from "./components/in-sale-order-item";
import EmptyList from "components//ufo-no-item";
import OrderActions from "../components/order-actions";
import CountDown from "../components/count-down";
import orderInSaleActionMixin from "../mixin/order-in-sale-action";
const IN_SALE_STORE_PATH = "order/inSaleOrderList";
const {
mapActions,
mapState,
mapGetters,
mapMutations
} = createNamespacedHelpers(IN_SALE_STORE_PATH);
export default {
// 订单操作
mixins: [orderInSaleActionMixin],
components: {
Scroll,
OrderItem,
EmptyList,
OrderActions,
CountDown
},
computed: {
...mapState(["entryOrder", "notEntryOrder", "isShowEmpty"]),
...mapGetters(["orderList", "pullUpLoad"]),
options: function() {
return {
pullUpLoad: this.pullUpLoad,
pullDownRefresh: this.isShowEmpty
? false
: {
txt: "更新成功"
},
bounce: this.isShowEmpty ? false : true
};
},
isFetchEntryOrder() {
return this.entryOrder.pullUpLoad;
}
},
// 获取订单数据
asyncData({ store, router }) {
store.commit(`${IN_SALE_STORE_PATH}/resetData`);
return store.dispatch(
`${IN_SALE_STORE_PATH}/fetchEntryOrderList`,
router.params
);
},
methods: {
...mapActions(["fetchEntryOrderList", "fetchNotEntryOrderList"]),
...mapMutations(["resetData"]),
onRefresh() {
this.resetData(this.$route.params);
this.fetchData();
},
fetchData() {
if (this.isFetchEntryOrder) {
this.fetchEntryOrderList();
} else {
this.fetchNotEntryOrderList();
}
}
}
};
</script>
<style lang="scss" scoped>
.in-sale-list-wrapper /deep/ .layout-context {
display: flex;
flex-direction: column;
}
.content-wrapper {
flex: 1 0 0;
overflow: hidden;
.empty-wrapper {
margin: 20vh 0;
}
.footer-wrapper {
display: flex;
margin-top: 40px;
.actions {
flex: 1;
}
}
.order-list-scroll-wrap {
.list-wrapper {
li {
padding: 40px 40px;
border-bottom: 1px solid #eee;
}
& :last-child {
border-bottom: 0;
}
}
}
}
</style>