| | |
| | | this.showPart = true |
| | | }, |
| | | |
| | | |
| | | updateDevice(row, index) { |
| | | let rowId=JSON.stringify(row.rpId) |
| | | updateDeviceById({ deviceId: row.deviceId, rpId: row.rpId }).then(res => { |
| | | this.list.forEach(obj => { |
| | | obj.children.forEach(c=>{ |
| | | if(c.rpId==rowId){ |
| | | c.testValue = '' |
| | | c.testState = null |
| | | c.testValueList = [] |
| | | c.note='' |
| | | } |
| | | }) |
| | | }) |
| | | }).catch(error => { |
| | | console.log(error) |
| | | }) |
| | | }, |
| | | |
| | | updateDevice(row,index){ |
| | | if(this.dataForm.id != null){ |
| | | updateDeviceById({deviceId:row.deviceId,rpId:row.rpId}).then(res=>{ |
| | | this.inspectionItems.forEach(obj => { |
| | | this.list[index-1].testValue = '' |
| | | this.list[index-1].testState = null |
| | | this.list[index-1].testValueList = [] |
| | | |
| | | }) |
| | | }).catch(error=>{ |
| | | console.log(error) |
| | | }) |
| | | } |
| | | }, |
| | | // updateDevice(row,index){ |
| | | // if(this.dataForm.id != null){ |
| | | // updateDeviceById({deviceId:row.deviceId,rpId:row.rpId}).then(res=>{ |
| | | // this.inspectionItems.forEach(obj => { |
| | | // this.list[index-1].testValue = '' |
| | | // this.list[index-1].testState = null |
| | | // this.list[index-1].testValueList = [] |
| | | // this.list[index-1].note = '' |
| | | |
| | | // }) |
| | | // }).catch(error=>{ |
| | | // console.log(error) |
| | | // }) |
| | | // } |
| | | // }, |
| | | checkTestState(){ |
| | | let resultVal = '1' |
| | | this.list.forEach(item=>{ |
| | |
| | | name: null, |
| | | unit: null, |
| | | userName: null, |
| | | testValue: null, |
| | | testValue: '', |
| | | testValueList: [], |
| | | note: null, |
| | | testState: null |
| | | note: '', |
| | | testState: '' |
| | | }) |
| | | this.list.push(ele) |
| | | } |
| | |
| | | } |
| | | }, |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | updateTestValue(row,index){ |
| | | console.log(row); |
| | | if(row.rpId == null){ |
| | | |
| | | |
| | | return |
| | | } |
| | | let val = row.testValueList.join(","); |
| | |
| | | this.$message.error(error) |
| | | }) |
| | | }, |
| | | changeState(row, index) { |
| | | console.log(row) |
| | | if (row.rpId != null && row.rpId != '') { |
| | | let val = "" |
| | | row.testValueList.forEach(e => { |
| | | val += e + "," |
| | | }) |
| | | |
| | | // if (note === undefined || note === '' || note === null) { |
| | | // return |
| | | // } |
| | | console.log(val) |
| | | val = val.slice(0, -1); |
| | | if (val === undefined || val === '' || val === null) { |
| | | return |
| | | } |
| | | |
| | | |
| | | let obj = { |
| | | deviceId: row.deviceId, |
| | | rpId: row.rpId, |
| | | testValue: val, |
| | | note: row.note |
| | | |
| | | } |
| | | console.log(obj) |
| | | updateRawInsProduct(obj).then(res => { |
| | | if (res.data.code == 0) { |
| | | this.$message.success("更新成功") |
| | | } else { |
| | | this.$message.error("更新失败") |
| | | } |
| | | this.init() |
| | | }) |
| | | } |
| | | }, |
| | | |
| | | |
| | | |
| | | init(){ |
| | | if(this.dataForm.id){ |
| | |
| | | this.conclusionTable = [] |
| | | } |
| | | }, |
| | | |
| | | changeState(row, index) { |
| | | console.log(row) |
| | | if (row.rpId != null && row.rpId != '') { |
| | | let val = "" |
| | | row.testValueList.forEach(e => { |
| | | val += e + "," |
| | | }) |
| | | |
| | | // if (note === undefined || note === '' || note === null) { |
| | | // return |
| | | // } |
| | | console.log(val) |
| | | val = val.slice(0, -1); |
| | | if (val === undefined || val === '' || val === null) { |
| | | return |
| | | } |
| | | |
| | | |
| | | let obj = { |
| | | deviceId: row.deviceId, |
| | | rpId: row.rpId, |
| | | testValue: val, |
| | | note: row.note |
| | | |
| | | } |
| | | console.log(obj) |
| | | updateRawInsProduct(obj).then(res => { |
| | | if (res.data.code == 0) { |
| | | this.$message.success("更新成功") |
| | | } else { |
| | | this.$message.error("更新失败") |
| | | } |
| | | this.init() |
| | | }) |
| | | } |
| | | }, |
| | | |
| | | |
| | | |
| | | // 删除子项目 |