|
@@ -320,9 +320,9 @@ export default {
|
|
|
});
|
|
|
console.log("sendAddress1", sendAddress);
|
|
|
Object.keys(this.form.sendAddress).map((v) => {
|
|
|
- this.form.sendAddress[v] = sendAddress[v];
|
|
|
+ this.form.sendAddress[v] = sendAddress ? sendAddress[v] : '';
|
|
|
});
|
|
|
- this.name = sendAddress.name;
|
|
|
+ this.name = sendAddress ? sendAddress.name : '';
|
|
|
}
|
|
|
if (this.addressType === 2) {
|
|
|
this.addressList = res.data.personal;
|