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.
40 lines
802 B
40 lines
802 B
<template>
|
|
<view class="address-box">
|
|
<view>收货地址</view>
|
|
<view class="box1" style="display: flex;padding: 20px;">
|
|
<view style="flex: 1;">
|
|
<view style="height: 21px;line-height: 21px;display: flex;">
|
|
<text style="font-size: 15px;font-weight: 700;">沁园春第三食堂A20窗口</text>
|
|
</view>
|
|
<view style="text-align: right;margin-left: 30px;color: #777;width: 73px;">
|
|
刘柳柳 18827381928
|
|
</view>
|
|
</view>
|
|
<view style="width: 18px;padding-top: 10px;">
|
|
编辑
|
|
</view>
|
|
</view>
|
|
<view class="">
|
|
新增地址
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
selected: 'phone'
|
|
}
|
|
},
|
|
methods: {
|
|
openAddressBook(){
|
|
this.$refs.bookPopup.open('bottom')
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|