页面调整

This commit is contained in:
曹磊 2024-08-24 14:38:13 +08:00
parent 5af618230c
commit 9af0fecbfc
1 changed files with 5 additions and 3 deletions

View File

@ -675,9 +675,11 @@ import { serverPaths } from '@/utils/enumData'
// this.classifyIds = row.classifyId
this.classifyIds = [];
let classifyList = row.artificerClassifyList;
for(let i=0;i<classifyList.length;i++){
let classify = classifyList[i];
this.classifyIds.push(classify["classifyId"]);
if(classifyList!=null){
for(let i=0;i<classifyList.length;i++){
let classify = classifyList[i];
this.classifyIds.push(classify["classifyId"]);
}
}
this.name = row.name
this.sex = row.sex