枕头定制小程序项目
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.
 
 
 
 
 

39 lines
565 B

<template>
<view>
<view class="person_box">
个人信息
</view>
<view class="address_box" @click="returnAddress">
收货地址管理
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
returnAddress(){
uni.navigateTo({
url:"/pages/pages_zhentou/myPage/address"
})
},
}
}
</script>
<style lang="scss" scoped>
.address_box{
width: 95%;
height: 100rpx;
background: #fff;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
}
</style>