[update] 首页增加跳转到一般检索

This commit is contained in:
lideqin
2023-11-14 13:38:10 +08:00
parent d22c8c677c
commit ae65e2c769
+11 -10
View File
@@ -1,20 +1,21 @@
<template>
<div>敬请期待</div>
<!--<div>敬请期待</div>-->
<div>
<a-button @click="toSearchWindow">跳转一般检索</a-button>
</div>
</template>
<script>
export default {
name: 'Analysis',
data () {
return {
}
},
created () {
},
methods: {
// 点击跳转到检索页
toSearchWindow () {
const { href } = this.$router.resolve({
path: '/generalSearch'
})
window.open(href, '_blank')
}
}
}
</script>