Authored by 袁晋鹏

文档管理---在搜索框不输入任何字符点击页面展示左侧树中的搜索文件夹

输入空、空格不进行搜索,提示请输入搜索内容
... ... @@ -41,7 +41,7 @@
<div style="width: calc(100% - 150px);padding-left: 6px;text-align: left;">
<el-input :size="$global.elementConfig.size.input" @keydown.enter.native="searchFile" clearable
placeholder="请输入关键字"
style="width: 220px;margin-right:10px" v-model="keyWord"/>
style="width: 220px;margin-right:10px" v-model.trim="keyWord"/>
<el-button :size="$global.elementConfig.size.button" @click="searchFile">
<i class="iconfont icon-sousuo"></i>搜索
</el-button>
... ...
... ... @@ -652,10 +652,10 @@ export default {
*/
let searchFile = () => {
let keyWords = keyWord.value;
// if (keyWords == '') {
// proxy.$global.showMsg("请输入关键字!", "warning")
// return;
// }
if (keyWords == '') {
proxy.$global.showMsg("请输入关键字!", "warning")
return;
}
getPage(props.viewTypeId);
}
... ...