Commit 5b87538d authored by 张娇(东信)'s avatar 张娇(东信)

搜索框优化

parent c23c458a
...@@ -18,6 +18,9 @@ ...@@ -18,6 +18,9 @@
class="text" class="text"
@confirm="toSearch" @confirm="toSearch"
placeholder="请输入要搜索的关键词" placeholder="请输入要搜索的关键词"
@input="updateModelValue"
@keyup.enter="toSearch"
@focus="toSearch"
/> />
</view> </view>
</Search> </Search>
......
...@@ -6,7 +6,15 @@ ...@@ -6,7 +6,15 @@
src="../../../static/index/magnifyingGlass.png" src="../../../static/index/magnifyingGlass.png"
mode="aspectFit|aspectFill|widthFix" mode="aspectFit|aspectFill|widthFix"
/> />
<input type="text" class="text" @confirm="toSearch" placeholder="请输入要搜索的内容" /> <input
type="text"
class="text"
@confirm="toSearch"
placeholder="请输入要搜索的内容"
@input="updateModelValue"
@keyup.enter="toSearch"
@focus="toSearch"
/>
</view> </view>
</Search> </Search>
<view class="container"> <view class="container">
......
...@@ -12,7 +12,15 @@ ...@@ -12,7 +12,15 @@
src="../../../static/index/magnifyingGlass.png" src="../../../static/index/magnifyingGlass.png"
mode="aspectFit|aspectFill|widthFix" mode="aspectFit|aspectFill|widthFix"
/> />
<input type="text" class="text" @confirm="toSearch" placeholder="请输入要搜索的内容" /> <input
type="text"
class="text"
@confirm="toSearch"
placeholder="请输入要搜索的内容"
@input="updateModelValue"
@keyup.enter="toSearch"
@focus="toSearch"
/>
</view> </view>
</Search> </Search>
<view> <view>
......
...@@ -12,7 +12,15 @@ ...@@ -12,7 +12,15 @@
src="../../../static/index/magnifyingGlass.png" src="../../../static/index/magnifyingGlass.png"
mode="aspectFit|aspectFill|widthFix" mode="aspectFit|aspectFill|widthFix"
/> />
<input type="text" class="text" @confirm="toSearch" placeholder="输入商品名称" /> <input
type="text"
class="text"
@confirm="toSearch"
placeholder="输入商品名称"
@input="updateModelValue"
@keyup.enter="toSearch"
@focus="toSearch"
/>
</view> </view>
</Search> </Search>
</view> </view>
......
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