This commit is contained in:
bb_pan 2025-12-05 16:39:23 +08:00
parent 736214c866
commit 3a4473a387
1 changed files with 12 additions and 5 deletions

View File

@ -431,11 +431,18 @@ export default {
: []
this.form.process = [String(res.data.mainProcessId), String(res.data.subProcessId)].filter(Boolean)
console.log('🚀 ~ getInfo ~ this.form.process:', this.form.process)
if (res.data.branchId) {
this.form.category = [
String(res.data.mainCategoryId),
String(res.data.subCategoryId),
String(res.data.branchId),
].filter(Boolean)
} else {
this.form.category = [
String(res.data.mainCategoryId),
String(res.data.subCategoryId),
].filter(Boolean)
}
this.propertyVoList = res.data.propertyVoList || []
console.log('🚀 ~ getInfo ~ this.propertyVoList:', this.propertyVoList)