This commit is contained in:
A1300399510 2024-08-14 17:04:36 +08:00
parent 9f0dbabd51
commit 50cc836b4f

View File

@ -1141,8 +1141,10 @@ export default {
value = "是" value = "是"
} else if (key == "sex") { } else if (key == "sex") {
if (thread.profession_cid == 2) value = thread[key] == 1 ? "男" : "女" if (thread.profession_cid == 2) value = thread[key] == 1 ? "男" : "女"
else value = null
} else if (key == "lsat") { } else if (key == "lsat") {
if (thread.profession_cid == 2) value = thread[key] if (thread.profession_cid == 2) value = thread['lsat']
else value = null
} else if (key == "experience") { } else if (key == "experience") {
value = experience[thread[key]] value = experience[thread[key]]
} else { } else {
@ -1158,6 +1160,8 @@ export default {
} }
}) })
console.log("obj1",obj1);
this.locationThreadData = obj1 this.locationThreadData = obj1
}) })
}, },