铝交易,微信公众号
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
939 B

6 months ago
6 months ago
6 months ago
5 months ago
6 months ago
5 months ago
6 months ago
6 months ago
6 months ago
5 months ago
6 months ago
5 months ago
6 months ago
5 months ago
6 months ago
  1. <template>
  2. <!--我的挂单-->
  3. <view class="page">
  4. <navbar :title="$t('pageTitle.myOrders')" leftClick @leftClick="$utils.navigateBack"/>
  5. <view class="frame">
  6. <view class="content">
  7. <orderList :list="list" :show-back-order="true" @getList="getData"></orderList>
  8. </view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. import orderList from "../components/order/orderList.vue";
  14. import topbar from "@/components/base/topbar.vue";
  15. import tabber from "@/components/base/tabbar.vue";
  16. import mixinsList from '@/mixins/list.js'
  17. export default {
  18. name: "pendingOrder",
  19. components: {tabber, topbar, orderList},
  20. mixins: [mixinsList],
  21. data() {
  22. return {
  23. mixinsListApi: 'getMyProductlist',
  24. }
  25. },
  26. methods: {},
  27. }
  28. </script>
  29. <style scoped lang="scss">
  30. .page {
  31. .frame {
  32. padding: 30rpx;
  33. background-color: #f5f5f5;
  34. .content {
  35. //height: calc(100vh - 120rpx);
  36. }
  37. }
  38. }
  39. </style>