Commit ebc8107ce539b809befbc15c709e69c51be1e841
1 parent
dd4ecae1d2
Exists in
master
and in
3 other branches
fix changes
Showing
2 changed files
with
0 additions
and
13 deletions
Show diff stats
src/pages/Dashboard.vue
src/pages/Provider.vue
... | ... | @@ -142,7 +142,6 @@ |
142 | 142 | :items="desserts" |
143 | 143 | class="elevation-1" |
144 | 144 | :pagination.sync="pagination" |
145 | - :search="term" | |
146 | 145 | > |
147 | 146 | <template slot="items" slot-scope="props"> |
148 | 147 | <v-snackbar |
... | ... | @@ -288,17 +287,6 @@ export default { |
288 | 287 | methods: { |
289 | 288 | getProviderList() { |
290 | 289 | var token = this.$store.state.token; |
291 | - // http() | |
292 | - // .get("/provider-list", { | |
293 | - // headers: { Authorization: "Bearer " + token } | |
294 | - // }) | |
295 | - // .then(response => { | |
296 | - // this.desserts = response.data.data.providerList; | |
297 | - // }) | |
298 | - // .catch(err => { | |
299 | - // console.log("err====>", err); | |
300 | - // }); | |
301 | - // var token = this.$store.state.token; | |
302 | 290 | http() |
303 | 291 | .get("/provider-list?term=" + this.term, { |
304 | 292 | headers: { Authorization: "Bearer " + token } | ... | ... |