@@ -48,8 +48,15 @@ const props = defineProps({
// 获取附件
const bioList = ref([])
const getList = async () => {
- const { data } = await getPersonResumeCv()
- bioList.value = data
+ uni.showLoading({ title: '加载中...' })
+ try {
+ const { data } = await getPersonResumeCv()
+ bioList.value = data
+ } catch {
+ uni.hideLoading()
+ } finally {
+ }
}
getList()
@@ -1,6 +1,6 @@
<!-- 简历附件解析 -->
<template>
- <view>
+ <view class="defaultBgc">
<!-- 选择简历 -->
<resume v-if="step === 1" resumeAnalysis @submit="handleResumeAnalysis"></resume>
<!-- 解析内容-表单 -->