You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by mi...@apache.org on 2018/10/07 09:12:46 UTC

[incubator-dubbo-ops] branch develop updated: fix #131

This is an automated email from the ASF dual-hosted git repository.

min pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git


The following commit(s) were added to refs/heads/develop by this push:
     new d3260d7  fix #131
d3260d7 is described below

commit d3260d7b1d2a42c4248046bf087843fb3d0ec7b5
Author: nzomkxia <z8...@gmail.com>
AuthorDate: Sun Oct 7 17:12:35 2018 +0800

    fix #131
---
 dubbo-admin-frontend/src/components/ServiceSearch.vue | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dubbo-admin-frontend/src/components/ServiceSearch.vue b/dubbo-admin-frontend/src/components/ServiceSearch.vue
index 24e4754..9c425aa 100644
--- a/dubbo-admin-frontend/src/components/ServiceSearch.vue
+++ b/dubbo-admin-frontend/src/components/ServiceSearch.vue
@@ -144,10 +144,7 @@
         this.search(this.filter, pattern, true)
       },
       search: function (filter, pattern, rewrite) {
-        let service = {}
-        service.filter = filter
-        service.pattern = pattern
-        AXIOS.post('service/search', service)
+        AXIOS.get('service/search?pattern=' + pattern + '&filter=' + filter)
           .then(response => {
             this.services = response.data
             if (rewrite) {