This commit is contained in:
张成
2025-11-26 21:23:43 +08:00
parent 0c08e09275
commit 3ff3169d74
2 changed files with 10 additions and 10 deletions

View File

@@ -850,8 +850,8 @@ export default {
// 获取平台颜色
getPlatformColor(platformType) {
const colorMap = {
'1': 'blue',
'2': 'green'
'boss': 'blue',
'liepin': 'green'
}
return colorMap[platformType] || 'default'
},
@@ -859,8 +859,8 @@ export default {
// 获取平台文本
getPlatformText(platformType) {
const textMap = {
'1': 'Boss直聘',
'2': '猎聘'
'boss': 'Boss直聘',
'liepin': '猎聘'
}
return textMap[platformType] || platformType || '-'
}