diff --git a/src/common/lang/system/zh.js b/src/common/lang/system/zh.js index e313e6ed..3376d3dc 100644 --- a/src/common/lang/system/zh.js +++ b/src/common/lang/system/zh.js @@ -123,6 +123,7 @@ module.exports = { groupName: '分组名称', peopleNumber: '人数', groupMembers: '组内人员', - userName: '用户名称' + userName: '用户名称', + createUser: '创建人' } } diff --git a/src/views/system/groupManage/GroupManageList.vue b/src/views/system/groupManage/GroupManageList.vue index 4e157e04..aa13c831 100644 --- a/src/views/system/groupManage/GroupManageList.vue +++ b/src/views/system/groupManage/GroupManageList.vue @@ -115,6 +115,13 @@ export default { dataIndex: 'userNames', scopedSlots: { customRender: 'text' } }, + { + title: this.$t('system.groupMange.createUser'), + align: 'center', + width: 180, + dataIndex: 'createUserName', + scopedSlots: { customRender: 'text' } + }, { title: this.$t('operation'), scopedSlots: { customRender: 'action' },