mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
wip: pages
This commit is contained in:
parent
d6b71321b5
commit
356ab3b666
@ -2,10 +2,13 @@
|
|||||||
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app';
|
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app';
|
||||||
import { useAuthStore } from '@/state/modules/auth';
|
import { useAuthStore } from '@/state/modules/auth';
|
||||||
import { setupInterceptors } from '@/utils/interceptors';
|
import { setupInterceptors } from '@/utils/interceptors';
|
||||||
|
import { useAppStore } from '@/state/modules/app';
|
||||||
|
|
||||||
onLaunch(() => {
|
onLaunch(() => {
|
||||||
console.log('App Launch');
|
console.log('App Launch');
|
||||||
setupInterceptors();
|
setupInterceptors();
|
||||||
|
const appStore = useAppStore();
|
||||||
|
appStore.initialize();
|
||||||
});
|
});
|
||||||
onShow(() => {
|
onShow(() => {
|
||||||
const authStore = useAuthStore();
|
const authStore = useAuthStore();
|
||||||
|
15
src/components/AppProvider/inedx.vue
Normal file
15
src/components/AppProvider/inedx.vue
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<script lang="ts" setup name="AppProvider">
|
||||||
|
import { useAppStore } from '@/state/modules/app';
|
||||||
|
|
||||||
|
const appStore = useAppStore();
|
||||||
|
console.log('getPages', appStore.getPages);
|
||||||
|
// eslint-disable-next-line no-undef
|
||||||
|
let currentPages = getCurrentPages();
|
||||||
|
console.log('currentPages', currentPages);
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
<slot></slot>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<style scoped></style>
|
@ -18,6 +18,9 @@
|
|||||||
},
|
},
|
||||||
/* 模块配置 */
|
/* 模块配置 */
|
||||||
"modules" : {},
|
"modules" : {},
|
||||||
|
"optimization": {
|
||||||
|
"subPackages": true
|
||||||
|
},
|
||||||
/* 应用发布信息 */
|
/* 应用发布信息 */
|
||||||
"distribute" : {
|
"distribute" : {
|
||||||
/* android打包配置 */
|
/* android打包配置 */
|
||||||
@ -58,10 +61,16 @@
|
|||||||
"minified" : true
|
"minified" : true
|
||||||
},
|
},
|
||||||
"usingComponents" : true,
|
"usingComponents" : true,
|
||||||
"permission" : {}
|
"permission" : {},
|
||||||
|
"optimization": {
|
||||||
|
"subPackages": true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"mp-alipay" : {
|
"mp-alipay" : {
|
||||||
"usingComponents" : true
|
"usingComponents" : true,
|
||||||
|
"optimization": {
|
||||||
|
"subPackages": true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"mp-baidu" : {
|
"mp-baidu" : {
|
||||||
"usingComponents" : true
|
"usingComponents" : true
|
||||||
@ -81,6 +90,6 @@
|
|||||||
"devServer" : {
|
"devServer" : {
|
||||||
"https" : false
|
"https" : false
|
||||||
},
|
},
|
||||||
"title" : "uni-preset-vue3"
|
"title" : "uniapp_vue3_vite_ts"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,9 @@
|
|||||||
"path": "pages/index/index",
|
"path": "pages/index/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "首页"
|
"navigationBarTitleText": "首页"
|
||||||
|
},
|
||||||
|
"meta": {
|
||||||
|
"ignoreAuth": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -38,6 +41,28 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"subPackages": [{
|
||||||
|
"root": "pagesA",
|
||||||
|
"pages": [{
|
||||||
|
"path": "list/test1/index",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "test1"
|
||||||
|
}
|
||||||
|
},{
|
||||||
|
"path": "list/test2/index",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "test2"
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
}, {
|
||||||
|
"root": "pagesB",
|
||||||
|
"pages": [{
|
||||||
|
"path": "detail/index",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "Detail"
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
}],
|
||||||
"globalStyle": {
|
"globalStyle": {
|
||||||
"navigationBarTextStyle": "black",
|
"navigationBarTextStyle": "black",
|
||||||
"navigationBarTitleText": "uni-app",
|
"navigationBarTitleText": "uni-app",
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import BasicButton from '@/components/BasicButton/index.vue';
|
import BasicButton from '@/components/BasicButton/index.vue';
|
||||||
|
import AppProvider from '@/components/AppProvider/inedx.vue';
|
||||||
import { router } from '@/utils/router';
|
import { router } from '@/utils/router';
|
||||||
import { useAuthStore } from '@/state/modules/auth';
|
import { useAuthStore } from '@/state/modules/auth';
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
@ -22,6 +23,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<AppProvider>
|
||||||
<view class="container">
|
<view class="container">
|
||||||
<view class="head-wrap">
|
<view class="head-wrap">
|
||||||
<view class="avatar">
|
<view class="avatar">
|
||||||
@ -29,12 +31,17 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="desc">{{ isLogin ? '测试' : '未登入' }}</view>
|
<view class="desc">{{ isLogin ? '测试' : '未登入' }}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="cell"><BasicButton @click="handleJump('/pages/log/index')">log</BasicButton></view>
|
<view class="cell"
|
||||||
<view class="cell" v-if="isLogin"><BasicButton @click="handleLoginOut">登出</BasicButton></view>
|
><BasicButton @click="handleJump('/pages/log/index')">log</BasicButton></view
|
||||||
|
>
|
||||||
|
<view class="cell" v-if="isLogin"
|
||||||
|
><BasicButton @click="handleLoginOut">登出</BasicButton></view
|
||||||
|
>
|
||||||
<view class="cell" v-else
|
<view class="cell" v-else
|
||||||
><BasicButton @click="handleJump('/pages/login/index')">登入</BasicButton></view
|
><BasicButton @click="handleJump('/pages/login/index')">登入</BasicButton></view
|
||||||
>
|
>
|
||||||
</view>
|
</view>
|
||||||
|
</AppProvider>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -1,11 +1,15 @@
|
|||||||
<script lang="ts" setup></script>
|
<script lang="ts" setup>
|
||||||
|
import AppProvider from '@/components/AppProvider/inedx.vue';
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<AppProvider>
|
||||||
<view class="container"> 页面构建中...54264536 </view>
|
<view class="container"> 页面构建中...54264536 </view>
|
||||||
<view class="flex-row">
|
<view class="flex-row">
|
||||||
<view>item1</view>
|
<view>item1</view>
|
||||||
<view>item2</view>
|
<view>item2</view>
|
||||||
</view>
|
</view>
|
||||||
|
</AppProvider>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import BasicButton from '@/components/BasicButton/index.vue';
|
import BasicButton from '@/components/BasicButton/index.vue';
|
||||||
|
import AppProvider from '@/components/AppProvider/inedx.vue';
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { router } from '@/utils/router';
|
import { router } from '@/utils/router';
|
||||||
const title = ref('uni-app vue3 ts --Vite');
|
const title = ref('uni-app vue3 ts --Vite');
|
||||||
@ -8,6 +9,7 @@
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
|
<AppProvider>
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<image class="logo" src="/static/svg/LOGO.svg" />
|
<image class="logo" src="/static/svg/LOGO.svg" />
|
||||||
<view class="text-area">
|
<view class="text-area">
|
||||||
@ -15,6 +17,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<BasicButton @click="handleGetStarted">Get Started → </BasicButton>
|
<BasicButton @click="handleGetStarted">Get Started → </BasicButton>
|
||||||
</view>
|
</view>
|
||||||
|
</AppProvider>
|
||||||
</template>
|
</template>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.content {
|
.content {
|
||||||
|
3
src/pagesA/list/test1/index.vue
Normal file
3
src/pagesA/list/test1/index.vue
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<script lang="ts" setup></script>
|
||||||
|
<template> Test1 </template>
|
||||||
|
<style scoped></style>
|
3
src/pagesA/list/test2/index.vue
Normal file
3
src/pagesA/list/test2/index.vue
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<script lang="ts" setup></script>
|
||||||
|
<template> Test2 </template>
|
||||||
|
<style scoped></style>
|
3
src/pagesB/detail/index.vue
Normal file
3
src/pagesB/detail/index.vue
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<script lang="ts" setup></script>
|
||||||
|
<template> Detail </template>
|
||||||
|
<style scoped></style>
|
35
src/state/modules/app.ts
Normal file
35
src/state/modules/app.ts
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
import { defineStore } from 'pinia';
|
||||||
|
import { Pages } from '@/types/pages';
|
||||||
|
import { pagesMap } from '@/utils/router/pages';
|
||||||
|
|
||||||
|
interface AppStore {
|
||||||
|
pages: Map<string, Pages> | undefined;
|
||||||
|
currentPage: Pages | undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const useAppStore = defineStore({
|
||||||
|
id: 'app',
|
||||||
|
state: (): AppStore => ({
|
||||||
|
pages: undefined,
|
||||||
|
currentPage: undefined,
|
||||||
|
}),
|
||||||
|
getters: {
|
||||||
|
getPages(state) {
|
||||||
|
return state.pages;
|
||||||
|
},
|
||||||
|
getCurrentPage(state) {
|
||||||
|
return state.currentPage;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
initialize() {
|
||||||
|
this.setPages();
|
||||||
|
},
|
||||||
|
setPages() {
|
||||||
|
this.pages = pagesMap;
|
||||||
|
},
|
||||||
|
setCurrentPage(path: string) {
|
||||||
|
this.currentPage = this.pages?.get(path);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
15
src/types/pages.d.ts
vendored
Normal file
15
src/types/pages.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
export interface Pages extends Record<string, any> {
|
||||||
|
path: string;
|
||||||
|
meta?: {
|
||||||
|
ignoreAuth?: boolean;
|
||||||
|
};
|
||||||
|
style: {
|
||||||
|
navigationBarTitleText: string;
|
||||||
|
[key: string]: string;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SubPackages {
|
||||||
|
root: string;
|
||||||
|
pages: Pages[];
|
||||||
|
}
|
0
src/utils/router/constant.ts
Normal file
0
src/utils/router/constant.ts
Normal file
23
src/utils/router/pages.ts
Normal file
23
src/utils/router/pages.ts
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
import pagesJson from '@/pages.json';
|
||||||
|
import { Pages } from '@/types/pages';
|
||||||
|
|
||||||
|
const { pages, subPackages } = pagesJson;
|
||||||
|
|
||||||
|
// 将pages.json转换成Map对象,path为key
|
||||||
|
const pagesMap = new Map<string, Pages>();
|
||||||
|
|
||||||
|
pages.forEach((page) => {
|
||||||
|
pagesMap.set(page.path, page as Pages);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (Array.isArray(subPackages) && subPackages.length) {
|
||||||
|
subPackages.forEach((el) => {
|
||||||
|
const rootPath = el.root;
|
||||||
|
el.pages.forEach((page) => {
|
||||||
|
page.path = rootPath + '/' + page.path;
|
||||||
|
pagesMap.set(page.path, page as Pages);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export { pagesMap };
|
Loading…
x
Reference in New Issue
Block a user