commit
This commit is contained in:
@@ -22,7 +22,8 @@
|
|||||||
placeholder="请输入关键词"
|
placeholder="请输入关键词"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
<el-button class="primary_button" type="primary" @click="search">搜索</el-button>
|
<el-button type="primary" @click="search">搜索</el-button>
|
||||||
|
<el-button style="margin-left: 5px;" type="primary" @click="seniorSearch">高级搜索</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -74,6 +75,15 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
seniorSearch(){
|
||||||
|
this.$router.push({
|
||||||
|
name: 'AdvancedSearch',
|
||||||
|
params: {
|
||||||
|
selectKey: this.checkState,
|
||||||
|
searchValue: this.checkContent || undefined
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
},
|
},
|
||||||
mounted(){
|
mounted(){
|
||||||
|
|
||||||
|
|||||||
+12
-1
@@ -2367,7 +2367,7 @@ const routes = [
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/advancedSearch',
|
path: '/advancedSearch/:selectKey?/:searchValue?',
|
||||||
name: 'AdvancedSearch',
|
name: 'AdvancedSearch',
|
||||||
component: () =>
|
component: () =>
|
||||||
import('@/pages/searchCenter/pages/advancedSearch'),
|
import('@/pages/searchCenter/pages/advancedSearch'),
|
||||||
@@ -2377,6 +2377,17 @@ const routes = [
|
|||||||
menuId: 'K9BAYUPZBC'
|
menuId: 'K9BAYUPZBC'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// path: '/advancedSearch',
|
||||||
|
// name: 'AdvancedSearch',
|
||||||
|
// component: () =>
|
||||||
|
// import('@/pages/searchCenter/pages/advancedSearch'),
|
||||||
|
// meta: {
|
||||||
|
// requireAuth: true,
|
||||||
|
// title: '高级检索',
|
||||||
|
// menuId: 'K9BAYUPZBC'
|
||||||
|
// }
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
path: '/customReport',
|
path: '/customReport',
|
||||||
name: 'CustomReport',
|
name: 'CustomReport',
|
||||||
|
|||||||
Reference in New Issue
Block a user