12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <view class="container">
- <tui-list-cell hover="{{false}}" bindtap="timePickerShow">
- <view class="tui-line-cell">
- <view class="tui-title">起止时间</view>
- <input placeholder-class="phcolor" class="tui-input" placeholder="请选择起止时间" type="text" disabled="true" value="{{dataStr}}" />
- </view>
- </tui-list-cell>
- <!-- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title">门店名称:</view>
- <input placeholder-class="phcolor" class="tui-input" name="searchParams.storeName" placeholder="请输入门店名称" maxlength="50" catchinput="inputeditStoreName" />
-
- <view class="action">
- <button class="cu-btn bg-blue shadow-blur round" bindtap="btnsearch">搜索</button>
- </view>
- </view>
- </tui-list-cell> -->
- <picker bindchange="bindStorePickerChange" value="{{index}}" range="{{storeList}}" range-key="storeName">
- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title">门店:</view>
- <input placeholder-class="phcolor" class="tui-input" placeholder="请选择门店" type="text" disabled="true"
- value="{{values.storeName}}" name="storeName" />
- </view>
- </tui-list-cell>
- </picker>
- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title">总额</view>
- <label class="tui-lable">{{totalAmount}}元</label>
- </view>
- </tui-list-cell>
- <view class="container" style="padding-top:{{CustomBar}}px;">
- <view>
- <block wx:for="{{list}}" wx:key="{{index}}">
- <tui-cell tui-cell-class="tui-msg">
- <view class="tui-msg-box">
- <view class="tui-msg-item">
- <view class="tui-msg-name">{{list[index].linkId}}</view>
- <view class="tui-msg-content" style="font-size:28rpx;margin-top:18rpx">
- {{list[index].storeId_dictText}}
- </view>
- <view class="tui-msg-content2" style="font-size:28rpx;margin-top:18rpx">
- {{list[index].productName}}
- </view>
- <view class="tui-msg-content" style="font-size:28rpx;margin-top:7rpx">
- {{list[index].createTime}}</view>
- </view>
- </view>
- <view class="tui-msg-right">
- <view class="tui-msg-time" style="color:red;font-size:28rpx;font-weight:800;">{{list[index].number}}元</view>
- </view>
- </tui-cell>
- </block>
- </view>
- </view>
- <time-picker pickerShow="{{isPickerShow}}" id="picker" wx:if="{{isPickerRender}}" bind:hidePicker="pickerHide"
- bind:setPickerTime="setPickerTime" config="{{pickerConfig}}"></time-picker>
- </view>
|