searchArea.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view>
  3. <view style="height:206rpx"></view>
  4. <view class="ding">
  5. <view class="cu-bar search bg-gray filter-section" style="with:50%;">
  6. <view class="search-form round bg-white">
  7. <select name="" id="" placeholder="" clearable>
  8. <option value="">请选择设备类型</option>
  9. <option value="">类型1</option>
  10. <option value="">类型2</option>
  11. </select>
  12. </view>
  13. </view>
  14. <view class="cu-bar search bg-gray filter-section">
  15. <view class="search-form round bg-white" style="margin-bottom:26rpx">
  16. <select name="" id="" placeholder="" clearable>
  17. <option value="">请选择传输方式</option>
  18. <option value="">类型1</option>
  19. <option value="">类型2</option>
  20. </select>
  21. </view>
  22. <view class="action">
  23. <button class="cu-btn bg-blue round">查询</button>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {
  33. siteName: '',
  34. }
  35. },
  36. methods: {
  37. InputFocus(e) {
  38. this.InputBottom = e.detail.height
  39. },
  40. InputBlur(e) {
  41. this.InputBottom = 0
  42. },
  43. }
  44. }
  45. </script>
  46. <style>
  47. </style>