|
@@ -1,5 +1,28 @@
|
|
<template>
|
|
<template>
|
|
- <div>xxx</div>
|
|
|
|
|
|
+ <div class="resume-box">
|
|
|
|
+ <div class="resume-header">
|
|
|
|
+ <div class="resume-title">企业推荐信</div>
|
|
|
|
+ </div>
|
|
|
|
+ <CtTable
|
|
|
|
+ class="mt-3"
|
|
|
|
+ :items="list"
|
|
|
|
+ :headers="headers"
|
|
|
|
+ :loading="loading"
|
|
|
|
+ :elevation="0"
|
|
|
|
+ :isTools="false"
|
|
|
|
+ :showPage="true"
|
|
|
|
+ :showSelect="false"
|
|
|
|
+ itemKey="id"
|
|
|
|
+ :total="total"
|
|
|
|
+ :page-info="query"
|
|
|
|
+ @pageHandleChange="handleChangePage"
|
|
|
|
+ >
|
|
|
|
+ <template #actions="{ item }">
|
|
|
|
+ <v-btn color="primary" @click.stop="previewFile(item.url)" variant="text">预览</v-btn>
|
|
|
|
+ <v-btn color="primary" @click.stop="handleDownload(item)" variant="text">下载</v-btn>
|
|
|
|
+ </template>
|
|
|
|
+ </CtTable>
|
|
|
|
+ </div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|