123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <view class="container">
- <tui-tabs tabs="{{navbar}}" currentTab="{{currentTab>1?0:currentTab}}" bind:change="changeTab" itemWidth="50%"></tui-tabs>
- <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>
- <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>
|