hookehuyr

fix

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