1
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
3b14944671
commit
b727d6b068
|
@ -1138,6 +1138,7 @@ export default {
|
|||
this.tableListData = body
|
||||
return
|
||||
}
|
||||
console.log(v.IsShowParent, 'v.IsShowParent')
|
||||
if (v.IsShowParent === 1) {
|
||||
if (row.OptType === 'Delete') {
|
||||
item = {
|
||||
|
@ -1155,7 +1156,7 @@ export default {
|
|||
item = {
|
||||
// newValue: parentRow ? (parentRow[v.Code] ? parentRow[v.Code] : '--') : '--',
|
||||
newValue: parentRow ? ((parentRow[v.Code] && parentRow[v.Code] !== null && parentRow[v.Code] !== '' || parentRow[v.Code] === 0) ? parentRow[v.Code] : '--') : '--',
|
||||
oldValue: parentRow ? ((parentRow[v.Code] && parentRow[v.Code] !== null && parentRow[v.Code] !== '' || parentRow[v.Code] === 0) ? parentRow[v.Code] : '--') : '--',
|
||||
oldValue: parentRow ? ((parentRow[v.Code] && parentRow[v.Code] !== null && parentRow[v.Code] !== '' || parentRow[v.Code] === 0) && v.IsBeforeModifyView ? parentRow[v.Code] : '--') : '--',
|
||||
// oldValue: parentRow ? (parentRow[v.Code] ? parentRow[v.Code] : '--') : '--'
|
||||
}
|
||||
}
|
||||
|
@ -1174,7 +1175,7 @@ export default {
|
|||
} else {
|
||||
item = {
|
||||
newValue: obj ? ((obj[v.Code] && obj[v.Code] !== null && obj[v.Code] !== '' || obj[v.Code] === 0) ? obj[v.Code] : '--') : '--',
|
||||
oldValue: upObj ? ((upObj[v.Code] && upObj[v.Code] !== null && upObj[v.Code] !== '' || upObj[v.Code] === 0) ? upObj[v.Code] : '--') : '--'
|
||||
oldValue: upObj ? ((upObj[v.Code] && upObj[v.Code] !== null && upObj[v.Code] !== '' || upObj[v.Code] === 0) && v.IsBeforeModifyView ? upObj[v.Code] : '--') : '--'
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue