async updateUserParam() {
try {
const response = await fetch('http://localhost:8000/api/user/businessregister/params/update', {
method: 'POST',
headers: {'Content-Type': "application/json"},
credentials: 'include',
body: JSON.stringify({
name:
this.name,
value: this.value,
})
});
const content = await response.json();
console.log(content);
} catch (e) {
console.log(e)
}
}э