强制用户输入联系方式
This commit is contained in:
parent
c08f9e7a83
commit
9e72ff52c7
@ -30,6 +30,12 @@ const agencyColumns = [
|
|||||||
render: (item) => <AgencyOwner item={item} />,
|
render: (item) => <AgencyOwner item={item} />,
|
||||||
width: "minmax(220px, 1.2fr)",
|
width: "minmax(220px, 1.2fr)",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "contact",
|
||||||
|
label: "联系方式",
|
||||||
|
render: (item) => item.contact || "-",
|
||||||
|
width: "minmax(150px, 0.85fr)",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: "activeHostCount",
|
key: "activeHostCount",
|
||||||
label: "子 Host",
|
label: "子 Host",
|
||||||
|
|||||||
@ -33,6 +33,12 @@ const bdLeaderBaseColumns = [
|
|||||||
render: (item, _index, context) => regionName(item, context?.regionOptions),
|
render: (item, _index, context) => regionName(item, context?.regionOptions),
|
||||||
width: "minmax(130px, 0.75fr)",
|
width: "minmax(130px, 0.75fr)",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "contact",
|
||||||
|
label: "联系方式",
|
||||||
|
render: (item) => item.contact || "-",
|
||||||
|
width: "minmax(150px, 0.85fr)",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: "salaryWallet",
|
key: "salaryWallet",
|
||||||
label: "工资钱包",
|
label: "工资钱包",
|
||||||
|
|||||||
@ -28,6 +28,12 @@ const bdColumns = [
|
|||||||
render: (item) => <span className={styles.inlineValue}>{formatCount(item.agencyCount)}</span>,
|
render: (item) => <span className={styles.inlineValue}>{formatCount(item.agencyCount)}</span>,
|
||||||
width: "minmax(110px, 0.65fr)",
|
width: "minmax(110px, 0.65fr)",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "contact",
|
||||||
|
label: "联系方式",
|
||||||
|
render: (item) => item.contact || "-",
|
||||||
|
width: "minmax(150px, 0.85fr)",
|
||||||
|
},
|
||||||
{ key: "role", label: "角色", width: "minmax(100px, 0.65fr)" },
|
{ key: "role", label: "角色", width: "minmax(100px, 0.65fr)" },
|
||||||
{
|
{
|
||||||
key: "salaryWallet",
|
key: "salaryWallet",
|
||||||
|
|||||||
@ -24,6 +24,12 @@ const hostColumns = [
|
|||||||
render: (item) => <HostStatusSwitch item={item} />,
|
render: (item) => <HostStatusSwitch item={item} />,
|
||||||
width: "minmax(90px, 0.7fr)",
|
width: "minmax(90px, 0.7fr)",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "contact",
|
||||||
|
label: "联系方式",
|
||||||
|
render: (item) => item.contact || "-",
|
||||||
|
width: "minmax(150px, 0.85fr)",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: "diamond",
|
key: "diamond",
|
||||||
label: "钻石",
|
label: "钻石",
|
||||||
|
|||||||
@ -575,6 +575,7 @@ export interface BDProfileDto {
|
|||||||
createdByDisplayUserId?: string;
|
createdByDisplayUserId?: string;
|
||||||
createdByUsername?: string;
|
createdByUsername?: string;
|
||||||
createdByUserId?: number;
|
createdByUserId?: number;
|
||||||
|
contact?: string;
|
||||||
displayUserId?: string;
|
displayUserId?: string;
|
||||||
prettyDisplayUserId?: string;
|
prettyDisplayUserId?: string;
|
||||||
prettyId?: string;
|
prettyId?: string;
|
||||||
@ -603,6 +604,7 @@ export interface AgencyDto {
|
|||||||
maxHosts?: number;
|
maxHosts?: number;
|
||||||
name?: string;
|
name?: string;
|
||||||
ownerAvatar?: string;
|
ownerAvatar?: string;
|
||||||
|
contact?: string;
|
||||||
ownerDisplayUserId?: string;
|
ownerDisplayUserId?: string;
|
||||||
ownerUsername?: string;
|
ownerUsername?: string;
|
||||||
ownerUserId?: string;
|
ownerUserId?: string;
|
||||||
@ -678,6 +680,7 @@ export interface HostProfileDto {
|
|||||||
currentAgencyOwnerDisplayUserId?: string;
|
currentAgencyOwnerDisplayUserId?: string;
|
||||||
currentAgencyOwnerUserId?: string;
|
currentAgencyOwnerUserId?: string;
|
||||||
currentAgencyOwnerUsername?: string;
|
currentAgencyOwnerUsername?: string;
|
||||||
|
contact?: string;
|
||||||
currentMembershipId?: number;
|
currentMembershipId?: number;
|
||||||
diamond?: number;
|
diamond?: number;
|
||||||
displayUserId?: string;
|
displayUserId?: string;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user