怎么实现:扫码后在设备编号上输入扫码内容,根据扫码内容在“设备表”上查询相同的设备编号,将其设备名称输入到其输入框中;
With wb.AddInputGroup("form1", "ipg1", "设备维护")
With .AddInputCell("ic1")
.AddLabel("lbh", "设备编号", 0)
.AddInput("number", "text", 1)
.AddVcodeButton("scan", "扫码输入", 2)
End With
With .AddInputCell("ic2")
.AddLabel("lbh2", "设备名称", 0)
.AddInput("设备名称", "text", 1)
End With