Commit a466829e authored by anxixi's avatar anxixi

人脉圈

parent c8a4af44
......@@ -11,7 +11,7 @@
</div>
</div>
<div style="position: absolute;right: 120px;top: 0px;" class="topright gendisplay">
<div style="line-height: 42px;position: relative;padding-right: 30px;margin-right: 10px;">
<div style="position: relative;padding-right: 30px;margin-right: 10px;display: inline-flex;align-items: center;">
<el-input class="index_topsou" @keyup.enter.native="handleSearchDetail(keyword)" @focus="keyword_search = true" @blur="keyword_search = false" v-model="keyword" maxlength="40" :placeholder="$i18n.locale == 'zh-CN'?'请输入项目名称/企业名称/技术关键词':'Eenter Technology Keywords'" style="width: 220px;height: 30px;"></el-input>
<p class="topsearch_fixed" type="primary" :style="!keyword_search&&keyword==''?'':'background: #5D78FF'" @click="handleSearchDetail(keyword)">
<i style="font-size: 12px;" :style="!keyword_search&&keyword==''?'':'color:#ffffff'" class="iconfont icon-iconsearch"></i>
......
......@@ -195,6 +195,7 @@
font-size: 12px;
margin: 8px 0 5px;
height: 17px;
line-height: 17px;
overflow: hidden;
}
> p:last-child {
......
......@@ -195,6 +195,7 @@
font-size: 12px;
margin: 8px 0 5px;
height: 17px;
line-height: 17px;
overflow: hidden;
}
> p:last-child {
......
......@@ -289,7 +289,7 @@
},
createStateFilter(queryString) {
return (state) => {
return (state.value.toLowerCase().indexOf(queryString.toLowerCase()) === 0);
return (state.value.indexOf(queryString) !=-1);
};
},
handleSelect(item) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment