用法一
let arr =["真空摄像系统","污染测量系统", "真空系统","低温系统","测控系统"]
let arr1 =["振动控制系统","噪声控制系统","测量系统","电测系统"]
let arr2 =["磁试验系统","电测系统"]
let form = {}
[...arr, ...arr1,...arr2].forEach((item, index) => {
form[`cb${index}`] = item
})
console.log(form)

用法二
this.userData.forEach((el) => {
if (el.userName == this.form.remark67) {
this.form.user_remark67 = el.id
} if (el.userName == this.form.remark66) {
this.form.user_remark66 = el.id
} if (el.userName == this.form.remark45) {
this.form.user_remark45 = el.id
} if (el.userName == this.form.remark41) {
this.form.user_remark41 = el.id
} if (el.userName == this.form.remark37) {
this.form.user_remark37 = el.id
} if (el.userName == this.form.remark33) {
this.form.user_remark33 = el.id
} if (el.userName == this.form.remark29) {
this.form.user_remark29 = el.id
} if (el.userName == this.form.remark25) {
this.form.user_remark25 = el.id
}
})