|
@@ -485,7 +485,6 @@ let search = reactive({
|
|
|
});
|
|
|
const tabAct = ref(0);
|
|
|
const select = ref(0);
|
|
|
-
|
|
|
function clearError() {
|
|
|
rawText.value = '';
|
|
|
search.list = [];
|
|
@@ -616,7 +615,8 @@ function getServer() {
|
|
|
}
|
|
|
|
|
|
function geturl() {
|
|
|
- let search = (location.search || '').replace('?', '').split('&');
|
|
|
+ const searchText = location.hash.split("?")[1] || "";
|
|
|
+ let search = searchText.replace('?', '').split('&');
|
|
|
let obj = {};
|
|
|
for (let i = 0; i < search.length; i++) {
|
|
|
const v = search[i].split('=');
|