| | |
| | | <h2 v-else>编辑-原材料检验</h2> |
| | | </div> |
| | | <div class="btn-group header-right"> |
| | | <el-button type="primary" @click="save()" v-if="this.dataForm.id==null">保存</el-button> |
| | | <el-button @click="save()" v-if="this.dataForm.id==null">保存</el-button> |
| | | </div> |
| | | </div> |
| | | <div class="page-main"> |
| | |
| | | <template slot-scope="scope"> |
| | | <div v-if="!scope.row.children"> |
| | | <el-tooltip :disabled="scope.row.deviceId != null" class="item" effect="dark" content="请先选择设备!" placement="top-start"> |
| | | <el-select style="width:100%" allow-create filterable default-first-option |
| | | <el-select @blur="changeState(scope.row, index)" style="width:100%" allow-create filterable default-first-option |
| | | :disabled="scope.row.deviceId == null || (dataForm.id!=null&&resultVal!=null)" |
| | | v-model="scope.row.testValueList[index]" |
| | | placeholder="请输入或选择检测值" @change="updateTestValue(scope.row,scope.$index)"> |
| | |
| | | <el-table-column prop="note" label="检验描述" width="260" > |
| | | <template slot-scope="scope"> |
| | | <div v-if="!scope.row.children"> |
| | | <el-input :disabled="scope.row.deviceId == null || (dataForm.id!=null&&resultVal!=null)" v-model="scope.row.note" placeholder="检验描述"></el-input> |
| | | <el-input @blur="changeState(scope.row, note)" :disabled="scope.row.deviceId == null || (dataForm.id!=null&&resultVal!=null)" v-model="scope.row.note" placeholder="检验描述"></el-input> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | }, |
| | | // 确认回调 |
| | | selectPart(param, nodePart, index) { |
| | | console.log(param) |
| | | if (typeof param !== 'undefined') { |
| | | this.dataForm.code = param.code |
| | | this.dataForm.name = param.name |
| | |
| | | } |
| | | this.showPart = true |
| | | }, |
| | | |
| | | |
| | | |
| | | updateDevice(row,index){ |
| | | if(this.dataForm.id != null){ |
| | | updateDeviceById({deviceId:row.deviceId,rpId:row.rpId}).then(res=>{ |
| | | this.list[index].testValue = '' |
| | | this.list[index].testState = null |
| | | this.list[index].testValueList = [] |
| | | 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) |
| | | }) |
| | |
| | | } |
| | | } |
| | | }, |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | updateTestValue(row,index){ |
| | | console.log(row); |
| | | if(row.rpId == null){ |
| | |
| | | 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){ |
| | | getObj(this.dataForm.id).then(res=>{ |
| | |
| | | userNameList.push(obj.userName) |
| | | } |
| | | let arr= [] |
| | | |
| | | if(obj.testValue){ |
| | | arr = obj.testValue.split(",") |
| | | } |
| | | |
| | | let o = { |
| | | deviceId: obj.deviceId, |
| | | deviceName: obj.deviceName, |
| | |
| | | this.conclusionTable = [] |
| | | } |
| | | }, |
| | | |
| | | |
| | | |
| | | // 删除子项目 |
| | | delChildren(row,index,isParent) { |
| | | if(isParent){ |
| | |
| | | row.children.push(obj) |
| | | }, |
| | | save(){ |
| | | |
| | | let data = this.dataForm |
| | | console.log('--------',data); |
| | | console.log("-----",this.list); |
| | | this.list.forEach(item=>{ |
| | | item.children.forEach(c=>{ |
| | | let arr=c.testValueList |
| | | let val='' |
| | | arr.forEach(a=>{ |
| | | val+=a+"," |
| | | }) |
| | | let end=val.substring(0,val.length-1) |
| | | c.testValue=end |
| | | }) |
| | | }) |
| | | data.rawInsProducts = this.list |
| | | addRawInspects(data).then(res=>{ |
| | | this.$message.success("保存成功") |