新增定位页面

This commit is contained in:
weipengfei 2023-11-16 19:10:30 +08:00
parent a5f98d1746
commit 753c4ed835
2 changed files with 32 additions and 0 deletions

View File

@ -255,6 +255,14 @@
"navigationBarTextStyle": "white"
}
},
{
"path" : "pages/select_address/select_address",
"style" :
{
"navigationBarTitleText" : "选择地址",
"enablePullDownRefresh" : false
}
}
],
"subPackages": [{

View File

@ -0,0 +1,24 @@
<template>
<view class="">
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {},
onShow() {},
methods: {},
onPullDownRefresh() {
uni.stopPullDownRefresh()
}
}
</script>
<style lang="scss">
</style>