55 lines
1.8 KiB
Plaintext
55 lines
1.8 KiB
Plaintext
<!--pages/bgMsg/bgMsg.wxml-->
|
|
<view class="main">
|
|
<view class="content">
|
|
<view class="btnWrap">
|
|
<view class="gdrq">
|
|
<view class="btn1 {{curId == item.id ? 'ac':'mr'}}" wx:for="{{rqList}}" wx:key="item" data-item="{{item}}" bindtap="rqSel">{{item.name}}</view>
|
|
</view>
|
|
<view class="dtrq">
|
|
<view class="timeMsg">
|
|
<view class="itemTi">{{date3}}</view>
|
|
<view class="itemT">至</view>
|
|
<view class="itemTi">{{date4}}</view>
|
|
</view>
|
|
<view class="btn2" bindtap="dateSel">
|
|
<view>选择时间</view>
|
|
<view class="icon2"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<loading hidden="{{loadingHidden}}">加载中...</loading>
|
|
<view wx:if="{{loadingHidden}}">
|
|
<view wx:if="{{flag == true}}">
|
|
<view class="item" wx:for="{{list}}" wx:key="item" data-item="{{item}}" bindtap="navitoMsg">
|
|
<view class="title">{{item.sjksmc}}</view>
|
|
<view class="msgWrap">
|
|
<view class="msgLeft">
|
|
<view class="text">{{item.jcksmc}} {{item.HisOrderName}}</view>
|
|
<view class="text">{{item.reprq}}</view>
|
|
</view>
|
|
<view class="msgRight">查看详情</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="item zw" wx:else>暂无数据</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<van-popup
|
|
show="{{ show }}"
|
|
round
|
|
position="bottom">
|
|
<view class="dateWrap">
|
|
<view class="dateItem {{isSel == 0 ? 'dateActive':''}}" bindtap="date1Sel" data-id="0">{{date1}}</view>
|
|
<view>至</view>
|
|
<view class="dateItem {{isSel == 1 ? 'dateActive':''}} " bindtap="date2Sel" data-id="1">{{date2}}</view>
|
|
</view>
|
|
<van-datetime-picker
|
|
type="date"
|
|
value="{{ currentDate }}"
|
|
bind:input="onInput"
|
|
min-date="{{ minDate }}"
|
|
bind:confirm="onConfirm"
|
|
bind:cancel="onClose"
|
|
/>
|
|
</van-popup> |