index.wxml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!--index.wxml-->
  2. <import src="list/index-list.wxml" />
  3. <import src="publish/publishPhoto.wxml" />
  4. <page>
  5. <view class='search'>
  6. <view class='searchItem'>
  7. <input placeholder='请录入RTU编码' placeholder-class="rtuCode-input-box" bindinput="bindRtuCodeInput" />
  8. <view style="width:60rpx;margin-left:30rpx;" bindtap="findRtuInfo">
  9. <image src='/images/search.png' style="width:40rpx;height:40rpx;padding-top: 7px;"></image>
  10. </view>
  11. </view>
  12. <view style="width:60rpx;margin-left:30rpx;margin-right:30rpx;" bindtap="scanQr">
  13. <image src='/images/scan.png' style="width:50rpx;height:50rpx;padding-top: 7px;"></image>
  14. </view>
  15. </view>
  16. <!--<view class="fixedViewBox">
  17. <view class="toolBar">
  18. <view style="width:500rpx">
  19. <view style="border-bottom: 1rpx solid #ff9508;padding-left:10rpx;">
  20. <input placeholder='请录入RTU编码' placeholder-class="rtuCode-input-box" bindinput="bindRtuCodeInput" />
  21. </view>
  22. </view>
  23. <view style="width:60rpx;margin-left:30rpx;" bindtap="findRtuInfo">
  24. <image src='/images/find.png' style="width:60rpx;height:60rpx"></image>
  25. </view>
  26. <view style="width:60rpx;margin-left:30rpx;" bindtap="scanQr">
  27. <image src='/images/scan.png' style="width:60rpx;height:60rpx"></image>
  28. </view>
  29. </view>
  30. <!-- <view style="margin-top:10rpx;margin-bottom:10rpx">
  31. <view class="page-section-spacing">
  32. <view class="flex-wrp">
  33. <view class="flex-item" style="width:500rpx">
  34. <view class="weui-cells weui-cells_after-title">
  35. <view class="weui-cell weui-cell_input">
  36. <input class="weui-input" auto-focus placeholder='RTU编码' style='border-bottom: 1rpx solid #ff9508;' placeholder-style='color:rgb(207,207,207);font-size:20rpx;' bindinput="bindRtuCodeInput" />
  37. </view>
  38. </view>
  39. </view>
  40. <view class="flex-item" style="width:60rpx;margin-left:30rpx;" bindtap="findRtuInfo">
  41. <image src='/images/find.png' style="width:60rpx;height:60rpx"></image>
  42. </view>
  43. <view class="flex-item " style="width:60rpx;margin-left:30rpx;" bindtap="scanQr">
  44. <image src='/images/scan.png' style="width:60rpx;height:60rpx"></image>
  45. </view>
  46. </view>
  47. </view>
  48. </view> -->
  49. <block wx:if="{{hasMore}}">
  50. <view class="listContainer">
  51. <template is="showBoxListTemplate" data="{{showBoxList}}" />
  52. </view>
  53. </block>
  54. <!-- <view class="publish_button_box {{publish_button_state==true?'pulish_button_show':''}} {{publish_button_state==false?'pulish_button_hide':''}}">
  55. <view class='publish_button' bindtap="takePhoto">
  56. <image src='/images/yule.png'></image>
  57. </view>
  58. </view> -->
  59. <!-- </view> -->
  60. <!--<modal hidden="{{c}}" title="用户登录" confirm-text="OK" cancel-text="" bindcancel="nickCancel" bindconfirm="nickConfirm">
  61. <input style="margin-top:0px; border-bottom: 1px gray solid;" type='text' placeholder="帐号" auto-focus bindinput="bindNickInput" />
  62. <input style="margin-top:10px; border-bottom: 1px gray solid;" type='text' placeholder="密码" auto-focus bindinput="bindPwInput" />
  63. </modal> -->
  64. <!-- </view> -->
  65. </page>