新增邀请码填写类型字段
This commit is contained in:
@@ -255,6 +255,21 @@ export default {
|
||||
{ field: 'teamName', title: '所属小组', align: 'center', width: '5%', },
|
||||
{ field: 'memberName', title: '所属成员', align: 'center', width: '5%' },
|
||||
{ field: 'inviteCode', title: '所属邀请码', align: 'center', width: '5%' },
|
||||
{
|
||||
field: 'source',
|
||||
title: '邀请码填写类型',
|
||||
align: 'center',
|
||||
width: '5%',
|
||||
formatter: function (val) {
|
||||
let value = '';
|
||||
if (val == 0) {
|
||||
value = '自填';
|
||||
} else if (val == 1) {
|
||||
value = '补填';
|
||||
}
|
||||
return value;
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'inviteTime', title: '邀请时间', align: 'center', width: '5%',
|
||||
formatter: function (val) {
|
||||
|
Reference in New Issue
Block a user