แก้ไขชื่อประเมืนหาย
This commit is contained in:
parent
08cfdff6db
commit
6807b4aecf
1 changed files with 3 additions and 3 deletions
|
|
@ -38,10 +38,10 @@ async function fetchFeature() {
|
||||||
.get(config.API.evaluateGetDetail(id.value))
|
.get(config.API.evaluateGetDetail(id.value))
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
data.value = res.data.result;
|
data.value = res.data.result;
|
||||||
const person = data.value[0];
|
const person: any = data.value;
|
||||||
if (person) {
|
if (data.value) {
|
||||||
prefix.value = person.prefix;
|
|
||||||
fullName.value = person.fullName;
|
fullName.value = person.fullName;
|
||||||
|
prefix.value = person.prefix;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue