上传
This commit is contained in:
@@ -213,7 +213,7 @@ export const fenToYuan = (amount: string | number): number => {
|
||||
export const removeNullField = (obj: Object) => {
|
||||
for (const key in obj) {
|
||||
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
||||
if (obj[key] === '') {
|
||||
if (obj[key] === '' || obj[key] === null || obj[key] == undefined) {
|
||||
delete obj[key]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user