fix bug
This commit is contained in:
@ -4,7 +4,7 @@
|
|||||||
* @Author : Shiming
|
* @Author : Shiming
|
||||||
* @Date : 2022-03-30 17:57:46
|
* @Date : 2022-03-30 17:57:46
|
||||||
* @LastEditors : Shiming
|
* @LastEditors : Shiming
|
||||||
* @LastEditTime : 2022-04-18 16:45:14
|
* @LastEditTime : 2022-04-19 15:09:26
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\datatable\\components\\customtable\\mancustomtable\\mancustomtable.component.html
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\datatable\\components\\customtable\\mancustomtable\\mancustomtable.component.html
|
||||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||||
-->
|
-->
|
||||||
|
|||||||
@ -74,34 +74,69 @@ export class DatatableMancustomtableComponent implements OnInit {
|
|||||||
return this?.resourceStatus !== 1 ? false : true;
|
return this?.resourceStatus !== 1 ? false : true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ title: '已认证合伙人', index: 'certifiedCount', className: 'text-center', width: '150px' ,
|
{
|
||||||
iif: () => {
|
title: '已认证合伙人',
|
||||||
return this?.resourceStatus !== 2 ? false : true;
|
index: 'certifiedCount',
|
||||||
}},
|
className: 'text-center',
|
||||||
{ title: '新增合伙人数', index: 'addCount', className: 'text-center', width: '150px' ,
|
width: '150px',
|
||||||
iif: () => {
|
iif: () => {
|
||||||
return this?.resourceStatus !== 2 ? false : true;
|
return this?.resourceStatus !== 2 ? false : true;
|
||||||
}},
|
}
|
||||||
{ title: '合伙人活跃率', index: 'alivePer', className: 'text-center', width: '150px' ,
|
},
|
||||||
iif: () => {
|
{
|
||||||
return this?.resourceStatus !== 2 ? false : true;
|
title: '新增合伙人数',
|
||||||
} },
|
index: 'addCount',
|
||||||
{ title: '活跃合伙人数', index: 'aliveCount', className: 'text-center', width: '150px' ,
|
className: 'text-center',
|
||||||
iif: () => {
|
width: '150px',
|
||||||
return this?.resourceStatus !== 2 ? false : true;
|
iif: () => {
|
||||||
} },
|
return this?.resourceStatus !== 2 ? false : true;
|
||||||
{ title: '沉默合伙人数', index: 'silentCount', className: 'text-center', width: '150px' ,
|
}
|
||||||
iif: () => {
|
},
|
||||||
return this?.resourceStatus !== 2 ? false : true;
|
{
|
||||||
} },
|
title: '合伙人活跃率',
|
||||||
{ title: '流失合伙人数', index: 'drainCount', className: 'text-center', width: '150px' ,
|
index: 'alivePer',
|
||||||
iif: () => {
|
className: 'text-center',
|
||||||
return this?.resourceStatus !== 2 ? false : true;
|
width: '150px',
|
||||||
}},
|
iif: () => {
|
||||||
{ title: '未激活合伙人数', index: 'notActiveCount', className: 'text-center', width: '150px' ,
|
return this?.resourceStatus !== 2 ? false : true;
|
||||||
iif: () => {
|
}
|
||||||
return this?.resourceStatus !== 2 ? false : true;
|
},
|
||||||
} },
|
{
|
||||||
|
title: '活跃合伙人数',
|
||||||
|
index: 'aliveCount',
|
||||||
|
className: 'text-center',
|
||||||
|
width: '150px',
|
||||||
|
iif: () => {
|
||||||
|
return this?.resourceStatus !== 2 ? false : true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '沉默合伙人数',
|
||||||
|
index: 'silentCount',
|
||||||
|
className: 'text-center',
|
||||||
|
width: '150px',
|
||||||
|
iif: () => {
|
||||||
|
return this?.resourceStatus !== 2 ? false : true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '流失合伙人数',
|
||||||
|
index: 'drainCount',
|
||||||
|
className: 'text-center',
|
||||||
|
width: '150px',
|
||||||
|
iif: () => {
|
||||||
|
return this?.resourceStatus !== 2 ? false : true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '未激活合伙人数',
|
||||||
|
index: 'notActiveCount',
|
||||||
|
className: 'text-center',
|
||||||
|
width: '150px',
|
||||||
|
iif: () => {
|
||||||
|
return this?.resourceStatus !== 2 ? false : true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
title: '新增货主数',
|
title: '新增货主数',
|
||||||
|
|||||||
Reference in New Issue
Block a user