Merge branch 'develop' into devTee
This commit is contained in:
commit
7052a622d6
1 changed files with 3 additions and 3 deletions
|
|
@ -38,10 +38,10 @@ async function fetchFeature() {
|
|||
.get(config.API.evaluateGetDetail(id.value))
|
||||
.then((res) => {
|
||||
data.value = res.data.result;
|
||||
const person = data.value[0];
|
||||
if (person) {
|
||||
prefix.value = person.prefix;
|
||||
const person: any = data.value;
|
||||
if (data.value) {
|
||||
fullName.value = person.fullName;
|
||||
prefix.value = person.prefix;
|
||||
}
|
||||
})
|
||||
.catch((e) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue