123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- <template>
- <view class="safeArea">
- <view style="padding: 8rpx;">
- <view class="box1">
- <view>您所报考的<text v-if="listData.categoryName">【{{ listData.categoryName }}】</text>专业</view>
- <view class="status">
- <u-icon name="checkmark-circle" color="#34C759" size="32"></u-icon>
- <text style="margin-left: 8rpx;">{{ listData.subscribeStatus === 1 ? '考试预约成功' : '预约异常' }}</text>
- </view>
- </view>
- <view class="box2">
- <view class="title2">报考学员信息</view>
- <u-line color="#D6D6DB" />
- <view class="boxMain">
- <view class="list_item">
- <view class="txt_left">姓名</view>
- <view class="txt_right">{{ listData.realname }}</view>
- </view>
- <view class="list_item">
- <view class="txt_left">身份证</view>
- <view class="txt_right">{{ listData.idCard }}</view>
- </view>
- <view class="list_item">
- <view class="txt_left">考试身份</view>
- <view class="txt_right">{{ listData.studentType === 1 ? '非补考学员' : listData.studentType === 2 ? '补考学员' : '' }}</view>
- </view>
- </view>
- </view>
- <view class="box2">
- <view class="title2">考试预约信息</view>
- <u-line color="#D6D6DB" />
- <view class="boxMain">
- <view class="list_item">
- <view class="txt_left">考试标题</view>
- <view class="txt_right txt_right1">{{listData.applyName}}</view>
- </view>
- <view class="list_item">
- <view class="txt_left">报名开放时间</view>
- <view class="txt_right">{{$method.timestampToTime(listData.applyStartTime)}} ~ {{$method.timestampToTime(listData.applyEndTime)}}</view>
- </view>
- <view class="list_item">
- <view class="txt_left">报考业务</view>
- <view class="txt_right" v-if="listData.categoryName">{{listData.categoryName}}专业</view>
- </view>
- <view class="list_item">
- <view class="txt_left">考试地点</view>
- <view class="txt_right">{{listData.applySiteAddress}}</view>
- </view>
- <view class="list_item">
- <view class="txt_left">考试时间</view>
- <view class="txt_right">{{$method.timestampToTime(listData.applySiteExamTime)}} {{listData.applySiteStartTime}} ~ {{listData.applySiteEndTime}}</view>
- </view>
- <view class="list_item" v-if="listData.applySiteAddressTrain">
- <view class="txt_left">考前培训地点</view>
- <view class="txt_right">{{listData.applySiteAddressTrain}}</view>
- </view>
- <view class="list_item" v-if="listData.applySiteExamTrainTime && listData.applySiteStartTrainTime && listData.applySiteEndTrainTime">
- <view class="txt_left">考前培训时间</view>
- <view class="txt_right">{{$method.timestampToTime(listData.applySiteExamTrainTime)}} {{listData.applySiteStartTrainTime}} ~ {{listData.applySiteEndTrainTime}}</view>
- </view>
- <view class="tip">*您可在“我的>我的考试预约”中查询</view>
- </view>
- </view>
- <view style="height: 120rpx;"></view>
- <view class="foot safeArea">
- <view class="btn return" @click="backPage">返回我的网课</view>
- <view class="btn view" @click="goMent">查看【我的考试预约】</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { mapGetters } from 'vuex';
- export default {
- components: {},
- data() {
- return {
- subscribeId: null,
- listData: {},
- orderGoodsId:''
- };
- },
- onLoad(option) {
- this.subscribeId = Number(option.subscribeId);
- this.getInfo();
- },
- onShow() {},
- methods: {
- goMent(){
- uni.redirectTo({
- url: '/pages2/exam/exam_appointment'
- });
- },
- backPage(){
- uni.redirectTo({
- url: '/pages2/wd/class'
- });
- },
- getInfo() {
- this.$api.getApplylist({ subscribeId: this.subscribeId }).then(res => {
- if (res.data.code === 200 && res.data.rows.length) {
- if(res.data.rows[0].applySiteStartTime){
- res.data.rows[0].applySiteStartTime = res.data.rows[0].applySiteStartTime
- }
- if(res.data.rows[0].applySiteEndTime){
- res.data.rows[0].applySiteEndTime = res.data.rows[0].applySiteEndTime
- }
- if(res.data.rows[0].applySiteStartTrainTime){
- res.data.rows[0].applySiteStartTrainTime = res.data.rows[0].applySiteStartTrainTime
- }
- if(res.data.rows[0].applySiteEndTrainTime){
- res.data.rows[0].applySiteEndTrainTime = res.data.rows[0].applySiteEndTrainTime
- }
- this.listData = res.data.rows[0];
- }
- });
- }
- },
- onReachBottom() {},
- computed: { ...mapGetters(['userInfo']) }
- };
- </script>
- <style>
- ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- }
- page {
- background-color: #eaeef1;
- }
- </style>
- <style scoped lang="scss">
- .tip {
- font-size: 24rpx;
- color: #999999;
- height: 40rpx;
- line-height: 40rpx;
- }
- .title2 {
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- height: 90rpx;
- line-height: 90rpx;
- margin-left: 30rpx;
- }
- .box2 {
- width: 100%;
- background: #ffffff;
- border-radius: 16rpx;
- margin-top: 16rpx;
- .boxMain {
- padding: 30rpx;
- }
- .list_item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- line-height: 1;
- &:not(:last-child) {
- margin-bottom: 57rpx;
- }
- .txt_left {
- font-size: 24rpx;
- color: #666666;
- }
- .txt_right {
- color: #333333;
- font-size: 30rpx;
- font-weight: bold;
- width: 75%;
- text-align: right;
- &.txt_right1 {
- width: 370rpx;
- // text-align: left;
- line-height: 1.4;
- }
- }
- }
- }
- .box1 {
- width: 100%;
- background: #ffffff;
- border-radius: 16rpx;
- padding: 15rpx;
- text-align: center;
- .status {
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #34c759;
- margin: 19rpx 0;
- }
- }
- .foot {
- height: 98rpx;
- width: 100%;
- position: fixed;
- bottom: 0;
- left: 0;
- background: rgba(255, 255, 255, 0.98);
- box-sizing: unset;
- display: flex;
- justify-content: center;
- align-items: center;
- .btn {
- height: 80rpx;
- line-height: 80rpx;
- border-radius: 40rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- text-align: center;
- }
- .return {
- width: 264rpx;
- background: #f5f5f5;
- color: #007aff;
- }
- .view {
- width: 374rpx;
- background: #007aff;
- color: #ffffff;
- margin-left: 24rpx;
- }
- }
- </style>
|