企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[toc] ### 1. 实现搜索框搜索功能 ``` <Input class="ml-auto" style="width: 200px;" search enter-button placeholder="请输入关键词..." @on-search="search"/> search(e){ if(e == ''){ return this.getData() } this.axios.get('/api/file/search?keyword=' + e,{ token:true }).then(res=>{ let list = this.formatList(res.data.rows) this.list = list }) } ```