guhongwei 3 years ago
parent
commit
f5834a91e0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/store/patent/disclosure.js

+ 1 - 1
src/store/patent/disclosure.js

@@ -22,7 +22,7 @@ const actions = {
     return res;
   },
   async update({ commit }, { id, ...info } = {}) {
-    const res = await this.$axios.$post(`${api.interface}/${id}`, { ...info });
+    const res = await this.$axios.$post(`${api.interface}/update/${id}`, { ...info });
     return res;
   },
   async delete({ commit }, payload) {