...
|
...
|
@@ -3,13 +3,13 @@ |
|
|
:title="$route.params.owner === 'sell' ? '我的出售' : '我的购买订单'"
|
|
|
class="list-page"
|
|
|
>
|
|
|
<status-nav :status="status" :owner="owner" @select="onStatusChange"/>
|
|
|
<status-nav class="order-status-nav" :status="status" :owner="owner" @select="onStatusChange"/>
|
|
|
<div class="content-wrapper">
|
|
|
<scroll
|
|
|
<LayoutScroll
|
|
|
@scroll="scrollHandler"
|
|
|
@pulling-up="fetchData"
|
|
|
@pulling-down="onRefresh"
|
|
|
:options="options"
|
|
|
:data="viewOrderList"
|
|
|
:loading="loadingOptions"
|
|
|
class="order-list-scroll-wrap"
|
|
|
ref="scroll"
|
|
|
>
|
...
|
...
|
@@ -48,13 +48,12 @@ |
|
|
tip="这里什么都没有..."
|
|
|
v-show="orderStatus.isShowEmpty"
|
|
|
/>
|
|
|
</scroll>
|
|
|
</LayoutScroll>
|
|
|
</div>
|
|
|
</layout-app>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import { Scroll } from 'cube-ui';
|
|
|
import { createNamespacedHelpers } from 'vuex';
|
|
|
|
|
|
import OrderItem from './components/order-item';
|
...
|
...
|
@@ -81,7 +80,6 @@ export default { |
|
|
// 订单操作
|
|
|
mixins: [orderActionMixin, orderInSaleActionMixin],
|
|
|
components: {
|
|
|
Scroll,
|
|
|
OrderItem,
|
|
|
StatusNav,
|
|
|
OrderItemHeader,
|
...
|
...
|
@@ -90,6 +88,11 @@ export default { |
|
|
CountDown,
|
|
|
VideoPlayer
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
scrollY: 0
|
|
|
}
|
|
|
},
|
|
|
props: {
|
|
|
owner: String,
|
|
|
status: Number
|
...
|
...
|
@@ -102,18 +105,16 @@ export default { |
|
|
viewOrderList() {
|
|
|
return this.orderStatus.orderList;
|
|
|
},
|
|
|
options() {
|
|
|
const options = {
|
|
|
pullUpLoad: this.orderStatus.pullUpLoad,
|
|
|
bounce: !this.orderStatus.isShowEmpty
|
|
|
loadingOptions() {
|
|
|
return {
|
|
|
hide: !this.viewOrderList || !this.viewOrderList.length,
|
|
|
noMore: this.orderStatus.page >= this.orderStatus.pagetotal
|
|
|
};
|
|
|
// if (this.$refs.scroll && this.$refs.scroll.scroll) {
|
|
|
options.pullDownRefresh = this.orderStatus.isShowEmpty
|
|
|
? false
|
|
|
: { txt: '更新成功' };
|
|
|
// }
|
|
|
|
|
|
return options;
|
|
|
}
|
|
|
},
|
|
|
activated() {
|
|
|
if (this.yoho.direction === 'back') {
|
|
|
this.scrollY && this.$refs.scroll.scrollTo(this.scrollY);
|
|
|
}
|
|
|
},
|
|
|
|
...
|
...
|
@@ -129,6 +130,9 @@ export default { |
|
|
methods: {
|
|
|
...mapActions(['fetchOrderList', 'confirmReceipt']),
|
|
|
...mapMutations(['resetData']),
|
|
|
scrollHandler({y}) {
|
|
|
this.scrollY = -y;
|
|
|
},
|
|
|
fetchData() {
|
|
|
this.fetchOrderList({
|
|
|
owner: this.owner,
|
...
|
...
|
@@ -170,9 +174,15 @@ export default { |
|
|
flex-direction: column;
|
|
|
}
|
|
|
|
|
|
.order-status-nav {
|
|
|
position: absolute;
|
|
|
top: 0;
|
|
|
left: 0;
|
|
|
right: 0;
|
|
|
}
|
|
|
|
|
|
.content-wrapper {
|
|
|
flex: 1 0 0;
|
|
|
overflow: hidden;
|
|
|
|
|
|
.footer-wrapper {
|
|
|
display: flex;
|
...
|
...
|
@@ -188,6 +198,13 @@ export default { |
|
|
}
|
|
|
|
|
|
.order-list-scroll-wrap {
|
|
|
width: 100%;
|
|
|
padding-top: 100px;
|
|
|
box-sizing: border-box;
|
|
|
position: absolute;
|
|
|
top: 0;
|
|
|
bottom: 0;
|
|
|
|
|
|
.list-wrapper {
|
|
|
li {
|
|
|
padding: 40px 40px 0;
|
...
|
...
|
|