稽查修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
870354b4b2
commit
f3b36b9127
|
@ -1019,21 +1019,21 @@ export default {
|
|||
if (row.OptType === 'Add' || row.OptType === 'Init') {
|
||||
item = {
|
||||
key: v.Code,
|
||||
Enum: v.ValueCN,
|
||||
Enum: this.$i18n.locale === 'zh' ? v.ValueCN : v.Value,
|
||||
newValue: obj[v.Code] ? obj[v.Code] : '--',
|
||||
oldValue: ''
|
||||
}
|
||||
} else if (row.OptType === 'Delete') {
|
||||
item = {
|
||||
key: v.Code,
|
||||
Enum: v.ValueCN,
|
||||
Enum: this.$i18n.locale === 'zh' ? v.ValueCN : v.Value,
|
||||
oldValue: obj[v.Code] ? obj[v.Code] : '--',
|
||||
newValue: '--'
|
||||
}
|
||||
} else {
|
||||
item = {
|
||||
key: v.Code,
|
||||
Enum: v.ValueCN,
|
||||
Enum: this.$i18n.locale === 'zh' ? v.ValueCN : v.Value,
|
||||
newValue: obj[v.Code] ? obj[v.Code] : '--',
|
||||
oldValue: upObj[v.Code].length > 0 ? upObj[v.Code] : '--'
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue