2022-11-25 10:58:46 +08:00
|
|
|
<template>
|
|
|
|
|
<view class="app">
|
|
|
|
|
<view class="address" v-for="(item,index) in goodPatient" :key="index">
|
|
|
|
|
<view class="addressinfo">
|
|
|
|
|
<view class="item" @tap='goorder(item)'>
|
|
|
|
|
{{item.receiveName}},
|
|
|
|
|
{{item.receivePhone}}
|
|
|
|
|
</view>
|
|
|
|
|
<view class="item detail" @tap='goorder(item)'>
|
2023-01-12 16:16:36 +08:00
|
|
|
{{item.areaName}}{{item.receiveAddress}}
|
2022-11-25 10:58:46 +08:00
|
|
|
</view>
|
2023-01-12 16:16:36 +08:00
|
|
|
<view class="item detail" style="border: none;font-size: 32rpx;margin-top: 40rpx;">
|
|
|
|
|
<view class="" style='width: 50%;display: inline-block;'>
|
|
|
|
|
<view class="" style="display: inline-block;">
|
|
|
|
|
默认地址
|
|
|
|
|
</view>
|
|
|
|
|
<view class="" style="transform: translateY(16%);display: inline-block;margin-left: 20rpx;">
|
|
|
|
|
<u-switch v-model="item.defaultAddressFlag" size='36' @change='change(item)'></u-switch>
|
|
|
|
|
</view>
|
2022-11-25 10:58:46 +08:00
|
|
|
</view>
|
2023-01-12 16:16:36 +08:00
|
|
|
<view class="" style="display: inline-block;width: 50%;">
|
|
|
|
|
<view class="update">
|
|
|
|
|
<view class="up ups" @tap='updataxg(item)'>
|
|
|
|
|
修改
|
|
|
|
|
</view>
|
|
|
|
|
<view class="up" @tap='del(item)'>
|
|
|
|
|
删除
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2022-11-25 10:58:46 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="ADDress" @tap='add()'>
|
|
|
|
|
<image src="../../static/add.png" mode=""></image>
|
|
|
|
|
<span class="ADDtext">
|
2022-12-01 16:59:32 +08:00
|
|
|
添加地址
|
2022-11-25 10:58:46 +08:00
|
|
|
</span>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- 弹框 -->
|
2023-01-12 16:16:36 +08:00
|
|
|
<u-popup v-model="show" mode="center" width="85%" height="600rpx" border-radius="30" @close='cencel()'>
|
|
|
|
|
<view class="payment" @click.stop=''>
|
2022-11-25 10:58:46 +08:00
|
|
|
<span>{{shipAddress}}</span>
|
|
|
|
|
<view class="cencel" @tap="cencel()">
|
|
|
|
|
<image src="../../static/gb.png" mode=""></image>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="addinfos">
|
|
|
|
|
<u-field v-model="infolist.receiveName" label="收货人" placeholder="姓名" class="items" maxlength='10'>
|
|
|
|
|
</u-field>
|
|
|
|
|
<u-field v-model="infolist.receivePhone" label="手机号" placeholder="电话" class="items" maxlength='11'>
|
|
|
|
|
</u-field>
|
2023-01-12 16:16:36 +08:00
|
|
|
<view class="area" @click="showPicker">
|
|
|
|
|
<!-- <view class="area" @tap='areashow=true'> -->
|
|
|
|
|
<u-field v-model="infolist.address" label="区域" placeholder="请选择" class="items" disabled>
|
2022-11-25 10:58:46 +08:00
|
|
|
</u-field>
|
2023-02-24 14:35:29 +08:00
|
|
|
<image src="../../static/huijiantou.png" mode=""></image>
|
2022-11-25 10:58:46 +08:00
|
|
|
</view>
|
|
|
|
|
<u-field v-model="infolist.receiveAddress" label-width="170" label="详细地址" placeholder="如街道、门牌号、小区等"
|
|
|
|
|
class="items" maxlength='50'>
|
|
|
|
|
</u-field>
|
2023-01-12 16:16:36 +08:00
|
|
|
<!-- <view class="" style="font-size: 28rpx;height: 80rpx">
|
|
|
|
|
<view class="" style="display: inline-block;">
|
|
|
|
|
默认地址
|
|
|
|
|
</view>
|
|
|
|
|
<view class="" style="transform: translateY(8%);display: inline-block;margin-left: 20rpx;">
|
|
|
|
|
<u-switch v-model="infolist.defaultAddressFlag" size='32'></u-switch>
|
|
|
|
|
</view>
|
|
|
|
|
</view> -->
|
2022-11-25 10:58:46 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="save" @tap='submit()'>
|
|
|
|
|
保存
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</u-popup>
|
2023-01-12 16:16:36 +08:00
|
|
|
<!-- <u-select v-model="areashow" mode="mutil-column-auto" label-name='areaName' value-name='areaCode'
|
|
|
|
|
:list="arealist" @confirm="areaconfirm"></u-select> -->
|
2022-11-25 10:58:46 +08:00
|
|
|
<u-toast ref="uToast" />
|
2023-01-12 16:16:36 +08:00
|
|
|
<view class="" v-if="cityPickershow">
|
|
|
|
|
<m-city style='z-index: 10076;' :provinceData="list" headTitle="地区选择" ref="cityPicker"
|
|
|
|
|
@funcValue="getpickerParentValue" pickerSize="4">
|
|
|
|
|
</m-city>
|
|
|
|
|
</view>
|
2022-11-25 10:58:46 +08:00
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
goodPatientInfo,
|
|
|
|
|
addnursingStation,
|
|
|
|
|
delnursingStation,
|
|
|
|
|
nursingStationGoodsinfo,
|
|
|
|
|
updatenursingStation,
|
|
|
|
|
getSubordinateRegions,
|
2023-01-12 16:16:36 +08:00
|
|
|
getSubordinate,
|
|
|
|
|
updateDefaultAddress
|
2022-11-25 10:58:46 +08:00
|
|
|
} from '@/api/modifyAddress/modifyAddress.js';
|
|
|
|
|
import baseurl from '@/api/baseurl.js'
|
2023-05-22 15:54:07 +08:00
|
|
|
import gkcity from "../../components/m-city/m-city.vue";
|
2022-11-25 10:58:46 +08:00
|
|
|
export default {
|
2023-01-12 16:16:36 +08:00
|
|
|
components: {
|
|
|
|
|
"m-city": gkcity
|
|
|
|
|
},
|
2022-11-25 10:58:46 +08:00
|
|
|
data() {
|
|
|
|
|
return {
|
2022-12-27 09:22:42 +08:00
|
|
|
timer: null,
|
2022-11-25 10:58:46 +08:00
|
|
|
isedit: true, //标识
|
|
|
|
|
delshow: false, //删除弹框
|
|
|
|
|
content: '确认要删除信息吗?',
|
|
|
|
|
show: false, //弹框
|
2023-01-12 16:16:36 +08:00
|
|
|
// areashow: false, //经纬度开关
|
|
|
|
|
// arealist: [], //区街道list
|
2022-11-25 10:58:46 +08:00
|
|
|
areaCode: '',
|
2022-12-02 16:02:53 +08:00
|
|
|
shipAddress: '添加地址',
|
2022-11-25 10:58:46 +08:00
|
|
|
infolist: {
|
|
|
|
|
receiveName: '',
|
|
|
|
|
receivePhone: '',
|
|
|
|
|
receiveAddress: '',
|
2023-01-12 16:16:36 +08:00
|
|
|
areaCode: null,
|
2022-11-25 10:58:46 +08:00
|
|
|
patientId: '',
|
2023-01-12 16:16:36 +08:00
|
|
|
address: null, //页面所属区域
|
|
|
|
|
defaultAddressFlag: false,
|
2022-11-25 10:58:46 +08:00
|
|
|
},
|
|
|
|
|
goodPatient: [], // 查询地址信息
|
|
|
|
|
patientId: null,
|
|
|
|
|
url: '',
|
|
|
|
|
updata: [],
|
2023-01-12 16:16:36 +08:00
|
|
|
list: [{
|
|
|
|
|
id: "",
|
|
|
|
|
localName: "请选择",
|
|
|
|
|
children: [],
|
|
|
|
|
}, ],
|
|
|
|
|
cityPickershow: false,
|
|
|
|
|
addresslength: null,
|
2022-11-25 10:58:46 +08:00
|
|
|
}
|
|
|
|
|
},
|
2022-12-27 09:22:42 +08:00
|
|
|
onShow() {
|
|
|
|
|
this.goodsList()
|
2023-01-12 16:16:36 +08:00
|
|
|
this.areaInfo()
|
2022-12-27 09:22:42 +08:00
|
|
|
},
|
2022-11-25 10:58:46 +08:00
|
|
|
onLoad(options) {
|
|
|
|
|
let that = this
|
|
|
|
|
this.updata = JSON.parse(options.updata)
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2023-01-12 16:16:36 +08:00
|
|
|
change(status) {
|
|
|
|
|
if (!status.defaultAddressFlag) {
|
|
|
|
|
status.defaultAddressFlag = true
|
|
|
|
|
} else {
|
|
|
|
|
this.goodPatient.forEach(e => {
|
|
|
|
|
e.defaultAddressFlag = 0
|
|
|
|
|
})
|
|
|
|
|
status.defaultAddressFlag = 1
|
|
|
|
|
updateDefaultAddress(this.goodPatient).then(res => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.goodsList();
|
|
|
|
|
uni.$emit('updata', {
|
|
|
|
|
updata: JSON.stringify(this.updata),
|
|
|
|
|
useritem: JSON.stringify(status)
|
|
|
|
|
})
|
|
|
|
|
uni.navigateBack({
|
|
|
|
|
delta: 1
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 三级地址联动回调
|
|
|
|
|
getpickerParentValue(e) {
|
2023-05-22 15:54:07 +08:00
|
|
|
console.log(e)
|
2023-04-07 09:59:03 +08:00
|
|
|
e = e.filter(ele => ele.localName != '暂不选择')
|
2023-05-10 10:13:49 +08:00
|
|
|
e = e.filter(ele => ele.localName != '暂无需选择')
|
2023-01-12 16:16:36 +08:00
|
|
|
this.addresslength = e
|
2023-01-29 10:42:34 +08:00
|
|
|
this.infolist.address = ''
|
|
|
|
|
this.infolist.areaCode = ''
|
|
|
|
|
if (e && e.length >= 1) {
|
|
|
|
|
e.forEach(el => {
|
|
|
|
|
this.infolist.address = this.infolist.address + el.localName
|
|
|
|
|
})
|
|
|
|
|
this.infolist.areaCode = e[e.length - 1].id
|
2023-01-12 16:16:36 +08:00
|
|
|
}
|
2023-01-29 10:42:34 +08:00
|
|
|
// if (e) {
|
|
|
|
|
// if (e.length == 4) {
|
|
|
|
|
// this.infolist.address = e[0].localName + '-' + e[1].localName + '-' + e[2].localName + '-' + e[3]
|
|
|
|
|
// .localName
|
|
|
|
|
// this.infolist.areaCode = e[3].id
|
|
|
|
|
// } else if (e.length == 3) {
|
|
|
|
|
// this.infolist.address = e[0].localName + '-' + e[1].localName + '-' + e[2].localName
|
|
|
|
|
// this.infolist.areaCode = e[2].id
|
|
|
|
|
// } else if (e.length == 2) {
|
|
|
|
|
// this.infolist.address = e[0].localName + '-' + e[1].localName
|
|
|
|
|
// this.infolist.areaCode = e[1].id
|
|
|
|
|
// } else if (e.length == 1) {
|
|
|
|
|
// this.infolist.address = e[0].localName
|
|
|
|
|
// this.infolist.areaCode = e[0].id
|
|
|
|
|
// } else {
|
|
|
|
|
// this.infolist.address = ''
|
|
|
|
|
// this.infolist.areaCode = ''
|
|
|
|
|
// }
|
|
|
|
|
// }
|
2023-01-12 16:16:36 +08:00
|
|
|
},
|
|
|
|
|
// 显示三级地址联动
|
|
|
|
|
showPicker() {
|
|
|
|
|
this.cityPickershow = true
|
|
|
|
|
this.$refs.cityPicker.show();
|
|
|
|
|
},
|
2022-11-25 10:58:46 +08:00
|
|
|
//将信息携带至订单页面
|
|
|
|
|
goorder(item) {
|
|
|
|
|
uni.$emit('updata', {
|
|
|
|
|
updata: JSON.stringify(this.updata),
|
|
|
|
|
useritem: JSON.stringify(item)
|
|
|
|
|
})
|
|
|
|
|
uni.navigateBack({
|
|
|
|
|
delta: 1
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 查询地址信息
|
|
|
|
|
goodsList() {
|
|
|
|
|
let that = this
|
2023-03-09 16:07:29 +08:00
|
|
|
const value = uni.getStorageSync('patientId');
|
|
|
|
|
if (value) {
|
|
|
|
|
that.patientId = value
|
|
|
|
|
goodPatientInfo(that.patientId).then(res => {
|
|
|
|
|
res.data.forEach(e => {
|
|
|
|
|
e.address = e.areaName + e.receiveAddress
|
|
|
|
|
if (e.defaultAddressFlag == 1) {
|
|
|
|
|
e.defaultAddressFlag = true
|
|
|
|
|
} else {
|
|
|
|
|
e.defaultAddressFlag = false
|
|
|
|
|
}
|
2022-12-02 16:02:53 +08:00
|
|
|
})
|
2023-03-09 16:07:29 +08:00
|
|
|
that.goodPatient = res.data
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
that.$refs.uToast.show({
|
|
|
|
|
title: '登录状态异常',
|
|
|
|
|
type: 'error'
|
|
|
|
|
})
|
|
|
|
|
if (that.timer) {
|
|
|
|
|
clearTimeout(that.timer)
|
2022-11-25 10:58:46 +08:00
|
|
|
}
|
2023-03-09 16:07:29 +08:00
|
|
|
that.timer = setTimeout(e => {
|
|
|
|
|
uni.navigateBack({
|
|
|
|
|
delta: 2
|
|
|
|
|
})
|
|
|
|
|
}, 1500)
|
|
|
|
|
}
|
2022-11-25 10:58:46 +08:00
|
|
|
},
|
|
|
|
|
// 保存按钮
|
|
|
|
|
submit() {
|
|
|
|
|
let that = this
|
|
|
|
|
if (that.isedit == true) {
|
2023-01-12 16:16:36 +08:00
|
|
|
if (that.addresslength) {
|
|
|
|
|
if (that.addresslength.length > 2) {
|
|
|
|
|
addnursingStation(that.infolist).then(res => {
|
|
|
|
|
if (res.code == 200) {
|
2023-03-03 14:24:09 +08:00
|
|
|
that.goodsList()
|
2023-01-12 16:16:36 +08:00
|
|
|
that.$refs.uToast.show({
|
|
|
|
|
title: '新增成功',
|
|
|
|
|
type: 'success'
|
|
|
|
|
})
|
|
|
|
|
that.cencel();
|
|
|
|
|
} else {
|
|
|
|
|
that.$refs.uToast.show({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
type: 'error'
|
|
|
|
|
})
|
|
|
|
|
}
|
2022-12-27 09:22:42 +08:00
|
|
|
})
|
2023-01-12 16:16:36 +08:00
|
|
|
} else {
|
|
|
|
|
this.Toast()
|
2022-11-25 10:58:46 +08:00
|
|
|
}
|
2023-01-12 16:16:36 +08:00
|
|
|
} else {
|
|
|
|
|
this.Toast()
|
|
|
|
|
}
|
2022-11-25 10:58:46 +08:00
|
|
|
} else {
|
2023-01-12 16:16:36 +08:00
|
|
|
if (that.addresslength) {
|
|
|
|
|
if (that.addresslength.length > 2) {
|
|
|
|
|
this.xgdata();
|
2022-12-27 09:22:42 +08:00
|
|
|
} else {
|
2023-01-12 16:16:36 +08:00
|
|
|
this.Toast()
|
2022-12-27 09:22:42 +08:00
|
|
|
}
|
2023-01-12 16:16:36 +08:00
|
|
|
} else {
|
|
|
|
|
this.xgdata();
|
|
|
|
|
}
|
2022-11-25 10:58:46 +08:00
|
|
|
}
|
|
|
|
|
},
|
2023-01-12 16:16:36 +08:00
|
|
|
Toast() {
|
|
|
|
|
this.$refs.uToast.show({
|
|
|
|
|
title: '区域应选择所在的区或街道,请重新选择!',
|
|
|
|
|
type: 'error'
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
xgdata() {
|
|
|
|
|
var that = this
|
|
|
|
|
updatenursingStation(that.infolist).then(res => {
|
|
|
|
|
if (res.code == 200) {
|
2023-03-03 14:24:09 +08:00
|
|
|
that.goodsList()
|
2023-01-12 16:16:36 +08:00
|
|
|
that.$refs.uToast.show({
|
|
|
|
|
title: '修改成功',
|
|
|
|
|
type: 'success'
|
|
|
|
|
})
|
|
|
|
|
that.cencel();
|
|
|
|
|
} else {
|
|
|
|
|
that.$refs.uToast.show({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
type: 'error'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// submit() {
|
|
|
|
|
// if (this.addresslength) {
|
|
|
|
|
// if (this.addresslength.length > 2) {
|
|
|
|
|
// this.data();
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$refs.uToast.show({
|
|
|
|
|
// title: '所属区域应选择所在的区或街道,请重新选择!',
|
|
|
|
|
// type: 'error'
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
// } else {
|
|
|
|
|
// this.data()
|
|
|
|
|
// }
|
|
|
|
|
// },
|
2022-11-25 10:58:46 +08:00
|
|
|
// 修改按钮
|
|
|
|
|
updataxg(item) {
|
2023-01-12 16:16:36 +08:00
|
|
|
this.cityPickershow = true
|
2022-12-01 16:59:32 +08:00
|
|
|
this.shipAddress = '修改地址'
|
2022-11-25 10:58:46 +08:00
|
|
|
this.isedit = false
|
|
|
|
|
nursingStationGoodsinfo(item.id).then(res => {
|
2023-01-29 10:42:34 +08:00
|
|
|
getSubordinate(res.data.areaCode).then(resp => {
|
|
|
|
|
if (resp.data.streetName) {
|
|
|
|
|
res.data.address = resp.data.provinceName + resp.data.cityName + resp.data
|
|
|
|
|
.regionName + resp.data.streetName
|
2023-01-12 16:16:36 +08:00
|
|
|
} else {
|
2023-01-29 10:42:34 +08:00
|
|
|
res.data.address = resp.data.provinceName + resp.data.cityName + resp.data
|
|
|
|
|
.regionName
|
2023-01-12 16:16:36 +08:00
|
|
|
}
|
2023-01-29 10:42:34 +08:00
|
|
|
this.infolist = res.data
|
2022-11-25 10:58:46 +08:00
|
|
|
this.show = true
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 新增
|
|
|
|
|
add() {
|
2023-01-12 16:16:36 +08:00
|
|
|
this.shipAddress = '添加地址'
|
|
|
|
|
this.cityPickershow = true
|
2022-11-25 10:58:46 +08:00
|
|
|
this.infolist = {
|
|
|
|
|
receiveName: '',
|
|
|
|
|
receivePhone: '',
|
|
|
|
|
receiveAddress: '',
|
|
|
|
|
areaCode: '',
|
|
|
|
|
patientId: this.patientId,
|
|
|
|
|
}
|
|
|
|
|
this.isedit = true
|
|
|
|
|
this.show = true
|
|
|
|
|
},
|
|
|
|
|
// 删除
|
|
|
|
|
del(item) {
|
|
|
|
|
let that = this
|
|
|
|
|
uni.showModal({
|
|
|
|
|
title: '提示',
|
|
|
|
|
content: '确认要删除信息吗',
|
|
|
|
|
success: function(res) {
|
|
|
|
|
if (res.confirm) {
|
2023-01-12 16:16:36 +08:00
|
|
|
if (that.goodPatient.length == 1) {
|
|
|
|
|
that.$refs.uToast.show({
|
|
|
|
|
title: '最少保留一条地址信息',
|
|
|
|
|
type: 'error'
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
delnursingStation(item.id).then(res => {
|
2023-03-03 14:24:09 +08:00
|
|
|
that.goodsList()
|
2023-01-12 16:16:36 +08:00
|
|
|
that.$refs.uToast.show({
|
|
|
|
|
title: '删除成功',
|
|
|
|
|
type: 'success'
|
|
|
|
|
})
|
|
|
|
|
that.delshow = false;
|
|
|
|
|
})
|
|
|
|
|
}
|
2022-12-02 16:02:53 +08:00
|
|
|
} else if (res.cancel) {}
|
2022-11-25 10:58:46 +08:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 取消
|
|
|
|
|
cencel() {
|
|
|
|
|
this.show = false
|
2023-01-12 16:16:36 +08:00
|
|
|
this.cityPickershow = false
|
2022-11-25 10:58:46 +08:00
|
|
|
},
|
|
|
|
|
// 选择区街道
|
|
|
|
|
areaInfo() {
|
2023-01-12 16:16:36 +08:00
|
|
|
getSubordinateRegions().then(res => {
|
2022-11-25 10:58:46 +08:00
|
|
|
//区下无街道添加一个空街道
|
2023-01-12 16:16:36 +08:00
|
|
|
this.list = res.data;
|
2022-11-25 10:58:46 +08:00
|
|
|
})
|
|
|
|
|
},
|
2023-01-12 16:16:36 +08:00
|
|
|
// 选择区街道
|
|
|
|
|
// areaInfo() {
|
|
|
|
|
// getSubordinateRegions(this.areaCode).then(res => {
|
|
|
|
|
// //区下无街道添加一个空街道
|
|
|
|
|
// res.data.forEach(e => {
|
|
|
|
|
// if (e.children.length == 0) {
|
|
|
|
|
// e.children.push({
|
|
|
|
|
// areaCode: "",
|
|
|
|
|
// areaName: "暂无街道",
|
|
|
|
|
// children: null,
|
|
|
|
|
// id: '',
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// this.arealist = res.data;
|
|
|
|
|
// })
|
|
|
|
|
// },
|
2022-11-25 10:58:46 +08:00
|
|
|
//区街道选择
|
|
|
|
|
areaconfirm(e) {
|
|
|
|
|
this.infolist.areaCode = e[e.length - 1].value
|
|
|
|
|
this.infolist.address = e[0].label + '-' + e[1].label
|
|
|
|
|
},
|
2023-01-12 16:16:36 +08:00
|
|
|
},
|
|
|
|
|
onPullDownRefresh() { //下拉刷新
|
|
|
|
|
this.goodsList()
|
|
|
|
|
setTimeout(function() {
|
|
|
|
|
uni.stopPullDownRefresh();
|
|
|
|
|
}, 1000);
|
|
|
|
|
},
|
2022-11-25 10:58:46 +08:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
@import './modifyAddress.scss'
|
|
|
|
|
</style>
|