Compare commits
No commits in common. "fd32fd6769540dd3df1c5fc495e6aca84fbd009d" and "0a8cc6257de0df39cbe0e8e3f0a502df6961af1f" have entirely different histories.
fd32fd6769
...
0a8cc6257d
|
@ -33,9 +33,6 @@
|
||||||
<span class="label" v-if="deploymentLocation">
|
<span class="label" v-if="deploymentLocation">
|
||||||
{{ deploymentLocation }}
|
{{ deploymentLocation }}
|
||||||
</span>
|
</span>
|
||||||
<span class="label" v-if="classOfAlgorithm.attrValue">
|
|
||||||
{{ classOfAlgorithm.attrValue }}
|
|
||||||
</span>
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<!-- <span class="label">免费</span> -->
|
<!-- <span class="label">免费</span> -->
|
||||||
|
@ -80,7 +77,6 @@
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
dataList: { type: Object, default: null },
|
dataList: { type: Object, default: null },
|
||||||
})
|
})
|
||||||
const classOfAlgorithm = ref('')
|
|
||||||
// console.log('==================>', props.dataList.isCollect)
|
// console.log('==================>', props.dataList.isCollect)
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const applicationArea = ref('')
|
const applicationArea = ref('')
|
||||||
|
@ -168,13 +164,6 @@
|
||||||
let obj = props.dataList.infoList.filter(
|
let obj = props.dataList.infoList.filter(
|
||||||
(val) => val.attrType === '组件类型'
|
(val) => val.attrType === '组件类型'
|
||||||
)[0]
|
)[0]
|
||||||
if (
|
|
||||||
props.dataList.infoList.filter((val) => val.attrType === '算法类别')[0]
|
|
||||||
) {
|
|
||||||
classOfAlgorithm.value = props.dataList.infoList.filter(
|
|
||||||
(val) => val.attrType === '算法类别'
|
|
||||||
)[0]
|
|
||||||
}
|
|
||||||
if (
|
if (
|
||||||
props.dataList.infoList.filter((val) => val.attrType === '部署位置')[0]
|
props.dataList.infoList.filter((val) => val.attrType === '部署位置')[0]
|
||||||
) {
|
) {
|
||||||
|
@ -196,15 +185,6 @@
|
||||||
let obj = props.dataList.infoList.filter(
|
let obj = props.dataList.infoList.filter(
|
||||||
(val) => val.attrType === '组件类型'
|
(val) => val.attrType === '组件类型'
|
||||||
)[0]
|
)[0]
|
||||||
if (
|
|
||||||
props.dataList.infoList.filter(
|
|
||||||
(val) => val.attrType === '算法类别'
|
|
||||||
)[0]
|
|
||||||
) {
|
|
||||||
classOfAlgorithm.value = props.dataList.infoList.filter(
|
|
||||||
(val) => val.attrType === '算法类别'
|
|
||||||
)[0]
|
|
||||||
}
|
|
||||||
if (
|
if (
|
||||||
props.dataList.infoList.filter(
|
props.dataList.infoList.filter(
|
||||||
(val) => val.attrType === '部署位置'
|
(val) => val.attrType === '部署位置'
|
||||||
|
|
Loading…
Reference in New Issue