order_search.wxml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <view class="search-box">
  2. <view class="search-top">
  3. <input class="search-ipt" focus="true" placeholder="搜索用户手机号" type="text" value="{{value}}" bindinput="mobileInput" maxlength="11" type="number" placeholder-style="color:#b0b0b0" />
  4. <!-- 输入的时候显示 -->
  5. <van-icon name="cross" size="{{showInput}}" custom-style="margin-top: 20rpx" bind:click="clear" />
  6. <button class="search-btn" bindtap="Search">搜索</button>
  7. </view>
  8. </view>
  9. <view style="margin: 4%;" wx:for="{{showList}}">
  10. <view class="item-box">
  11. <view style="color: #747474;font-size: 29rpx;">
  12. 订单编号 : {{item.Oid}}
  13. <view style="float: right;" bindtap="onClickdetail">
  14. {{detail}}
  15. </view>
  16. </view>
  17. <view style=" margin: 20rpx 0rpx; background: #E0E3DA;width: 100%;height: 1rpx">
  18. </view>
  19. <view>
  20. <view class="card1">
  21. <text style="font-size:26rpx;margin-bottom: 10rpx;color: #747474;">姓名:{{item.UserName}}</text>
  22. <text style="font-size:26rpx; color: #FF6347;">待送达</text>
  23. </view>
  24. <view class="card1">
  25. <text style="font-size:26rpx;margin-bottom: 10rpx;color: #747474;">手机号:{{item.Phone}}</text>
  26. </view>
  27. <view class="card1">
  28. <text style="font-size:26rpx;margin-bottom: 10rpx;color: #747474;">地址:{{item.Area}}</text>
  29. </view>
  30. <view class="card1">
  31. <text style="font-size:26rpx;color: #747474;">下单时间:{{item.CreateTime}}</text>
  32. <van-button color="#FF8C00" custom-style="border-radius:8px;font-size:20rpx" class="btn1" round type="info" size="mini">重新打印</van-button>
  33. </view>
  34. </view>
  35. </view>
  36. </view>