修改发票下载查询和发票信息修改

This commit is contained in:
2024-06-05 16:16:21 +08:00
parent 8ecb1e5977
commit 8b970f2b8f
5 changed files with 70 additions and 37 deletions

View File

@@ -233,3 +233,8 @@ export const getPixelRatio = () => {
})
return pixelRatio
}
export function isValidPhoneNumber(phoneNumber) {
return /^1\d{10}$/.test(phoneNumber);
}