| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!--index.wxml-->
- <import src="list/index-list.wxml" />
- <import src="publish/publishPhoto.wxml" />
- <page>
- <view class='search'>
- <view class='searchItem'>
- <input placeholder='请录入RTU编码' placeholder-class="rtuCode-input-box" bindinput="bindRtuCodeInput" />
- <view style="width:60rpx;margin-left:30rpx;" bindtap="findRtuInfo">
- <image src='/images/search.png' style="width:40rpx;height:40rpx;padding-top: 7px;"></image>
- </view>
- </view>
-
- <view style="width:60rpx;margin-left:30rpx;margin-right:30rpx;" bindtap="scanQr">
- <image src='/images/scan.png' style="width:50rpx;height:50rpx;padding-top: 7px;"></image>
- </view>
- </view>
- <!--<view class="fixedViewBox">
- <view class="toolBar">
- <view style="width:500rpx">
- <view style="border-bottom: 1rpx solid #ff9508;padding-left:10rpx;">
- <input placeholder='请录入RTU编码' placeholder-class="rtuCode-input-box" bindinput="bindRtuCodeInput" />
- </view>
- </view>
- <view style="width:60rpx;margin-left:30rpx;" bindtap="findRtuInfo">
- <image src='/images/find.png' style="width:60rpx;height:60rpx"></image>
- </view>
- <view style="width:60rpx;margin-left:30rpx;" bindtap="scanQr">
- <image src='/images/scan.png' style="width:60rpx;height:60rpx"></image>
- </view>
- </view>
- <!-- <view style="margin-top:10rpx;margin-bottom:10rpx">
- <view class="page-section-spacing">
- <view class="flex-wrp">
- <view class="flex-item" style="width:500rpx">
- <view class="weui-cells weui-cells_after-title">
- <view class="weui-cell weui-cell_input">
- <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" />
- </view>
- </view>
- </view>
- <view class="flex-item" style="width:60rpx;margin-left:30rpx;" bindtap="findRtuInfo">
- <image src='/images/find.png' style="width:60rpx;height:60rpx"></image>
- </view>
- <view class="flex-item " style="width:60rpx;margin-left:30rpx;" bindtap="scanQr">
- <image src='/images/scan.png' style="width:60rpx;height:60rpx"></image>
- </view>
- </view>
- </view>
- </view> -->
-
- <block wx:if="{{hasMore}}">
- <view class="listContainer">
- <template is="showBoxListTemplate" data="{{showBoxList}}" />
- </view>
- </block>
- <!-- <view class="publish_button_box {{publish_button_state==true?'pulish_button_show':''}} {{publish_button_state==false?'pulish_button_hide':''}}">
- <view class='publish_button' bindtap="takePhoto">
- <image src='/images/yule.png'></image>
- </view>
- </view> -->
- <!-- </view> -->
- <!--<modal hidden="{{c}}" title="用户登录" confirm-text="OK" cancel-text="" bindcancel="nickCancel" bindconfirm="nickConfirm">
- <input style="margin-top:0px; border-bottom: 1px gray solid;" type='text' placeholder="帐号" auto-focus bindinput="bindNickInput" />
- <input style="margin-top:10px; border-bottom: 1px gray solid;" type='text' placeholder="密码" auto-focus bindinput="bindPwInput" />
- </modal> -->
- <!-- </view> -->
- </page>
|