<template>
|
|
<!--我的挂单-->
|
|
<view class="page">
|
|
|
|
<navbar :title="$t('pageTitle.myOrders')" leftClick @leftClick="$utils.navigateBack"/>
|
|
|
|
<view class="frame">
|
|
|
|
<view class="content">
|
|
<orderList :orderList="list" :show-back-order="true"></orderList>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import orderList from "../components/order/orderList.vue";
|
|
import topbar from "@/components/base/topbar.vue";
|
|
import tabber from "@/components/base/tabbar.vue";
|
|
import mixinsList from '@/mixins/list.js'
|
|
|
|
export default {
|
|
name: "pendingOrder",
|
|
components: {tabber, topbar, orderList},
|
|
mixins : [mixinsList],
|
|
data() {
|
|
return {
|
|
mixinsListApi : 'getMyProductlist',
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
.page {
|
|
|
|
.frame {
|
|
padding: 30rpx;
|
|
background-color: #f5f5f5;
|
|
|
|
.content {
|
|
//height: calc(100vh - 120rpx);
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
</style>
|