diff --git a/src/views/cet/cet-ana-2.vue b/src/views/cet/cet-ana-2.vue
index 51447ab..7a5cce4 100644
--- a/src/views/cet/cet-ana-2.vue
+++ b/src/views/cet/cet-ana-2.vue
@@ -151,8 +151,7 @@ export default {
}),
};
});
- this.collegeMajor = [this.collegeMajorOptions[0].value];
- console.log(this.collegeMajorOptions);
+ this.collegeMajor = ['东语学院', '日语'];
},
// 查询数据
async query() {
@@ -162,7 +161,7 @@ export default {
//如果this.collegeMajor为null则先赋个值
if (!this.collegeMajor) {
- this.collegeMajor = ['东语学院'];
+ this.collegeMajor = ['东语学院', '日语'];
}
let major = null;
let college = null;
diff --git a/src/views/cet/cet-ana-3.vue b/src/views/cet/cet-ana-3.vue
index d710c77..b113192 100644
--- a/src/views/cet/cet-ana-3.vue
+++ b/src/views/cet/cet-ana-3.vue
@@ -4,7 +4,7 @@