|
@@ -397,7 +397,9 @@
|
|
|
v-if="item.examApplyGoodsList"
|
|
|
@click="appointment(item)"
|
|
|
>
|
|
|
- <view class="exam_word ones">预约考试</view>
|
|
|
+ <view class="exam_word ones">{{
|
|
|
+ item.subscribeSign == 4 ? "预约记录" : "预约考试"
|
|
|
+ }}</view>
|
|
|
</view>
|
|
|
<view
|
|
|
class="box_appoint"
|
|
@@ -572,6 +574,12 @@
|
|
|
>
|
|
|
<view class="course_lefts">
|
|
|
<view class="course_title">{{ appoint.applyName }}</view>
|
|
|
+ <view
|
|
|
+ style="color: #999999; margin-top: 10rpx; font-size: 24rpx"
|
|
|
+ >
|
|
|
+ <text style="margin-right: 8rpx">预约人数</text>
|
|
|
+ {{ appoint.subscribeNum }}/{{ appoint.applyNum }}
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="course_rights" @click="jumpTest(appoint)">
|
|
|
<view
|
|
@@ -1398,6 +1406,10 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
appointment(item) {
|
|
|
+ if (item.subscribeSign == 4) {
|
|
|
+ this.$navTo.togo("/pages2/exam/exam_appointment");
|
|
|
+ return;
|
|
|
+ }
|
|
|
this.appointItemIndex = item;
|
|
|
this.appointTestList = item.examApplyGoodsList;
|
|
|
this.appointTestShow = true;
|