This commit is contained in:
2020-10-15 14:51:34 +08:00
parent c240c7aba3
commit 6111abafc4
6 changed files with 31 additions and 11 deletions

View File

@@ -276,7 +276,7 @@ import { uploadflie } from "@/utils/vod"
import store from '@/store';
import smile from "@/static/images/smile.png"
import smilet from "@/static/images/smilet.png"
import { getarchives, getlanguages } from "@/api/index"
import { getarchives, getlanguages, putmember } from "@/api/index"
export default defineComponent({
name: "Archives",
@@ -433,6 +433,9 @@ export default defineComponent({
*/
function submitInfo (): void {
console.log(toRaw(formData.value));
putmember(toRaw(formData.value)).then((res) => {
console.log(res)
})
}