//修改子级数值触发
function setChemistryValue(objInfo) {
let timer = null
if (timer) clearTimeout(timer)
timer = setTimeout(() => {
SetChemicalToxicantsItem(objInfo, res => {
if (res.Success) {
this.vue1.$Notice.success({
render: h => {
return h('span', [
'数值修改成功!'
])
}
})
}
})
}, 1000)
}