添加低意向样式
This commit is contained in:
parent
2d1bc99d9b
commit
935164b8ad
|
|
@ -787,6 +787,12 @@ defineExpose({
|
|||
background-color: #fef0f0;
|
||||
border: 1px solid #fbc4c4;
|
||||
}
|
||||
|
||||
&.status-tag-low-intent {
|
||||
color: #909399;
|
||||
background-color: #f4f4f5;
|
||||
border: 1px solid #d3d4d6;
|
||||
}
|
||||
}
|
||||
|
||||
/* 意向强度标签 */
|
||||
|
|
|
|||
|
|
@ -77,7 +77,8 @@ const getStatusTagClass = (status) => {
|
|||
'status-tag-potential': statusStr === '1', // 潜在
|
||||
'status-tag-intent': statusStr === '2', // 意向
|
||||
'status-tag-deal': statusStr === '3', // 成交
|
||||
'status-tag-invalid': statusStr === '4' // 失效
|
||||
'status-tag-invalid': statusStr === '4', // 失效
|
||||
'status-tag-low-intent': statusStr === '5' // 低意向
|
||||
};
|
||||
};
|
||||
</script>
|
||||
|
|
@ -159,6 +160,12 @@ const getStatusTagClass = (status) => {
|
|||
background-color: #fef0f0;
|
||||
border: 1px solid #fbc4c4;
|
||||
}
|
||||
|
||||
&.status-tag-low-intent {
|
||||
color: #909399;
|
||||
background-color: #f4f4f5;
|
||||
border: 1px solid #d3d4d6;
|
||||
}
|
||||
}
|
||||
|
||||
/* 意向强度标签 */
|
||||
|
|
|
|||
|
|
@ -78,8 +78,9 @@ export const getCustomerStatusClass = (status) => {
|
|||
return {
|
||||
'status-potential': statusStr === '1', // 潜在
|
||||
'status-intent': statusStr === '2', // 意向
|
||||
'status-deal': statusStr === '3', // 成交
|
||||
'status-invalid': statusStr === '4' // 失效
|
||||
'status-deal': statusStr === '3', // 成交
|
||||
'status-invalid': statusStr === '4', // 失效
|
||||
'status-low-intent': statusStr === '5' // 低意向
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user