| 123456789101112131415161718192021 |
- <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
- <cu-custom bgColor="bg-color" isBack="{{true}}" title="设备列表">
- <!-- <view slot="content">设备列表</view> -->
- </cu-custom>
- <view class="worker_search">
- <view class="worker_search_con">
- <image src="../../img/scan.png" bindtap="goInstructConfig"></image>
- <input type="text" placeholder="请输入IMEI编号" value="{{keyword}}" bindinput="setKeyword"></input>
- <view class="text-color" bindtap="searchList">
- <text class="cuIcon-search"></text>
- 搜索
- </view>
- </view>
- </view>
- <view class="query_list">
- <navigator class="query_item" url="{{'/pages/instruct/config?imei='+item}}" wx:for="{{list}}" wx:for-item="item" wx:key="index">
- <view class="query_item_txt"><text class="query_item_label">IMEI编号: </text> {{item || "N/A"}}</view>
- <!-- <view class="query_item_txt"><text class="query_item_label">设备地址: </text> {{item.address || "N/A"}}</view>
- <view class="query_item_txt"><text class="query_item_label">负责人: </text> {{item.person || "N/A"}}</view> -->
- </navigator>
- </view>
|