Why is the vue route blocked by * (asterisk)?

the route for my vue project is as follows:

{
  path: "/insuranceOutTransferPage",
  component: () => import("../views/insuranceOutTransferPage.vue")
},
{
  path: "/orgApplyTransferPage",
  component: () => import("../views/orgApplyTransferPage.vue")
},
{
   path: "*",
   component: () => import("../views/404.vue")
}

when I visit the online address http://xmsb.ncdhm.com:9040/test/ddjgsq/-sharp/orgApplyTransferPage, I occasionally (and sometimes normally) jump to the 404 page.

I don"t know why?

Apr.16,2022
Menu