dcc
2024-06-13 3616db170333df7d668c97323344335b52c4153c
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
<template>
  <div>
    <!--没有订单-->
    <div v-if="orderDataList.length === 0" class="flex items-center flex-col">
      <img src="@/assets/images/c2c/order/noData.png" width="104" />
      <div>{{ $t("message.home.zanwujilu") }}</div>
    </div>
    <!--有订单-->
    <order-list :orderList="orderDataList" v-else />
  </div>
</template>
 
<script>
import OrderList from "./order-list/OrderList.vue";
 
export default {
  name: "orderTable",
  props: ["orderDataList"],
  components: {
    OrderList,
  },
};
</script>
 
<style scoped></style>