浏览代码

添加网关搜索

zhaoke 2 年之前
父节点
当前提交
828b3a2c27
共有 2 个文件被更改,包括 6 次插入0 次删除
  1. 1 0
      src/router/routes/routes-file-six.js
  2. 5 0
      src/views/gateway/interface/index.vue

+ 1 - 0
src/router/routes/routes-file-six.js

@@ -3,6 +3,7 @@ import Layout from '@/layout'
 const gatewayRoutes = {
   path: '/gateway',
   component: Layout,
+  meta: { title: 'API网关' },
   children: [{
     path: '/gateway',
     name: 'Gateway',

+ 5 - 0
src/views/gateway/interface/index.vue

@@ -70,6 +70,10 @@ export default {
     }
   },
   created () {
+    const { keyWords } = this.$route.query;
+    if (keyWords) {
+      this.keyword = keyWords;
+    }
     this.fetchData()
   },
   methods: {
@@ -103,6 +107,7 @@ export default {
     //清除搜索
     clearSearchData () {
       this.keyword = ''
+      this.$router.replace('/gateway')
       this.fetchData()
     },
     removeCard (item) {