123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <view class='page-container-classname' ref='saveChildRef0'>
- <view class='basics-msg'>
- <image class='room-detail-bg' src='/static/img/room-detail-bg.png' mode="aspectFill">
- </image>
- <!-- <view style='height: {{CustomBar-StatusBar}}px; width: 100%;margin-top: {{StatusBar}}px; padding-left: 80rpx; line-height: {{CustomBar-StatusBar}}px;position: absolute;color: #fff;;z-index: 999;'>
- <view data-id='3' onTap='antmoveAction' data-antmove-tap='gotoFun'>
- <van-icon name='arrow-left' ref='saveChildRef1'></van-icon>
- 会议续约详情
- </view>
- </view> -->
- <view class='p-t'>
- <view class='basics-msg-tit'>
- <view>
- 原会议时间:
- </view>
- <text>
- {{item.meetingRecordVo.appointmentDate}} {{item.meetingRecordVo.appointmentStartTime}}~{{item.meetingRecordVo.appointmentEndTime}}
- </text>
- </view>
- <view class='basics-msg-tit'>
- <view>
- 续约时间:
- </view>
- <text>
- {{item.meetingRecordVo.appointmentDate}} {{item.continueAppointmentStartTime}}~{{item.continueAppointmentEndTime}}
- </text>
- </view>
- <view class="myrenewalcontract-detail">
- <view
- class='myrenewalcontract-detail-audit'
- data-id='1'
- onTap='antmoveAction'
- data-antmove-tap='gotoFun'
- >
- <text class="detail-over-text">
- 审核详情
- </text>
- <van-icon name='arrow' ref='saveChildRef2'>
- </van-icon>
- </view>
- <image
- class='myrenewalcontract-detail-img'
- src="/static/status/{{item.status==1?'audit':item.status==2?'pass':item.status==3?'refuse':'cancel'}}.png"
- mode="aspectFill"
- >
- </image>
- </view>
- </view>
- </view>
- <view class='myrenewalcontract-detail-content'>
- <view class='big-tit'>
- {{item.meetingRecordVo.meetingName}}
- </view>
- <view a:if='{{item.meetingRecordVo.meetingMonogram}}' class='logo-box border-radius-20'>
- <view class='myrenewalcontract-detail-position col'>
- <image
- src='/static/img/meeting-detail-icon.png'
- class='logo-icon'
- mode="aspectFill"
- >
- </image>
- <text>
- 会标
- </text>
- </view>
- <view class='tit'>
- {{item.meetingRecordVo.meetingMonogram}}
- </view>
- </view>
- <view class='myrenewalcontract-detail-position'>
- <van-icon name='location' ref='saveChildRef3'>
- </van-icon>
- <text class="over-text">
- {{item.meetingRecordVo.meetingAddress}}
- </text>
- </view>
- <view class='myrenewalcontract-detail-position'>
- <van-icon name='friends' ref='saveChildRef4'>
- </van-icon>
- <text class="over-text">
- 参会{{item.meetingRecordVo.meetingNum}}人
- </text>
- </view>
- <view a:if="{{type=='meeting-detail' || type=='subscribe-audit'}}" class='service border-radius-20'>
- <image src='/static/img/air.png' mode=" ">
- </image>
- <text>
- 预约人:{{item.name}}【{{item.phone}}】
- </text>
- </view>
- </view>
- <view a:if="{{type=='my-renewalContract' && item.status==1}}" class='btn-area'>
- <btn onTap='antmoveAction' data-antmove-tap='cancel'>
- 取消
- </btn>
- </view>
- <view a:if="{{type=='renewalContract-audit'&& item.status==1}}" class='btn-area'>
- <btn data-id='2' onTap='antmoveAction' data-antmove-tap='gotoFun'>
- 审核
- </btn>
- </view>
- </view>
|