diff --git a/src/pages/pc/article/ArticleIndex.vue b/src/pages/pc/article/ArticleIndex.vue
new file mode 100644
index 00000000..ade93155
--- /dev/null
+++ b/src/pages/pc/article/ArticleIndex.vue
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ base.currentDict.name }}
+
+
+
+
+ 开始学习
+
+
+
已学习5555个单词的1%
+
+
+
+
+
+
+
+
+
+
+
{{ base.currentDict.name }}
+
+
+
+
+
+
已学习5555个单词的1%
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/pc/article/ArticleIndexTEST.vue b/src/pages/pc/article/ArticleIndexTEST.vue
new file mode 100644
index 00000000..a6ea541e
--- /dev/null
+++ b/src/pages/pc/article/ArticleIndexTEST.vue
@@ -0,0 +1,164 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/pc/components/dialog/DictDiglog.vue b/src/pages/pc/components/dialog/DictDiglog.vue
index 3c39565c..d9884a8e 100644
--- a/src/pages/pc/components/dialog/DictDiglog.vue
+++ b/src/pages/pc/components/dialog/DictDiglog.vue
@@ -1,8 +1,7 @@
+
+
+
+
+
+
+
+
+
+
+ {{ base.currentDict.name }}
+
+
+
+
+ 开始学习
+
+
+
已学习5555个单词的1%
+
+
+
+
+
+
+
+
+
+
+
+
{{ base.currentDict.name }}
+
+
+
+
+
+
已学习5555个单词的1%
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/pc/index.vue b/src/pages/pc/index.vue
index 4d5863f5..fb429cd6 100644
--- a/src/pages/pc/index.vue
+++ b/src/pages/pc/index.vue
@@ -21,12 +21,17 @@ const router = useRouter()
+
+
+
+ 主页
+
单词
-
+
文章
diff --git a/src/pages/pc/practice/index.vue b/src/pages/pc/practice/index.vue
index 10b0ca22..6031a64f 100644
--- a/src/pages/pc/practice/index.vue
+++ b/src/pages/pc/practice/index.vue
@@ -143,9 +143,7 @@ useStartKeyboardEventListener()
diff --git a/src/router.ts b/src/router.ts
index 6d1dd77c..751870ad 100644
--- a/src/router.ts
+++ b/src/router.ts
@@ -20,15 +20,19 @@ import OtherSetting from "@/pages/mobile/my/setting/OtherSetting.vue";
import WordHome from "@/pages/pc/word/WordHome.vue";
import PC from "@/pages/pc/index.vue";
import Dict2 from '@/pages/pc/dict2/index.vue'
+import ArticleIndex from "@/pages/pc/article/ArticleIndex.vue";
+import HomeIndex from "@/pages/pc/home/HomeIndex.vue";
export const routes: RouteRecordRaw[] = [
{
path: '/', component: PC,
redirect: '/word',
children: [
+ {path: 'home', component: HomeIndex},
{path: 'word', component: WordHome},
{path: 'dict', component: Dict2},
{path: 'practice', component: Practice},
+ {path: 'article', component: ArticleIndex},
]
},
{path: '/pc/dict', component: Dict},