1
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
37520fccb6
commit
9e786c53b8
|
@ -1051,21 +1051,21 @@ export default {
|
||||||
if (row.OptType === 'Add' || row.OptType === 'Init') {
|
if (row.OptType === 'Add' || row.OptType === 'Init') {
|
||||||
item = {
|
item = {
|
||||||
key: o[v.ChildDataLabel],
|
key: o[v.ChildDataLabel],
|
||||||
Enum: this.$i18n.locale === 'zh' ? o[v.ChildDataLabel] : o[v.ChildDataEnLabel],
|
Enum: this.$i18n.locale === 'zh' ? o[v.ChildDataLabel] : o[v.ChildDataEnLabel] ? o[v.ChildDataEnLabel] : o[v.ChildDataLabel],
|
||||||
newValue: o[v.ChildDataValue] ? (o[v.ChildDataValue] ? o[v.ChildDataValue] : '--') : '--',
|
newValue: o[v.ChildDataValue] ? (o[v.ChildDataValue] ? o[v.ChildDataValue] : '--') : '--',
|
||||||
oldValue: ''
|
oldValue: ''
|
||||||
}
|
}
|
||||||
} else if (row.OptType === 'Delete') {
|
} else if (row.OptType === 'Delete') {
|
||||||
item = {
|
item = {
|
||||||
key: o[v.ChildDataLabel],
|
key: o[v.ChildDataLabel],
|
||||||
Enum: this.$i18n.locale === 'zh' ? o[v.ChildDataLabel] : o[v.ChildDataEnLabel],
|
Enum: this.$i18n.locale === 'zh' ? o[v.ChildDataLabel] : o[v.ChildDataEnLabel] ? o[v.ChildDataEnLabel] : o[v.ChildDataLabel],
|
||||||
oldValue: o[v.ChildDataValue] ? (o[v.ChildDataValue] ? o[v.ChildDataValue] : '--') : '--',
|
oldValue: o[v.ChildDataValue] ? (o[v.ChildDataValue] ? o[v.ChildDataValue] : '--') : '--',
|
||||||
newValue: '--'
|
newValue: '--'
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
item = {
|
item = {
|
||||||
key: o[v.ChildDataLabel],
|
key: o[v.ChildDataLabel],
|
||||||
Enum: this.$i18n.locale === 'zh' ? o[v.ChildDataLabel] : o[v.ChildDataEnLabel],
|
Enum: this.$i18n.locale === 'zh' ? o[v.ChildDataLabel] : o[v.ChildDataEnLabel] ? o[v.ChildDataEnLabel] : o[v.ChildDataLabel],
|
||||||
newValue: o[v.ChildDataValue] ? (o[v.ChildDataValue] ? o[v.ChildDataValue] : '--') : '--',
|
newValue: o[v.ChildDataValue] ? (o[v.ChildDataValue] ? o[v.ChildDataValue] : '--') : '--',
|
||||||
oldValue: uo ? uo[v.ChildDataValue] : '--'
|
oldValue: uo ? uo[v.ChildDataValue] : '--'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue