|
@@ -5,7 +5,7 @@
|
|
line-height: 40px; background-color: #fafafa;"
|
|
line-height: 40px; background-color: #fafafa;"
|
|
>
|
|
>
|
|
当前所在位置:
|
|
当前所在位置:
|
|
- <BreadcrumbItem>离线考试</BreadcrumbItem>
|
|
|
|
|
|
+ <BreadcrumbItem>{{ isCug ? "考查课考核" : "离线考试" }}</BreadcrumbItem>
|
|
</Breadcrumb>
|
|
</Breadcrumb>
|
|
|
|
|
|
<div class="home">
|
|
<div class="home">
|
|
@@ -18,6 +18,7 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import { mapGetters } from "vuex";
|
|
import EcsOfflineList from "./OfflineExamList.vue";
|
|
import EcsOfflineList from "./OfflineExamList.vue";
|
|
|
|
|
|
export default {
|
|
export default {
|
|
@@ -30,6 +31,9 @@ export default {
|
|
courses: [],
|
|
courses: [],
|
|
};
|
|
};
|
|
},
|
|
},
|
|
|
|
+ computed: {
|
|
|
|
+ ...mapGetters(["isCug"]),
|
|
|
|
+ },
|
|
async mounted() {
|
|
async mounted() {
|
|
try {
|
|
try {
|
|
window._hmt.push(["_trackEvent", "离线考试页面", "进入列表", ""]);
|
|
window._hmt.push(["_trackEvent", "离线考试页面", "进入列表", ""]);
|