|
|
@@ -39,7 +39,7 @@
|
|
|
<img :src="getImageUrl(item.json.url)" alt="">
|
|
|
<div class="course_content">
|
|
|
<div class="div_title">
|
|
|
- <span>{{ lang.ssTermUp }}</span>
|
|
|
+ <span v-if="lang.lang != 'hk'">{{ lang.ssTermUp }}</span>
|
|
|
<el-tooltip class="item" effect="dark" :content="item.json.title" placement="top">
|
|
|
<div class="div_title_text">{{ item.json.title }}</div>
|
|
|
</el-tooltip>
|
|
|
@@ -305,7 +305,7 @@ const selectGrand = ref(lang.ssGradeThree)
|
|
|
const selectmod = ref(lang.ssModuleOne)
|
|
|
const gotype = pageGotype()
|
|
|
|
|
|
-const classList = ref([
|
|
|
+const classList = ref(lang.lang != 'hk' ? [
|
|
|
{value: 3, label: lang.ssGradeThree},
|
|
|
{value: 4, label: lang.ssGradeFour},
|
|
|
{value: 5, label: lang.ssGradeFive},
|
|
|
@@ -313,6 +313,13 @@ const classList = ref([
|
|
|
{value: 7, label: lang.ssGradeSeven},
|
|
|
{value: 8, label: lang.ssGradeEight},
|
|
|
{value: 9, label: lang.ssGradeNine}
|
|
|
+] : [
|
|
|
+ {value: 4, label: lang.ssGradeFour},
|
|
|
+ {value: 5, label: lang.ssGradeFive},
|
|
|
+ {value: 6, label: lang.ssGradeSix},
|
|
|
+ {value: 7, label: lang.ssGradeSeven},
|
|
|
+ {value: 8, label: lang.ssGradeEight},
|
|
|
+ {value: 9, label: lang.ssGradeNine}
|
|
|
])
|
|
|
|
|
|
const activeyear = ref(2025)
|
|
|
@@ -347,7 +354,7 @@ const modData = ref(courseDataJson.mod)
|
|
|
const AI6Data = ref(courseDataJson.AI6one)
|
|
|
const AI6TwoData = ref(courseDataJson.AI6Two)
|
|
|
|
|
|
-const activegrade = ref('3')
|
|
|
+const activegrade = ref(lang.lang != 'hk' ? '3' : '4')
|
|
|
const activeterm = ref('1')
|
|
|
const activeCurrentData = ref([])
|
|
|
|