Open powerdong opened 4 years ago
// 提取需要的数据
const formData= JSON.parse(
JSON.stringify(this.form,["nickName","price"])
);
// 覆盖数据
Object.assign(this.form, {
tag: '商品1'
}
// 数据合并,如果字段相同,会覆盖前面表单数据字段的数值
const query = { tenaId: '订单编号', id:'查询ID'}
const formData = {
...this.form,
query
}