|
@@ -48,6 +48,7 @@ const Upsert = useUpsert({
|
|
|
component: { name: "el-input" }
|
|
|
},
|
|
|
{ prop: "level", label: "KYC_Level", required: true, component: { name: "el-input" } },
|
|
|
+ { prop: "email", label: "邮箱", required: true, component: { name: "el-input" } },
|
|
|
{ prop: "country", label: "国家", required: true, component: { name: "el-input" } },
|
|
|
{
|
|
|
prop: "remark",
|
|
@@ -67,8 +68,9 @@ const Table = useTable({
|
|
|
{ prop: "code", label: "通道码" },
|
|
|
{ prop: "kycUserId", label: "平台用户ID" },
|
|
|
{ prop: "customerId", label: "KYC_ID" },
|
|
|
- { prop: "level", label: "KYC_Level" },
|
|
|
- { prop: "country", label: "country" },
|
|
|
+ { prop: "level", label: "Level" },
|
|
|
+ { prop: "email", label: "邮箱" },
|
|
|
+ { prop: "country", label: "国家代码" },
|
|
|
{ prop: "remark", label: "备注", showOverflowTooltip: true },
|
|
|
{ prop: "createTime", label: "创建时间", sortable: "desc", width: 160 },
|
|
|
{ type: "op", buttons: ["edit", "delete"] }
|