邀请码管理增加填写类型来源

This commit is contained in:
liaozetao
2023-11-27 14:59:32 +08:00
parent b3defa71d1
commit 8d6efb8efb

View File

@@ -256,6 +256,21 @@ export default {
return date.format('yyyy-MM-dd hh:mm:ss');
}
},
{
field: 'inviteCode',
title: '所属邀请码',
align: 'center',
width: '5%',
formatter: function (val) {
let value = '';
if (val == 0) {
value = '自填';
} else if (val == 1) {
value = '补填';
}
return value;
}
},
{
field: 'memberId',
title: '操作',