40 lines
2.0 KiB
Plaintext
Raw Normal View History

2024-03-07 20:15:43 +08:00
<view class="containerView public">
<van-tabs bind:click="tabClickSwitch" color="#4e96f8" border animated title-active-color="black" title-inactive-color="gray">
<van-tab title="预约记录">
2024-03-08 12:00:15 +08:00
<view class="itemView" wx:for="{{6}}">
2024-03-07 20:15:43 +08:00
<view class="topView">
<view class="name">访客:张三</view>
<view class="status">待审核</view>
2024-02-29 17:16:05 +08:00
</view>
2024-03-07 20:15:43 +08:00
<view class="contentView">
<view class="dataView">
2024-03-08 12:00:15 +08:00
<van-icon name="manager" color="#cccccc" size="40rpx" />
2024-03-07 20:15:43 +08:00
<view class="msg">访问事由: 参观会议参观会议参观会议参观会议参观会议参观会议参观会议参观会议参观会议参观会议参观会议</view>
</view>
<view class="dataView">
2024-03-08 12:00:15 +08:00
<van-icon name="clock-o" color="#cccccc" size="40rpx" />
2024-03-07 20:15:43 +08:00
<view class="msg">2024-02-02 14:00</view>
</view>
<view class="btnView">
<view class="btn">查看详情</view>
2024-03-08 12:00:15 +08:00
<view class="btn" data-id="{{item}}" bind:tap="showDialog">审核</view>
2024-03-07 20:15:43 +08:00
</view>
2024-02-29 17:16:05 +08:00
</view>
</view>
2024-03-07 20:15:43 +08:00
</van-tab>
<van-tab title="预约审核" disabled="{{false}}">
</van-tab>
</van-tabs>
2024-03-08 12:00:15 +08:00
<view class="submitBtn">立即预约</view>
<van-dialog use-slot title="审核" show="{{ dialogShow }}" show-confirm-button="{{false}}" show-cancel-button="{{false}}" close-on-click-overlay>
<van-field input-class="textarea" bind:input="dialogInput" value="{{ dialogContent }}" type="textarea" placeholder="请输入描述信息" />
<view class="dialogBtnView">
<view class="rejectBtn" bind:tap="dialogReject">驳回</view>
<view class="successBtn" bind:tap="dialogSuccess">通过</view>
</view>
</van-dialog>
2024-02-29 17:16:05 +08:00
</view>