Files
lingji-work-fe/src/views/property-marketing/put-account/investment-guidelines/constants.ts

22 lines
519 B
TypeScript
Raw Normal View History

import top1 from '@/assets/img/captcha/top1.svg';
import top2 from '@/assets/img/captcha/top2.svg';
import top3 from '@/assets/img/captcha/top3.svg';
/**
*
* @param score 1 ~ 3
* @returns SVG
*/
export function getStarIcon(score: number): string {
switch (score) {
case 1:
return top1;
case 2:
return top2;
case 3:
return top3;
default:
return top1; // 默认返回最高分图标
}
}