hookehuyr

优化订单卡组件显示

This diff is collapsed. Click to expand it.
1 <!-- 1 <!--
2 * @Date: 2023-12-13 11:13:13 2 * @Date: 2023-12-13 11:13:13
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-12-20 16:16:11 4 + * @LastEditTime: 2023-12-20 17:02:35
5 * @FilePath: /meihuaApp/src/pages/my/index.vue 5 * @FilePath: /meihuaApp/src/pages/my/index.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -77,6 +77,7 @@ const orderList = ref([ ...@@ -77,6 +77,7 @@ const orderList = ref([
77 time: '2023-12-13 11:13:13', 77 time: '2023-12-13 11:13:13',
78 price: 1200, 78 price: 1200,
79 remain_time: 10, 79 remain_time: 10,
80 + status: 'no-pay',
80 }, 81 },
81 { 82 {
82 id: 2, 83 id: 2,
...@@ -86,6 +87,7 @@ const orderList = ref([ ...@@ -86,6 +87,7 @@ const orderList = ref([
86 time: '2023-12-13 11:13:13', 87 time: '2023-12-13 11:13:13',
87 price: 1200, 88 price: 1200,
88 remain_time: 100, 89 remain_time: 100,
90 + status: 'enable',
89 }, 91 },
90 { 92 {
91 id: 3, 93 id: 3,
...@@ -95,6 +97,7 @@ const orderList = ref([ ...@@ -95,6 +97,7 @@ const orderList = ref([
95 time: '2023-12-13 11:13:13', 97 time: '2023-12-13 11:13:13',
96 price: 1200, 98 price: 1200,
97 remain_time: 100, 99 remain_time: 100,
100 + status: 'cancel',
98 }, 101 },
99 ]) 102 ])
100 103
......