| @@ -5,7 +5,7 @@ | |||
| <link rel="icon" type="image/svg+xml" href="/logo_1.jpg" /> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |||
| <title>菊城人才市场后台管理</title> | |||
| <script type="module" crossorigin src="/assets/index-CbG7DmlO.js"></script> | |||
| <script type="module" crossorigin src="/assets/index-BsnYnB_M.js"></script> | |||
| <link rel="stylesheet" crossorigin href="/assets/index-DSahY579.css"> | |||
| </head> | |||
| <body> | |||
| @@ -129,11 +129,11 @@ export const useCommon = () => { | |||
| // 禁止使用日期 | |||
| const disabledDate = (val : Dayjs) => { | |||
| return val && val < dayjs().endOf('day'); | |||
| return val && val <= dayjs().subtract(1, 'day').endOf('day'); | |||
| }; | |||
| const disabledDateFront = (val : Dayjs) => { | |||
| return val && val > dayjs().endOf('day'); | |||
| return val && val >= dayjs().endOf('day'); | |||
| }; | |||
| // 照片前缀 | |||