You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
529 B
30 lines
529 B
<template>
|
|
<view class="address-page">
|
|
<address-list :page-mode="true" :hide-header="true" @close="goBack" @selectAddress="selectAddress" />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import addressList from '@/package1/address/addressList.vue'
|
|
|
|
export default {
|
|
components: {
|
|
addressList
|
|
},
|
|
methods: {
|
|
goBack() {
|
|
uni.navigateBack()
|
|
},
|
|
selectAddress(item) {
|
|
uni.setStorageSync('selectedAddress', item)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.address-page {
|
|
min-height: 100vh;
|
|
background: #fff;
|
|
}
|
|
</style>
|
|
|