添加低意向样式

This commit is contained in:
WindowBird 2025-11-21 17:11:08 +08:00
parent 2d1bc99d9b
commit 935164b8ad
3 changed files with 17 additions and 3 deletions

View File

@ -787,6 +787,12 @@ defineExpose({
background-color: #fef0f0; background-color: #fef0f0;
border: 1px solid #fbc4c4; border: 1px solid #fbc4c4;
} }
&.status-tag-low-intent {
color: #909399;
background-color: #f4f4f5;
border: 1px solid #d3d4d6;
}
} }
/* 意向强度标签 */ /* 意向强度标签 */

View File

@ -77,7 +77,8 @@ const getStatusTagClass = (status) => {
'status-tag-potential': statusStr === '1', // 'status-tag-potential': statusStr === '1', //
'status-tag-intent': statusStr === '2', // 'status-tag-intent': statusStr === '2', //
'status-tag-deal': statusStr === '3', // 'status-tag-deal': statusStr === '3', //
'status-tag-invalid': statusStr === '4' // 'status-tag-invalid': statusStr === '4', //
'status-tag-low-intent': statusStr === '5' //
}; };
}; };
</script> </script>
@ -159,6 +160,12 @@ const getStatusTagClass = (status) => {
background-color: #fef0f0; background-color: #fef0f0;
border: 1px solid #fbc4c4; border: 1px solid #fbc4c4;
} }
&.status-tag-low-intent {
color: #909399;
background-color: #f4f4f5;
border: 1px solid #d3d4d6;
}
} }
/* 意向强度标签 */ /* 意向强度标签 */

View File

@ -79,7 +79,8 @@ export const getCustomerStatusClass = (status) => {
'status-potential': statusStr === '1', // 潜在 'status-potential': statusStr === '1', // 潜在
'status-intent': statusStr === '2', // 意向 'status-intent': statusStr === '2', // 意向
'status-deal': statusStr === '3', // 成交 'status-deal': statusStr === '3', // 成交
'status-invalid': statusStr === '4' // 失效 'status-invalid': statusStr === '4', // 失效
'status-low-intent': statusStr === '5' // 低意向
}; };
}; };