replace epay with stripe

Signed-off-by: wozulong <>
This commit is contained in:
wozulong
2024-03-22 18:00:20 +08:00
parent 0907fa6994
commit 247ae0988f
15 changed files with 533 additions and 329 deletions

View File

@@ -126,6 +126,10 @@ export function openPage(url) {
}
export function removeTrailingSlash(url) {
if (!url) {
return "";
}
if (url.endsWith('/')) {
return url.slice(0, -1);
} else {