problem description
now, get the data from the background and render it on the page, and to implement it, you can update it for a specific form,
background data: array form
//
updateSubmit(formName) {
console.log(`${formName}`);
educationUp(formName).then(res => {
// console.log(res);
let {code, data, msg } = res;
if (code == 100200) {
this.message("", "success");
} else {
this.message(res.msg, "error");
}
})
},