window.QCC.init({
el: 'myQCC',
placeholder: '请输入您想要搜索的企业关键字',
onSelect: (data: any) => {
const { companyName } = data
},
})
setTimeout(() => {
const INPUT:HTMLInputElement = document.querySelector('.qcc-input')
INPUT.focus()
setTimeout(() => {
INPUT.setAttribute('value','阿米巴巴')
}, 500);
}, 0);