diff --git a/src/pages/home2/components/searchGroup/index.vue b/src/pages/home2/components/searchGroup/index.vue
index 4c1023c35..1b2c2761a 100644
--- a/src/pages/home2/components/searchGroup/index.vue
+++ b/src/pages/home2/components/searchGroup/index.vue
@@ -14,21 +14,6 @@
:value="item.value"
>
-
-
-
-
-
- 一般检索
+ 一般检索(标题)
+ 一般检索(全文)
高级检索
@@ -93,10 +79,10 @@ export default {
computed: {},
watch: {},
methods: {
- checkStateTypeFunc(data){
- this.checkStateType = data
- this.$forceUpdate()
- },
+ // checkStateTypeFunc(data){
+ // this.checkStateType = data
+ // this.$forceUpdate()
+ // },
checkStateFunc(data){
if(data === 'All'){
this.showType = true
@@ -104,13 +90,13 @@ export default {
this.showType = false
}
},
- search() {
+ search(checkStateType) {
this.$router.push({
name: 'StandardSearch',
params: {
selectKey: this.checkState,
searchValue: this.checkContent || undefined,
- allType: this.checkStateType,
+ allType: checkStateType,
}
})
},