hookehuyr

fix

1 <!-- 1 <!--
2 * @Date: 2024-01-16 13:19:23 2 * @Date: 2024-01-16 13:19:23
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-01-24 10:45:32 4 + * @LastEditTime: 2024-01-24 18:47:48
5 * @FilePath: /xysBooking/src/views/bookingDetail.vue 5 * @FilePath: /xysBooking/src/views/bookingDetail.vue
6 * @Description: 预约记录详情 6 * @Description: 预约记录详情
7 --> 7 -->
...@@ -90,13 +90,13 @@ const billInfo = ref({}); ...@@ -90,13 +90,13 @@ const billInfo = ref({});
90 * 11=退款中(取消预约时先把状态打成11) 90 * 11=退款中(取消预约时先把状态打成11)
91 */ 91 */
92 const CodeStatus = { 92 const CodeStatus = {
93 - APPLY: 1, 93 + APPLY: '1',
94 - PAYING: 2, 94 + PAYING: '2',
95 - SUCCESS: 3, 95 + SUCCESS: '3',
96 - CANCEL: 5, 96 + CANCEL: '5',
97 - CANCELED: 7, 97 + CANCELED: '7',
98 - USED: 9, 98 + USED: '9',
99 - REFUNDING: 11 99 + REFUNDING: '11'
100 } 100 }
101 101
102 const formatDatetime = (data) => { // 格式化日期 102 const formatDatetime = (data) => { // 格式化日期
......