index.vue 567 B

123456789101112131415161718192021
  1. <template>
  2. <view class="search">
  3. <!-- header -->
  4. <cu-custom isBack bgColor="bg-gradual-blue"><view slot="content">搜索页</view></cu-custom>
  5. <view class="cu-bar search bg-white">
  6. <view class="search-form round">
  7. <text class="cuIcon-search"></text>
  8. <input type="text" placeholder="请输入商品名字" confirm-type="search"></input>
  9. </view>
  10. <view class="action">
  11. <button class="cu-btn bg-green shadow-blur round">搜索</button>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. </script>
  18. <style>
  19. </style>