|
...
|
...
|
@@ -2,7 +2,7 @@ |
|
|
|
<div class="md:p-10 p-4 pt-0" style="min-height: calc(100vh - 320px)">
|
|
|
|
<HomeRecommend
|
|
|
|
:recommendList="list"
|
|
|
|
:navTitle="findLabelByAlias(name as string, sortList as any)"
|
|
|
|
:navTitle="findLabelByAlias(name as string, sortList)"
|
|
|
|
navIcon="tag"
|
|
|
|
/>
|
|
|
|
<el-pagination
|
|
...
|
...
|
@@ -21,7 +21,7 @@ |
|
|
|
import type { appType } from "~/api/types/app";
|
|
|
|
import { getAppList } from "~/api/app";
|
|
|
|
import type { classifyType } from "~/api/types/classify";
|
|
|
|
const sortList = useState<classifyType>("sortTree");
|
|
|
|
const sortList = useState<classifyType[]>("sortTree");
|
|
|
|
const route = useRoute();
|
|
|
|
const router = useRouter();
|
|
|
|
const { name } = route.params;
|
...
|
...
|
|