特殊人群

This commit is contained in:
yanran200730
2022-03-17 17:48:47 +08:00
parent 63ce994265
commit fee4c0c28f
2 changed files with 13 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
<template>
<ai-detail v-if="pageShow" isHasSidebar>
<ai-detail v-loading="pageShow" isHasSidebar>
<template #title>
<ai-title :title="colData.applicationName+'详情'" isShowBottomBorder isShowBack @onBackClick="onBack(true)"></ai-title>
</template>
@@ -82,6 +82,7 @@
},
mounted () {
this.pageShow = true
this.getDetail()
},
@@ -164,13 +165,17 @@
if (res?.data) {
this.formData = res.data
this.getFormData()
this.pageShow = false
}
}).catch(() => {
this.pageShow = false
})
},
getDictList (listName) {
this.dict.load(listName.join(',')).then(() => {
this.pageShow = true
})
},