🎈 perf(平台来源): 不显示陆盈字眼
This commit is contained in:
parent
495a043653
commit
08b8627ec9
@ -86,9 +86,11 @@ const CustomerDetails = () => {
|
|||||||
<View className={styles.itemPhone}>{infoObj?.phone}</View>
|
<View className={styles.itemPhone}>{infoObj?.phone}</View>
|
||||||
</View>
|
</View>
|
||||||
<View className={styles.item_tag_box}>
|
<View className={styles.item_tag_box}>
|
||||||
<Tag type="primary" size="normal" circle customClassName={styles.item_tagItem} plain>
|
{
|
||||||
|
infoObj?.platform_source !== 1 && <Tag type="primary" size="normal" circle customClassName={styles.item_tagItem} plain>
|
||||||
{infoObj?.platform_source_name || '暂无'}
|
{infoObj?.platform_source_name || '暂无'}
|
||||||
</Tag>
|
</Tag>
|
||||||
|
}
|
||||||
<Tag type="primary" size="normal" circle customClassName={styles.item_tagItem} plain>
|
<Tag type="primary" size="normal" circle customClassName={styles.item_tagItem} plain>
|
||||||
{infoObj?.purchaser_type_name || '暂无'}
|
{infoObj?.purchaser_type_name || '暂无'}
|
||||||
</Tag>
|
</Tag>
|
||||||
|
|||||||
@ -138,7 +138,7 @@ const CustomerPage = () => {
|
|||||||
{ item.name }
|
{ item.name }
|
||||||
</View>
|
</View>
|
||||||
<View className={styles.platform_source_name}>{
|
<View className={styles.platform_source_name}>{
|
||||||
item?.platform_source_name
|
(item?.platform_source_name && item.platform_source !== 1)
|
||||||
&& <Tag type="primary" size="small" circle plain customClassName={styles.platform_name}>
|
&& <Tag type="primary" size="small" circle plain customClassName={styles.platform_name}>
|
||||||
{ item?.platform_source_name }
|
{ item?.platform_source_name }
|
||||||
</Tag>
|
</Tag>
|
||||||
|
|||||||
@ -195,6 +195,7 @@ const ColorCardList = () => {
|
|||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
<View className={styles.addButton} onClick={noop}>
|
<View className={styles.addButton} onClick={noop}>
|
||||||
|
{/* multipleSelection.current.some(mul => mul.id === item.id) 确保加载新数据时保持选中状态 */}
|
||||||
<MCheckbox
|
<MCheckbox
|
||||||
disabled={item.is_add}
|
disabled={item.is_add}
|
||||||
status={item.is_add || item.status || multipleSelection.current.some(mul => mul.id === item.id)}
|
status={item.is_add || item.status || multipleSelection.current.some(mul => mul.id === item.id)}
|
||||||
|
|||||||
@ -55,7 +55,7 @@ const ItemList = (props: propsObj) => {
|
|||||||
<View className={styles.flexBox}>
|
<View className={styles.flexBox}>
|
||||||
<View className={styles.pussName}>{obj?.purchaser_name}</View>
|
<View className={styles.pussName}>{obj?.purchaser_name}</View>
|
||||||
{
|
{
|
||||||
obj?.platform_source_name
|
(obj?.platform_source_name && obj?.platform_source !== 1)
|
||||||
&& <Tag type="primary" size="small" circle plain customClassName={styles.platform_name}>
|
&& <Tag type="primary" size="small" circle plain customClassName={styles.platform_name}>
|
||||||
{ obj?.platform_source_name }
|
{ obj?.platform_source_name }
|
||||||
</Tag>
|
</Tag>
|
||||||
|
|||||||
@ -834,9 +834,11 @@ const OrderDetails = () => {
|
|||||||
<View className={styles.pussBox}>
|
<View className={styles.pussBox}>
|
||||||
<View className={styles.pussName}>{infoObj.purchaser_name}</View>
|
<View className={styles.pussName}>{infoObj.purchaser_name}</View>
|
||||||
<View className={styles.pussName}>
|
<View className={styles.pussName}>
|
||||||
<Tag type="primary" size="normal" circle customClassName={styles.platform_name} plain>
|
{
|
||||||
|
infoObj?.platform_source !== 1 && <Tag type="primary" size="normal" circle customClassName={styles.platform_name} plain>
|
||||||
{infoObj?.platform_source_name || '暂无'}
|
{infoObj?.platform_source_name || '暂无'}
|
||||||
</Tag>
|
</Tag>
|
||||||
|
}
|
||||||
</View>
|
</View>
|
||||||
<View className={styles.pussPhone}>{infoObj.purchaser_phone}</View>
|
<View className={styles.pussPhone}>{infoObj.purchaser_phone}</View>
|
||||||
</View>
|
</View>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user