Merge branch 'hi-ucs-dev' of http://15.2.21.221:3000/wuhongjian/hi-ucs into hi-ucs-dev
This commit is contained in:
commit
7303904f68
|
@ -33,7 +33,7 @@
|
||||||
></application-associated-components>
|
></application-associated-components>
|
||||||
<!-- 关联能力 -->
|
<!-- 关联能力 -->
|
||||||
<application-associated-ability
|
<application-associated-ability
|
||||||
:associatedComponents="associatedComponents"
|
:associatedComponents="associatedComponentsFunction()"
|
||||||
id="application-associated-ability"
|
id="application-associated-ability"
|
||||||
class="scrollBox"
|
class="scrollBox"
|
||||||
></application-associated-ability>
|
></application-associated-ability>
|
||||||
|
@ -172,6 +172,15 @@
|
||||||
console.log('预览==============', obj)
|
console.log('预览==============', obj)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
const associatedComponentsFunction = () => {
|
||||||
|
if (
|
||||||
|
associatedComponents.value[0].dataList.length > 0 ||
|
||||||
|
associatedComponents.value[1].dataList.length > 0 ||
|
||||||
|
associatedComponents.value[2].dataList.length > 0
|
||||||
|
) {
|
||||||
|
return associatedComponents.value
|
||||||
|
}
|
||||||
|
}
|
||||||
init(id)
|
init(id)
|
||||||
onBeforeUnmount(() => {
|
onBeforeUnmount(() => {
|
||||||
mybus.off('flyToView')
|
mybus.off('flyToView')
|
||||||
|
|
|
@ -46,6 +46,7 @@
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
if (props.associatedComponents) {
|
||||||
if (
|
if (
|
||||||
props.associatedComponents[0].dataList.length > 0 ||
|
props.associatedComponents[0].dataList.length > 0 ||
|
||||||
props.associatedComponents[1].dataList.length > 0 ||
|
props.associatedComponents[1].dataList.length > 0 ||
|
||||||
|
@ -57,13 +58,25 @@
|
||||||
} else {
|
} else {
|
||||||
flag.value = false
|
flag.value = false
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
flag.value = false
|
||||||
|
}
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => props.associatedComponents,
|
() => props.associatedComponents,
|
||||||
(val) => {
|
(val) => {
|
||||||
if (val) {
|
if (props.associatedComponents) {
|
||||||
|
if (
|
||||||
|
val[0].dataList.length > 0 ||
|
||||||
|
val[1].dataList.length > 0 ||
|
||||||
|
val[2].dataList.length > 0
|
||||||
|
) {
|
||||||
flag.value = true
|
flag.value = true
|
||||||
dataFrom.value = props.associatedComponents
|
dataFrom.value = props.associatedComponents
|
||||||
console.log('dataFrom.value', dataFrom.value)
|
// console.log('dataFrom.value', dataFrom.value)
|
||||||
|
} else {
|
||||||
|
flag.value = false
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
flag.value = false
|
flag.value = false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue