diff --git a/src/views/audit/index.vue b/src/views/audit/index.vue index 038887c..9bd4ab0 100644 --- a/src/views/audit/index.vue +++ b/src/views/audit/index.vue @@ -60,13 +60,13 @@ const columns = [ }, { title: '用户', - key: 'userName', + key: 'userNickname', }, { title: '通道', - key: 'channelId', + key: 'channelCode', render: (row: Log.LogItem) => { - return h(ElTag, {}, `通道${row.channelId}`) + return h(ElTag, {}, `通道${row.channelCode.slice(-1)}`) }, }, { @@ -79,7 +79,7 @@ const columns = [ }, { title: '用量(mL)', - key: 'volume', + key: 'usedVolume', }, ]