add label to display method parameter
diff --git a/dubbo-admin-frontend/src/components/ServiceDetail.vue b/dubbo-admin-frontend/src/components/ServiceDetail.vue
index d87ccc5..1fefe69 100644
--- a/dubbo-admin-frontend/src/components/ServiceDetail.vue
+++ b/dubbo-admin-frontend/src/components/ServiceDetail.vue
@@ -94,7 +94,9 @@
           :items="methodMetaData">
           <template slot="items" slot-scope="props">
             <td>{{props.item.name}}</td>
-            <td>{{getParameters(props.item.parameterTypes)}}</td>
+            <td>
+              <v-chip v-for="(type, index) in props.item.parameterTypes" :key="type.id" label>{{type}}</v-chip>
+            </td>
             <td>{{props.item.returnType}}</td>
           </template>
         </v-data-table>