a635b79b by simon

#24 处理

1 parent 7968d17a
......@@ -62,7 +62,7 @@ export default {
},
methods: {
onNavHandler() {
console.log("this.dataObj:", this.dataObj);
// console.log("this.dataObj:", this.dataObj);
let path = this.dataObj && this.dataObj.path || "";
if (path) {
this.$router.push({
......
<template>
<div class="content">
{{locale == 'en' ? 'Currently no position opening' : locale == 'zh' ? '暂无空缺' : '暫無空缺'}}
</div>
</template>
<style lang="scss" scoped>
.content {
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
height: 500px;
}
</style>
<script>
export default {};
export default {
computed: {
locale() {
return this.$i18n.locale || "tc";
}
}
};
</script>
\ No newline at end of file
......