|
|
@@ -418,7 +418,7 @@
|
|
|
type="primary"
|
|
|
class="btn"
|
|
|
@click="appointment(item)"
|
|
|
- >{{ item.subscribeSign == 4 ? "预约记录" : "预约考试" }}
|
|
|
+ >{{ item.subscribeSign == 1 ? "预约考试" : "预约记录" }}
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
v-if="item.openQuestion == 1"
|
|
|
@@ -1159,7 +1159,7 @@ export default {
|
|
|
this.courseList = res.rows;
|
|
|
this.total = res.total;
|
|
|
//判断是否有商品可以预约考试
|
|
|
- this.getGoodsApply(res.rows);
|
|
|
+ // this.getGoodsApply(res.rows);
|
|
|
})
|
|
|
.finally(() => {
|
|
|
this.loading = false;
|
|
|
@@ -1193,7 +1193,7 @@ export default {
|
|
|
);
|
|
|
},
|
|
|
appointment(item) {
|
|
|
- if (item.subscribeSign == 4) {
|
|
|
+ if (item.subscribeSign !== 1) {
|
|
|
this.$router.push({
|
|
|
path: "/person-center/my-examination/index"
|
|
|
});
|