应用详情
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>
|
||||
<div>
|
||||
<div id="apply-container">
|
||||
|
@ -6,6 +13,9 @@
|
|||
<algorithm-details
|
||||
v-else-if="showView === 'algorithm-details'"
|
||||
></algorithm-details>
|
||||
<application-details
|
||||
v-else-if="showView === 'application-details'"
|
||||
></application-details>
|
||||
<ability-to-recommend-bottom></ability-to-recommend-bottom>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -17,6 +27,7 @@
|
|||
import DetailsView from './components/DetailsView.vue'
|
||||
import AbilityToRecommendBottom from '@/views/home/components/AbilityToRecommendBottom'
|
||||
import AlgorithmDetails from '@/views/detailsAll/AlgorithmDetails'
|
||||
import ApplicationDetails from '@/views/detailsAll/ApplicationDetails'
|
||||
|
||||
export default defineComponent({
|
||||
name: '',
|
||||
|
@ -26,6 +37,7 @@
|
|||
DetailsView,
|
||||
AbilityToRecommendBottom,
|
||||
AlgorithmDetails,
|
||||
ApplicationDetails,
|
||||
},
|
||||
setup() {
|
||||
const formState = reactive({
|
||||
|
@ -62,7 +74,7 @@
|
|||
label: '交通运输局',
|
||||
},
|
||||
])
|
||||
const showView = ref('algorithm-details')
|
||||
const showView = ref('application-details')
|
||||
return {
|
||||
formState,
|
||||
options,
|
||||
|
|
Loading…
Reference in New Issue