el-table form form processing submission affects the original form data

As shown below, the interface parameters are submitted using this.findForm

// el-table表单需要深拷贝提交才能不影响原数据
      this.findForm = JSON.parse(JSON.stringify(this.form));

Guess you like

Origin blog.csdn.net/m0_61601708/article/details/129946551