diff --git a/components/Carousel.vue b/components/Carousel.vue index 7767784..dfc6dfd 100644 --- a/components/Carousel.vue +++ b/components/Carousel.vue @@ -15,27 +15,31 @@ onMounted(() => { diff --git a/components/Typography.vue b/components/Typography.vue index 94a1a06..8c56708 100644 --- a/components/Typography.vue +++ b/components/Typography.vue @@ -6,6 +6,8 @@ $defineProps<{ topicClass?: string description?: string descriptionClass?: string + linkClass?: string + linkBtnClass?: string link?: { href: string name: string @@ -27,8 +29,8 @@ $defineProps<{ description }}

- - + + {{ link?.name }} diff --git a/locales/en-UK.json b/locales/en-UK.json index 3f9708c..d75a2d0 100644 --- a/locales/en-UK.json +++ b/locales/en-UK.json @@ -198,5 +198,10 @@ "wechat": "微信公众号:ttsetset", "waiting": "waiting...", "notfound": "not found", - "copylink": "Copy share link" + "copylink": "Copy share link", + "filtrate": "Filtrate", + "filtrate.discription": "Filter by condition", + "level": [ + "EASY", "NORMAL", "HARD" + ] } diff --git a/locales/zh-CN.json b/locales/zh-CN.json index 70749c7..1b8080c 100644 --- a/locales/zh-CN.json +++ b/locales/zh-CN.json @@ -194,5 +194,10 @@ "wechat": "微信公众号", "waiting": "建设中...", "notfound": "未知区域", - "copylink": "复制分享链接" + "copylink": "复制分享链接", + "filtrate": "筛选", + "filtrate.discription": "根据条件过滤", + "level": [ + "入门", "中级", "专家" + ] } diff --git a/pages/community/vamx.vue b/pages/community/vamx.vue index 55314cf..1478ad6 100644 --- a/pages/community/vamx.vue +++ b/pages/community/vamx.vue @@ -19,16 +19,16 @@ const list = computed(() => { const status = [ { - color: 'bg-rose', - text: '入门', + color: 'bg-green', + text: 'level[0]', }, { color: 'bg-amber', - text: '中级', + text: 'level[1]', }, { - color: 'bg-green', - text: '专家', + color: 'bg-rose', + text: 'level[2]', }, ] @@ -39,8 +39,8 @@ const status = [