salesTotalDetail.wxml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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"
  6. value="{{dataStr}}" />
  7. </view>
  8. </tui-list-cell>
  9. <view class="grid col-2 text-center margin-tb bg-white">
  10. <view class="padding">
  11. <view>总成交额</view>
  12. <view>¥100</view>
  13. </view>
  14. <view class="padding">
  15. <view>总利润</view>
  16. <view>¥100</view>
  17. </view>
  18. <view class="padding">
  19. <view>总扫码次数</view>
  20. <view>50</view>
  21. </view>
  22. <view class="padding">
  23. <view>总成交次数</view>
  24. <view>0</view>
  25. </view>
  26. <view class="padding">
  27. <view>总补货次数</view>
  28. <view>50</view>
  29. </view>
  30. <view class="padding">
  31. <view>入驻时间</view>
  32. <view>50天</view>
  33. </view>
  34. </view>
  35. <view class="bg-white">
  36. <view class="flex">
  37. <view class="flex-sub bg-grey padding-sm text-center text-bold">设备号</view>
  38. <view class="flex-sub bg-grey padding-sm text-center text-bold">房间号</view>
  39. <view class="flex-sub bg-grey padding-sm text-center text-bold">销售额</view>
  40. </view>
  41. <view class="flex" bindtap="showDetail">
  42. <view class="flex-sub padding-sm text-center">A2006123232</view>
  43. <view class="flex-sub padding-sm text-center">001</view>
  44. <view class="flex-sub padding-sm text-center">¥100</view>
  45. </view>
  46. <view class="flex" bindtap="showDetail">
  47. <view class="flex-sub padding-sm text-center">A2006123232</view>
  48. <view class="flex-sub padding-sm text-center">001</view>
  49. <view class="flex-sub padding-sm text-center">¥100</view>
  50. </view>
  51. </view>
  52. <tui-modal show="{{isModel}}" bind:cancel="hideDetail" custom="{{true}}" fadein="{{true}}">
  53. <view class="tui-modal-custom">
  54. <view class="grid col-2 text-center margin-tb bg-white">
  55. <view class="padding">
  56. <view>扫码次</view>
  57. <view>50</view>
  58. </view>
  59. <view class="padding">
  60. <view>成交次</view>
  61. <view>100</view>
  62. </view>
  63. <view class="padding">
  64. <view>销售额</view>
  65. <view>¥50</view>
  66. </view>
  67. <view class="padding">
  68. <view>利润</view>
  69. <view>0</view>
  70. </view>
  71. <view class="padding">
  72. <view>补货次数</view>
  73. <view>1</view>
  74. </view>
  75. </view>
  76. <tui-button shape="circle" bindtap="hideDetail" >确定</tui-button>
  77. </view>
  78. </tui-modal>
  79. <time-picker pickerShow="{{isPickerShow}}" id="picker" wx:if="{{isPickerRender}}" bind:hidePicker="pickerHide"
  80. bind:setPickerTime="setPickerTime" config="{{pickerConfig}}"></time-picker>
  81. </view>