...
|
...
|
@@ -129,7 +129,7 @@ const address = (params) => { |
|
|
*/
|
|
|
const saveAddress = (params) => {
|
|
|
if (params.id) {
|
|
|
params.id = crypto.encryption(null, params.id);
|
|
|
params.id = crypto.decrypt(null, params.id);
|
|
|
}
|
|
|
return _saveAddressData(params).then(result => {
|
|
|
return result;
|
...
|
...
|
|