分页获取用户权限接口,前端添加昵称字段

This commit is contained in:
joylink_cuiweidong 2019-12-24 11:23:55 +08:00
parent be784efb43
commit db44fe8d62
4 changed files with 10 additions and 3 deletions

View File

@ -38,5 +38,6 @@ export default {
transferTips:'You can receive multiple permissions at a time, and the permissions you receive can continue to be transferred.',
distributeTips:'Only one permission can be obtained at a time. The permission received is a dedicated permission and cannot be redistributed.',
distributeId: 'Distribute id',
sortType:'SortType'
sortType:'SortType',
nickName:'nickName'
};

View File

@ -45,5 +45,6 @@ export default {
transferTips:'一次可以领取多个权限,领到的权限可以继续转赠',
distributeTips:'一次只能领取一个权限,领到的权限是专用权限,不可再次分发',
distributeId: '分发ID',
sortType:'排序方式'
sortType:'排序方式',
nickName:'昵称'
};

View File

@ -167,7 +167,7 @@ export default {
name: this.$t('orderAuthor.recovery'),
handleClick: this.handleRestore,
type: 'danger',
showControl: (row) => { return row.status == '1' && row.canRestore }
showControl: (row) => { return row.status == '1' && row.canRestore; }
}
]
}

View File

@ -88,6 +88,11 @@ export default {
sortable:'custom',
sortBy:'sortOrder'
},
{
title: this.$t('permission.nickName'),
width: '200',
prop: 'userNickName'
},
{
title: this.$t('permission.permissionName'),
width: '200',