1金币
theComboBox.selectedItem拿不到, selectedValu也拿不到, 只有text
let theComboBox = new input.AutoComplete('#theComboBox', {
displayMemberPath: 'chdh', searchMemberPath: 'chdh', selectedValuePath: 'chdh', headerPath: 'chdh', selectedValue: "001", isRequired: false
, minLength: 1, async itemsSourceFunction(query, max, callback) {
const {state, data, msg} = {"data":[{"czy":"张三","chdh":"001","sj":null,"dcck":"上海二号仓","drck":"上海一号仓","id":5,"wfstate":null,"resid":null,"wfid":null}],"state":0};
if (state === 0) callback(data)
else layer.alert(msg ? msg : '查询失败')
}
});
|
|