| 12345678910111213141516171819202122232425 | <template>	<view class="common_page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">		<cus-header title="我的档案" bgColor="#FFFFFF"></cus-header>		<div class="list">			<ArchivesBox v-for="(item,index) in list" :key="index"></ArchivesBox>		</div>	</view></template><script setup name="">	import CusHeader from '@/components/CusHeader/index.vue'	import ArchivesBox from '@/components/pages/archivesBox/index.vue'	import { ref } from 'vue'	import { onReachBottom } from '@dcloudio/uni-app';		const list = ref([1,1,1,1,1])		onReachBottom(()=>{			})</script><style scoped lang="scss">	</style>
 |