李志伟 2 years ago
parent
commit
03c5cfb9db
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/pages/index.vue

+ 1
- 1
src/pages/index.vue View File

50
 const tipText = computed(() => {
50
 const tipText = computed(() => {
51
   if (!invoiceId) return '请扫码访问此页面';
51
   if (!invoiceId) return '请扫码访问此页面';
52
   const finished = formData.status === 2 || (formData.endDate ? dayjs().isAfter(dayjs(formData.endDate)) : false)
52
   const finished = formData.status === 2 || (formData.endDate ? dayjs().isAfter(dayjs(formData.endDate)) : false)
53
-  return finished ? '该班次信息收集已截止如有问题请联系报销助理' : `该班次信息收集将于${dayjs(formData.endDate).format('YYYY年MM月DD日 hh时mm分')}截止`
53
+  return finished ? '该班次信息收集已截止如有问题请联系报销助理' : `该班次信息收集将于${dayjs(formData.endDate).format('YYYY年MM月DD日 HH时mm分')}截止`
54
 })
54
 })
55
 
55
 
56
 const goForm = () => {
56
 const goForm = () => {