Index: ssts-web/src/main/webapp/disinfectsystem/useRecord/useRecordForm.js =================================================================== diff -u -r35424 -r35428 --- ssts-web/src/main/webapp/disinfectsystem/useRecord/useRecordForm.js (.../useRecordForm.js) (revision 35424) +++ ssts-web/src/main/webapp/disinfectsystem/useRecord/useRecordForm.js (.../useRecordForm.js) (revision 35428) @@ -3618,6 +3618,7 @@ if(action.result.data.specialInfectionJson){ top.Ext.getCmp('specialInfectionID').setValue(action.result.data.specialInfectionJson.id || ''); + top.Ext.getCmp('specialInfection').setValue(action.result.data.specialInfectionJson.name || ''); if(action.result.data.specialInfectionJson.colorCode){ top.Ext.getCmp('specialInfection').el.dom.style.background = action.result.data.specialInfectionJson.colorCode; } Index: ssts-web/src/main/webapp/disinfectsystem/recyclingApplication/goodsApplicationForm.js =================================================================== diff -u -r35337 -r35428 --- ssts-web/src/main/webapp/disinfectsystem/recyclingApplication/goodsApplicationForm.js (.../goodsApplicationForm.js) (revision 35337) +++ ssts-web/src/main/webapp/disinfectsystem/recyclingApplication/goodsApplicationForm.js (.../goodsApplicationForm.js) (revision 35428) @@ -2639,7 +2639,7 @@ top.Ext4.getCmp("specialInfection").setValue(specialInfection); top.Ext4.getCmp('specialInfection').show(); if(recyclingApplication.specialInfectionJson){ - top.Ext4.getCmp('specialInfection').el.dom.querySelectorAll("input")[0].style.background = recyclingApplication.specialInfectionJson.colorCode; + top.Ext4.getCmp('specialInfection').el.dom.getElementsByTagName("input")[0].style.background = recyclingApplication.specialInfectionJson.colorCode; } } Index: ssts-web/src/main/webapp/disinfectsystem/basedatamanager/specialInfection/specialInfectionForm.js =================================================================== diff -u -r35334 -r35428 --- ssts-web/src/main/webapp/disinfectsystem/basedatamanager/specialInfection/specialInfectionForm.js (.../specialInfectionForm.js) (revision 35334) +++ ssts-web/src/main/webapp/disinfectsystem/basedatamanager/specialInfection/specialInfectionForm.js (.../specialInfectionForm.js) (revision 35428) @@ -244,7 +244,7 @@ } else if (tempColorValue == "紫红") { bkcolor = "#ff0066"; } - combo.el.dom.querySelectorAll("input")[0].style.background = bkcolor; + combo.el.dom.getElementsByTagName("input")[0].style.background = bkcolor; }, 'blur': function (combo) { if (combo.getValue() !== '' && combo.getValue() !== null) { @@ -329,6 +329,6 @@ top.Ext4.getCmp('barcode').setValue(record.data.barcode); top.Ext4.getCmp('colorCode').setValue(record.data.colorCode); top.Ext4.getCmp('colorName').setRawValue(record.data.colorName); - top.Ext4.getCmp('colorName').el.dom.querySelectorAll("input")[0].style.background = record.data.colorCode; + top.Ext4.getCmp('colorName').el.dom.getElementsByTagName("input")[0].style.background = record.data.colorCode; } } \ No newline at end of file