Merge pull request #498 from baboon-king/master

fix: duplicate query param of tifPreviewType on url
This commit is contained in:
陈精华 2023-10-20 11:34:52 +08:00 committed by GitHub
commit c559efcceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -37,7 +37,14 @@
}
function goForImage() {
var url = window.location.href + "&tifPreviewType=jpg"
var url = window.location.href
if (url.indexOf("tifPreviewType=pdf") != -1) {
url = url.replace("tifPreviewType=pdf", "tifPreviewType=jpg");
} else {
url = url + "&tifPreviewType=jpg";
}
if (url.indexOf("officePreviewType=pdf") != -1) {
url = url.replace("officePreviewType=pdf", "officePreviewType=image");
} else {