铝交易,微信公众号
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.

55 lines
922 B

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