应用详情
This commit is contained in:
parent
ea9fffad7f
commit
1275b4b992
|
@ -1,3 +1,10 @@
|
||||||
|
<!--
|
||||||
|
* @Author: hisense.liangjunhua
|
||||||
|
* @Date: 2022-06-14 09:43:49
|
||||||
|
* @LastEditors: hisense.liangjunhua
|
||||||
|
* @LastEditTime: 2022-06-14 10:20:42
|
||||||
|
* @Description: 告诉大家这是什么
|
||||||
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div id="apply-container">
|
<div id="apply-container">
|
||||||
|
@ -6,6 +13,9 @@
|
||||||
<algorithm-details
|
<algorithm-details
|
||||||
v-else-if="showView === 'algorithm-details'"
|
v-else-if="showView === 'algorithm-details'"
|
||||||
></algorithm-details>
|
></algorithm-details>
|
||||||
|
<application-details
|
||||||
|
v-else-if="showView === 'application-details'"
|
||||||
|
></application-details>
|
||||||
<ability-to-recommend-bottom></ability-to-recommend-bottom>
|
<ability-to-recommend-bottom></ability-to-recommend-bottom>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -17,6 +27,7 @@
|
||||||
import DetailsView from './components/DetailsView.vue'
|
import DetailsView from './components/DetailsView.vue'
|
||||||
import AbilityToRecommendBottom from '@/views/home/components/AbilityToRecommendBottom'
|
import AbilityToRecommendBottom from '@/views/home/components/AbilityToRecommendBottom'
|
||||||
import AlgorithmDetails from '@/views/detailsAll/AlgorithmDetails'
|
import AlgorithmDetails from '@/views/detailsAll/AlgorithmDetails'
|
||||||
|
import ApplicationDetails from '@/views/detailsAll/ApplicationDetails'
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: '',
|
name: '',
|
||||||
|
@ -26,6 +37,7 @@
|
||||||
DetailsView,
|
DetailsView,
|
||||||
AbilityToRecommendBottom,
|
AbilityToRecommendBottom,
|
||||||
AlgorithmDetails,
|
AlgorithmDetails,
|
||||||
|
ApplicationDetails,
|
||||||
},
|
},
|
||||||
setup() {
|
setup() {
|
||||||
const formState = reactive({
|
const formState = reactive({
|
||||||
|
@ -62,7 +74,7 @@
|
||||||
label: '交通运输局',
|
label: '交通运输局',
|
||||||
},
|
},
|
||||||
])
|
])
|
||||||
const showView = ref('algorithm-details')
|
const showView = ref('application-details')
|
||||||
return {
|
return {
|
||||||
formState,
|
formState,
|
||||||
options,
|
options,
|
||||||
|
|
Loading…
Reference in New Issue