映射修改
This commit is contained in:
parent
3483729a06
commit
8051e069d2
|
|
@ -225,13 +225,14 @@
|
|||
},
|
||||
incomeText() {
|
||||
if (!this.monthlyIncome) return '未填写'
|
||||
if (this.monthlyIncome < 5000) return '5千以下'
|
||||
if (this.monthlyIncome < 8000) return '5千~8千/月'
|
||||
if (this.monthlyIncome < 10000) return '8千~1万/月'
|
||||
if (this.monthlyIncome < 15000) return '1万~1.5万/月'
|
||||
if (this.monthlyIncome < 20000) return '1.5万~2万/月'
|
||||
if (this.monthlyIncome < 30000) return '2万~3万/月'
|
||||
return '3万以上/月'
|
||||
const incomeMap = {
|
||||
1: '5千以下',
|
||||
2: '5千-1万/月',
|
||||
3: '1万-2万/月',
|
||||
4: '2万-5万/月',
|
||||
5: '5万以上'
|
||||
}
|
||||
return incomeMap[this.monthlyIncome] || '未填写'
|
||||
},
|
||||
memberIconUrl() {
|
||||
if (!this.isMember || !this.memberLevel) return ''
|
||||
|
|
|
|||
|
|
@ -435,10 +435,10 @@ const educationMap = {
|
|||
|
||||
const incomeMap = {
|
||||
1: '5千以下',
|
||||
2: '5千-8千/月',
|
||||
3: '8千-1万/月',
|
||||
4: '1万-2万/月',
|
||||
5: '2万以上'
|
||||
2: '5千-1万/月',
|
||||
3: '1万-2万/月',
|
||||
4: '2万-5万/月',
|
||||
5: '5万以上'
|
||||
}
|
||||
|
||||
const relationshipMap = {
|
||||
|
|
|
|||
|
|
@ -343,10 +343,10 @@
|
|||
|
||||
const incomeMap = {
|
||||
1: '5千以下',
|
||||
2: '5千-8千/月',
|
||||
3: '8千-1万/月',
|
||||
4: '1万-2万/月',
|
||||
5: '2万以上'
|
||||
2: '5千-1万/月',
|
||||
3: '1万-2万/月',
|
||||
4: '2万-5万/月',
|
||||
5: '5万以上'
|
||||
}
|
||||
|
||||
const houseMap = {
|
||||
|
|
|
|||
|
|
@ -169,11 +169,11 @@ const educationMap = {
|
|||
}
|
||||
|
||||
const incomeMap = {
|
||||
1: '5000以下',
|
||||
2: '5000-10000',
|
||||
3: '10000-20000',
|
||||
4: '20000-50000',
|
||||
5: '50000以上'
|
||||
1: '5千以下',
|
||||
2: '5千-1万/月',
|
||||
3: '1万-2万/月',
|
||||
4: '2万-5万/月',
|
||||
5: '5万以上'
|
||||
}
|
||||
|
||||
const houseMap = {
|
||||
|
|
|
|||
|
|
@ -291,10 +291,10 @@ const educationMap = {
|
|||
|
||||
const incomeMap = {
|
||||
1: '5千以下',
|
||||
2: '5千-8千/月',
|
||||
3: '8千-1万/月',
|
||||
4: '1万-2万/月',
|
||||
5: '2万以上'
|
||||
2: '5千-1万/月',
|
||||
3: '1万-2万/月',
|
||||
4: '2万-5万/月',
|
||||
5: '5万以上'
|
||||
}
|
||||
|
||||
const marriageMap = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user