分包和预下载
This commit is contained in:
parent
14cd4b5ca7
commit
0c171b8171
@ -27,12 +27,6 @@
|
|||||||
"navigationBarTitleText": "分类"
|
"navigationBarTitleText": "分类"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"path": "pages/test-page/test-page",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "测试页面"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"path": "pages/test-page/test-camera",
|
"path": "pages/test-page/test-camera",
|
||||||
"style": {
|
"style": {
|
||||||
@ -105,5 +99,24 @@
|
|||||||
"color": "",
|
"color": "",
|
||||||
"backgroundColor": ""
|
"backgroundColor": ""
|
||||||
},
|
},
|
||||||
|
"subPackages": [
|
||||||
|
{
|
||||||
|
"root": "sub-packages/test-page",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"path": "pages/test-page",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "测试页面"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"preloadRule": {
|
||||||
|
"pages/my-info/my-info": {
|
||||||
|
"network": "all",
|
||||||
|
"packages": ["sub-packages/test-page"]
|
||||||
|
}
|
||||||
|
},
|
||||||
"uniIdRouter": {}
|
"uniIdRouter": {}
|
||||||
}
|
}
|
||||||
|
@ -6,11 +6,11 @@
|
|||||||
<button type="warn" @click="toTestPage">进入测试页面</button>
|
<button type="warn" @click="toTestPage">进入测试页面</button>
|
||||||
<button class="button" type="primary" @click="getLocation">获取位置</button>
|
<button class="button" type="primary" @click="getLocation">获取位置</button>
|
||||||
|
|
||||||
<navigator url="/pages/test-page/test-crypto">
|
<navigator url="/sub-packages/test-page/pages/test-crypto">
|
||||||
<button>加解密测试页面</button>
|
<button>加解密测试页面</button>
|
||||||
</navigator>
|
</navigator>
|
||||||
|
|
||||||
<navigator url="/pages/test-page/test-camera">
|
<navigator url="/sub-packages/test-page/pages/test-camera">
|
||||||
<button>打开相机测试页面</button>
|
<button>打开相机测试页面</button>
|
||||||
</navigator>
|
</navigator>
|
||||||
</view>
|
</view>
|
||||||
@ -19,7 +19,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
function toTestPage(){
|
function toTestPage(){
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/test-page/test-page',
|
url: '/sub-packages/test-page/pages/test-page',
|
||||||
animationDuration: 100
|
animationDuration: 100
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import {useUserStore} from "../../stores/modules/user";
|
import {useUserStore} from "../../../stores/modules/user";
|
||||||
import {reactive} from "vue";
|
import {reactive} from "vue";
|
||||||
const ctx = reactive({
|
const ctx = reactive({
|
||||||
request: {
|
request: {
|
Loading…
Reference in New Issue
Block a user