| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
- <template>
- <view class="container">
- <!-- 分段器区域 -->
- <uni-segmented-control :current="activeCurrent" :values="controlList" @clickItem="onClickItem" styleType="text" activeColor="#0061FF"></uni-segmented-control>
- <!-- 到访待办记录区域 -->
- <view class="body">
- <!-- 每一条到访待办记录区域 -->
- <view class="body_box" v-for="item in list" :key="item.id" @click="handleClick(item)">
- <view class="box_title">
- <view class="title_msg">
- <view class="msg_name">{{ item.name }}</view>
- <view class="msg_time">/{{ item.time }}</view>
- </view>
- <view class="title_type" v-if="item.type == '待审核'">{{ item.type }}</view>
- <view class="title_type red" v-if="item.type == '已拒绝'">{{ item.type }}</view>
- <view class="title_type green" v-if="item.type == '已推送'">{{ item.type }}</view>
- </view>
- <view class="box_info">
- <view class="info_box">
- <view class="box_key">来访时间</view>
- <view class="box_value">{{ item.time }}</view>
- </view>
- <view class="info_box">
- <view class="box_key">访问事由</view>
- <view class="box_value">{{ item.desc }}</view>
- </view>
- </view>
- <view class="box_btn" v-if="item.type == '待审核'">
- <view class="button reject" @click.stop="handleReject">拒绝</view>
- <view class="button agree" @click.stop="handleAgree">同意,并推送</view>
- </view>
- </view>
- </view>
- <!-- 详情弹窗区域 -->
- <uni-popup ref="popup" type="center" :is-mask-click="false">
- <view class="popup_box">
- <!-- 弹窗标题区域 -->
- <view class="pop_header">
- 预约详情
- <view class="header_icon" @click="closePop">×</view>
- </view>
- <!-- 弹窗详细信息区域 -->
- <view class="pop_info">
- <view class="info_key">状态:</view>
- <view class="info_value blue" v-if="popObj.type == '待审核'">{{ popObj.type }}</view>
- <view class="info_value red" v-if="popObj.type == '已拒绝'">{{ popObj.type }}</view>
- <view class="info_value green" v-if="popObj.type == '已推送'">{{ popObj.type }}</view>
- </view>
- <view class="pop_info">
- <view class="info_key">访客姓名:</view>
- <view class="info_value">{{ popObj.name }}</view>
- </view>
- <view class="pop_info">
- <view class="info_key">访客手机号:</view>
- <view class="info_value">136562262626</view>
- </view>
- <view class="pop_info">
- <view class="info_key">来访时间:</view>
- <view class="info_value">{{ popObj.time }}</view>
- </view>
- <view class="pop_info">
- <view class="info_key">证件号:</view>
- <view class="info_value">2662626262626262626</view>
- </view>
- <view class="pop_info">
- <view class="info_key">访问事由:</view>
- <view class="info_value">{{ popObj.desc }}</view>
- </view>
- <view class="pop_info">
- <view class="info_key">车牌号:</view>
- <view class="info_value">无</view>
- </view>
- <view class="pop_info">
- <view class="info_key">同行人数:</view>
- <view class="info_value">无</view>
- </view>
- <view class="pop_info">
- <view class="info_key">受访学生:</view>
- <view class="info_value">张三(262626)</view>
- </view>
- <!-- 底部按钮区域 -->
- <view class="pop_btn" v-if="popObj.type == '待审核'">
- <view class="button reject" @click="handleReject">拒绝</view>
- <view class="button agree" @click="handleAgree">同意,并推送</view>
- </view>
- </view>
- </uni-popup>
- <!-- 底部导航栏区域 -->
- <tabber />
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import tabber from '@/components/tabber.vue'
- // 分段器当前索引
- const activeCurrent = ref(0)
- // 分段器数组
- const controlList = ['待审核', '已拒绝', '已推送']
- // 待办记录
- const list = ref([
- {
- id: 1,
- name: '张三',
- time: '2023-12-13 10:23',
- type: '待审核',
- desc: '给孩子送棉被'
- },
- {
- id: 2,
- name: '张三',
- time: '2023-12-13 10:23',
- type: '已拒绝',
- desc: '给孩子送棉被'
- },
- {
- id: 3,
- name: '张三',
- time: '2023-12-13 10:23',
- type: '已推送',
- desc: '给孩子送棉被'
- }
- ])
- // 弹窗元素标记
- const popup = ref(null)
- // 弹窗详细信息
- const popObj = ref({})
- // 切换分段器时的回调
- const onClickItem = (e) => {
- console.log(e)
- }
- // 点击每一条待办记录时的回调
- const handleClick = (item) => {
- popObj.value = item
- popup.value.open()
- }
- // 点击拒绝按钮回调
- const handleReject = () => {
- console.log('拒绝')
- }
- // 点击同意按钮回调
- const handleAgree = () => {
- console.log('同意')
- }
- // 点击弹窗 x 图标时的回调
- const closePop = () => {
- popup.value.close()
- }
- </script>
- <style lang="scss" scoped>
- .container {
- min-height: 100vh;
- background-color: #f1f6fe;
- .body {
- padding: 0 20rpx;
- .body_box {
- padding: 0 20rpx 0 30rpx;
- box-sizing: border-box;
- margin-top: 20rpx;
- width: 710rpx;
- border-radius: 15rpx;
- background-color: #fff;
- .box_title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 83rpx;
- font-size: 28rpx;
- border-bottom: 1rpx solid #e6e6e6;
- .title_msg {
- display: flex;
- align-items: center;
- .msg_name {
- font-weight: bold;
- }
- .msg_time {
- margin-left: 15rpx;
- color: #a6a6a6;
- font-size: 24rpx;
- }
- }
- .title_type {
- color: #0061ff;
- }
- .red {
- color: #d43030;
- }
- .green {
- color: #00baad;
- }
- }
- .box_info {
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- height: 140rpx;
- .info_box {
- display: flex;
- align-items: center;
- font-size: 24rpx;
- .box_key {
- color: #a6a6a6;
- }
- .box_value {
- margin-left: 95rpx;
- }
- }
- }
- .box_btn {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- height: 130rpx;
- border-top: 1rpx solid #e6e6e6;
- .button {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 146rpx;
- height: 80rpx;
- color: #fff;
- font-size: 28rpx;
- border-radius: 10rpx;
- }
- .reject {
- background-color: #d43030;
- }
- .agree {
- margin-left: 28rpx;
- width: 214rpx;
- background-color: #0061ff;
- }
- }
- }
- }
- .popup_box {
- padding-bottom: 50rpx;
- width: 710rpx;
- border-radius: 22rpx;
- background-color: #fff;
- .pop_header {
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- height: 94rpx;
- font-size: 28rpx;
- border-bottom: 1rpx solid #e6e6e6;
- .header_icon {
- position: absolute;
- top: 18rpx;
- right: 25rpx;
- font-size: 40rpx;
- }
- }
- .pop_info {
- display: flex;
- align-items: center;
- margin-top: 22rpx;
- padding: 0 35rpx;
- font-size: 28rpx;
- .info_key {
- color: #999999;
- }
- .info_value {
- }
- .blue {
- color: #0061ff;
- }
- .red {
- color: #d43030;
- }
- .green {
- color: #00baad;
- }
- }
- .pop_btn {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- margin-top: 28rpx;
- padding-top: 40rpx;
- box-sizing: border-box;
- height: 129rpx;
- border-top: 1rpx solid #e6e6e6;
- .button {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 146rpx;
- height: 80rpx;
- color: #fff;
- font-size: 28rpx;
- border-radius: 10rpx;
- }
- .reject {
- background-color: #d43030;
- }
- .agree {
- margin-left: 28rpx;
- margin-right: 36rpx;
- width: 214rpx;
- background-color: #0061ff;
- }
- }
- }
- }
- // 修改顶部分段器样式
- ::v-deep {
- .segmented-control {
- height: 100rpx;
- background-color: #fff;
- }
- }
- </style>
|