fix: convertCommandCodeName columns commandCode
This commit is contained in:
parent
444a150fd2
commit
28fa6fbaf7
2 changed files with 2 additions and 2 deletions
|
|
@ -210,7 +210,7 @@ const baseColumns = ref<QTableColumn[]>([
|
|||
sortable: true,
|
||||
field: "commandCode",
|
||||
format(val, row) {
|
||||
return row.commandName;
|
||||
return store.convertCommandCodeName(row.commandCode);
|
||||
},
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
|
|
|
|||
|
|
@ -215,7 +215,7 @@ const baseColumns = ref<QTableColumn[]>([
|
|||
sortable: true,
|
||||
field: "commandCode",
|
||||
format(val, row) {
|
||||
return row.commandName;
|
||||
return store.convertCommandCodeName(row.commandCode);
|
||||
},
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue