新增邀请码填写类型字段

This commit is contained in:
liaozetao
2023-11-27 11:57:27 +08:00
parent 7a14a2811e
commit 3b115ee9db

View File

@@ -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) {