index.wxml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <view class="container">
  2. <tui-list-cell hover="{{false}}" bindtap="timePickerShow">
  3. <view class="tui-line-cell">
  4. <view class="tui-title">起止时间</view>
  5. <input placeholder-class="phcolor" class="tui-input" placeholder="请选择起止时间" type="text" disabled="true" value="{{dataStr}}" />
  6. </view>
  7. </tui-list-cell>
  8. <!-- <tui-list-cell hover="{{false}}">
  9. <view class="tui-line-cell">
  10. <view class="tui-title">门店名称:</view>
  11. <input placeholder-class="phcolor" class="tui-input" name="searchParams.storeName" placeholder="请输入门店名称" maxlength="50" catchinput="inputeditStoreName" />
  12. <view class="action">
  13. <button class="cu-btn bg-blue shadow-blur round" bindtap="btnsearch">搜索</button>
  14. </view>
  15. </view>
  16. </tui-list-cell> -->
  17. <picker bindchange="bindStorePickerChange" value="{{index}}" range="{{storeList}}" range-key="storeName">
  18. <tui-list-cell hover="{{false}}">
  19. <view class="tui-line-cell">
  20. <view class="tui-title">门店:</view>
  21. <input placeholder-class="phcolor" class="tui-input" placeholder="请选择门店" type="text" disabled="true"
  22. value="{{values.storeName}}" name="storeName" />
  23. </view>
  24. </tui-list-cell>
  25. </picker>
  26. <tui-list-cell hover="{{false}}">
  27. <view class="tui-line-cell">
  28. <view class="tui-title">总额</view>
  29. <label class="tui-lable">{{totalAmount}}元</label>
  30. </view>
  31. </tui-list-cell>
  32. <view class="container" style="padding-top:{{CustomBar}}px;">
  33. <view>
  34. <block wx:for="{{list}}" wx:key="{{index}}">
  35. <tui-cell tui-cell-class="tui-msg">
  36. <view class="tui-msg-box">
  37. <view class="tui-msg-item">
  38. <view class="tui-msg-name">{{list[index].linkId}}</view>
  39. <view class="tui-msg-content" style="font-size:28rpx;margin-top:18rpx">
  40. {{list[index].storeId_dictText}}
  41. </view>
  42. <view class="tui-msg-content2" style="font-size:28rpx;margin-top:18rpx">
  43. {{list[index].productName}}
  44. </view>
  45. <view class="tui-msg-content" style="font-size:28rpx;margin-top:7rpx">
  46. {{list[index].createTime}}</view>
  47. </view>
  48. </view>
  49. <view class="tui-msg-right">
  50. <view class="tui-msg-time" style="color:red;font-size:28rpx;font-weight:800;">{{list[index].number}}元</view>
  51. </view>
  52. </tui-cell>
  53. </block>
  54. </view>
  55. </view>
  56. <time-picker pickerShow="{{isPickerShow}}" id="picker" wx:if="{{isPickerRender}}" bind:hidePicker="pickerHide"
  57. bind:setPickerTime="setPickerTime" config="{{pickerConfig}}"></time-picker>
  58. </view>