|
@@ -224,7 +224,7 @@
|
|
<script setup lang="ts">
|
|
<script setup lang="ts">
|
|
import {computed, getCurrentInstance, onBeforeMount, onMounted, reactive, ref, watch} from "vue";
|
|
import {computed, getCurrentInstance, onBeforeMount, onMounted, reactive, ref, watch} from "vue";
|
|
import {useRoute, useRouter} from "vue-router";
|
|
import {useRoute, useRouter} from "vue-router";
|
|
-import {useAppStore, useDictionaryStore, useThemeStore, useWebStore} from "@/stores";
|
|
|
|
|
|
+import {useAppStore, useDictionaryStore, useThemeStore, useWebStore, useIndexDBStore} from "@/stores";
|
|
import {ElLoading, ElMessage} from "element-plus";
|
|
import {ElLoading, ElMessage} from "element-plus";
|
|
import {frontGetIndexAndFieldInfo, searchLogsSaveSearchLog} from "@/api/modules/web/list";
|
|
import {frontGetIndexAndFieldInfo, searchLogsSaveSearchLog} from "@/api/modules/web/list";
|
|
import DetailCom from './detail.vue'
|
|
import DetailCom from './detail.vue'
|
|
@@ -234,6 +234,7 @@ const AppStore = useAppStore()
|
|
const WebStore = useWebStore()
|
|
const WebStore = useWebStore()
|
|
const ThemeStore = useThemeStore()
|
|
const ThemeStore = useThemeStore()
|
|
const DictionaryStore = useDictionaryStore()
|
|
const DictionaryStore = useDictionaryStore()
|
|
|
|
+const IndexDBStore = useIndexDBStore()
|
|
const route = useRoute()
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
const router = useRouter()
|
|
const state: any = reactive({
|
|
const state: any = reactive({
|
|
@@ -597,6 +598,7 @@ const initWS = () => {
|
|
type.__count = type.__count ? (type.__count + index.data) : index.data
|
|
type.__count = type.__count ? (type.__count + index.data) : index.data
|
|
tag.__count = tag.__count ? (tag.__count + index.data) : index.data
|
|
tag.__count = tag.__count ? (tag.__count + index.data) : index.data
|
|
})
|
|
})
|
|
|
|
+ type.children.sort((a, b) => b.__count - a.__count)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -673,19 +675,30 @@ const initWS = () => {
|
|
state.ws.instance = ws
|
|
state.ws.instance = ws
|
|
}
|
|
}
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
- initDictionary()
|
|
|
|
- const {text, index} = route.query
|
|
|
|
- if (!text) {
|
|
|
|
- router.replace({
|
|
|
|
- name: '71305311-abcc-4d13-8531-f966b49839c5'
|
|
|
|
- })
|
|
|
|
- } else {
|
|
|
|
- state.searchText = text
|
|
|
|
- if (index) {
|
|
|
|
- state.cascaderParams.value = index.split(',').map(v => Number(v))
|
|
|
|
|
|
+ IndexDBStore.initDB().then(() => {
|
|
|
|
+ initDictionary()
|
|
|
|
+ const {timestamp} = route.query
|
|
|
|
+ if (!timestamp) {
|
|
|
|
+ router.replace({
|
|
|
|
+ name: '71305311-abcc-4d13-8531-f966b49839c5'
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ IndexDBStore.getTimestamp(timestamp).then((params) => {
|
|
|
|
+ const {text, index} = params
|
|
|
|
+ if (!text) {
|
|
|
|
+ router.replace({
|
|
|
|
+ name: '71305311-abcc-4d13-8531-f966b49839c5'
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ state.searchText = text
|
|
|
|
+ if (index) {
|
|
|
|
+ state.cascaderParams.value = index.split(',').map(v => Number(v))
|
|
|
|
+ }
|
|
|
|
+ initWS()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
}
|
|
}
|
|
- initWS()
|
|
|
|
- }
|
|
|
|
|
|
+ })
|
|
})
|
|
})
|
|
</script>
|
|
</script>
|
|
|
|
|