This commit is contained in:
parent
736214c866
commit
3a4473a387
|
|
@ -431,11 +431,18 @@ export default {
|
||||||
: []
|
: []
|
||||||
this.form.process = [String(res.data.mainProcessId), String(res.data.subProcessId)].filter(Boolean)
|
this.form.process = [String(res.data.mainProcessId), String(res.data.subProcessId)].filter(Boolean)
|
||||||
console.log('🚀 ~ getInfo ~ this.form.process:', this.form.process)
|
console.log('🚀 ~ getInfo ~ this.form.process:', this.form.process)
|
||||||
this.form.category = [
|
if (res.data.branchId) {
|
||||||
String(res.data.mainCategoryId),
|
this.form.category = [
|
||||||
String(res.data.subCategoryId),
|
String(res.data.mainCategoryId),
|
||||||
String(res.data.branchId),
|
String(res.data.subCategoryId),
|
||||||
].filter(Boolean)
|
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 || []
|
this.propertyVoList = res.data.propertyVoList || []
|
||||||
console.log('🚀 ~ getInfo ~ this.propertyVoList:', this.propertyVoList)
|
console.log('🚀 ~ getInfo ~ this.propertyVoList:', this.propertyVoList)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue