expenses.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. <!--
  2. * @Description:
  3. * @Author: 欧阳承珺
  4. * @LastEditors: 欧阳承珺
  5. * @Date: 2022-11-01 19:27:42
  6. * @LastEditTime: 2022-11-17 09:31:51
  7. -->
  8. <template>
  9. <div>
  10. <div class="expenses-date-tips flex content-center py-6px min-w-700px">
  11. <img src="http://cn-file.17pdf.com/website/common/ic_notice.svg" class="align-middle">
  12. <div class="text-container" ref="wrap">
  13. <span class="text">
  14. 转档后的文件支持在云端保留24小时,<span v-if="userInfo?.subscriberType === 1">会员尊享5G容量,</span>请在24小时内下载文件至本地永久保存
  15. </span>
  16. <span v-if="userInfo?.subscriberType === 1" class="vip tip">
  17. <img src="http://cn-file.17pdf.com/website/common/ic_info.svg" alt="">
  18. <div class="tip-text">
  19. 若已有文件大小超出5G,将按转档时间计算(从最近一次转档往过去推算),即保留最近的5G容量文件,超出部分文件将不再保留
  20. </div>
  21. </span>
  22. </div>
  23. </div>
  24. <div class="py-15px">
  25. <p class="text-[20px] leading-28px text-[#333]">我的转档</p>
  26. <div class="mt-10px mb-16px">
  27. <button class="btn btn-download" :disabled="isDownload" @click="downloadFiles">下载</button>
  28. <button class="btn btn-delete" :disabled="isDelete" @click="deleteChangeFileRecord">删除</button>
  29. </div>
  30. </div>
  31. <client-only>
  32. <el-table :data="tableData" @selection-change="handleSelectionChange">
  33. <el-table-column type="selection" width="50"></el-table-column>
  34. <el-table-column prop="format" label="格式转换" ></el-table-column>
  35. <el-table-column prop="fileName" label="目标文件" ></el-table-column>
  36. <el-table-column prop="size" label="文件大小" ></el-table-column>
  37. <el-table-column prop="price" label="消耗券数" ></el-table-column>
  38. <el-table-column prop="status" label="状态" width="120px">
  39. <template slot-scope="scope">
  40. <div class="box">
  41. <div class="bottom">
  42. <el-tooltip class="item" effect="dark" :content="'转换时间:' + scope.row.createdAt" placement="bottom">
  43. <span v-html="scope.row.status" class="cursor-default"></span>
  44. </el-tooltip>
  45. </div>
  46. </div>
  47. </template>
  48. </el-table-column>
  49. <el-table-column prop="path" label="" width="50px">
  50. <template slot-scope="scope">
  51. <a v-if="scope.row.path" :href="scope.row.path" class="downloadBtn"></a>
  52. </template>
  53. </el-table-column>
  54. <!-- 表格无数据显示 -->
  55. <div slot="empty">
  56. <div class="table-empty"></div>
  57. <p class="text-14px" style="color:rgba(0,0,0,0.54)">没有任何消费记录</p>
  58. <p class="leading-20px mt-8px mb-100px text-14px" style="color:rgba(0,0,0,0.38)">每一分钱都花在了刀刃上</p>
  59. </div>
  60. </el-table>
  61. <div v-show="totalNum>25">
  62. <el-pagination
  63. class="text-center mt-50px"
  64. background
  65. layout="prev, pager, next"
  66. :total="totalNum"
  67. :page-size="25"
  68. @current-change="handleCurrentChange">
  69. </el-pagination>
  70. </div>
  71. </client-only>
  72. </div>
  73. </template>
  74. <script>
  75. import { mapState } from 'vuex'
  76. export default {
  77. layout: 'userCenter',
  78. middleware: ['auth','user'],
  79. data() {
  80. return {
  81. tableData:[],
  82. tableDataSelection: [],
  83. totalNum: 0,
  84. isDownload: true,
  85. isDelete: true
  86. }
  87. },
  88. head() {
  89. return {
  90. title: '17PDF Reader - 个人中心',
  91. meta: [
  92. {
  93. name: 'keywords',
  94. content: 'PDFReader,pdfreader,17PDF Reader,pdf软件,PDF阅读器,文件扫描'
  95. },
  96. {
  97. hid: 'description',
  98. content: '17PDF Reader是行走的PDF阅读器和文件扫描仪,并提供免费的PDF文件格式转换工具,支持pdf转word,pdf转doc,pdf转ppt,pdf转图片等。17PDF Reader被用户誉为“亚洲的Adobe”,拥有自主产权的PDF核心技术,为商务精英、教育族群及企业提供全方位的PDF文件解决方案。'
  99. },
  100. ]
  101. }
  102. },
  103. computed: {
  104. ...mapState([
  105. 'userInfo',
  106. ]),
  107. },
  108. created () {
  109. this.getChangeFileRecord(1)
  110. },
  111. methods: {
  112. // 用户转档记录分页查询
  113. getChangeFileRecord (page) {
  114. this.$axios.get(`/missionFile/page?page=${page}`).then((res) => {
  115. if(res.code === 200) {
  116. this.tableData = res.result.list
  117. this.totalNum = res.result.total
  118. for (let i = 0; i < this.tableData.length; i++) {
  119. this.tableData[i].size = this.getfilesize(this.tableData[i].size)
  120. this.tableData[i].status = this.getFileStatus(this.tableData[i].status)
  121. this.$set(this.tableData[i], 'format', this.getFormat(this.tableData[i].inputType, this.tableData[i].outputType))
  122. }
  123. }
  124. })
  125. },
  126. // 计算文件大小函数(保留两位小数),Size为字节大小
  127. getfilesize (size) {
  128. if (!size) return ""
  129. const num = 1024.00 // byte
  130. if (size < num) {
  131. return size + "B"
  132. }
  133. if (size < Math.pow(num, 2)) {
  134. return (size / num).toFixed(2) + "K"
  135. }
  136. if (size < Math.pow(num, 3)) {
  137. return (size / Math.pow(num, 2)).toFixed(2) + "M"
  138. }
  139. if (size < Math.pow(num, 4)) {
  140. return (size / Math.pow(num, 3)).toFixed(2) + "G"
  141. }
  142. else {
  143. return (size / Math.pow(num, 4)).toFixed(2) + "T"
  144. }
  145. },
  146. // 判断文件状态
  147. getFileStatus (status) {
  148. switch (status) {
  149. case 0:
  150. return '转档中'
  151. case 1:
  152. return '转档中'
  153. case 2:
  154. return '<span style="color: green">转档成功</span>'
  155. case 3:
  156. return '<span style="color: red">转档失败</span>'
  157. case 4:
  158. return '<span style="color: green">转档成功</span>'
  159. }
  160. },
  161. // 格式转换
  162. getFormat (input, output) {
  163. return input.toUpperCase() + '-->' + output.toUpperCase()
  164. },
  165. // 选中的数据行
  166. handleSelectionChange(val) {
  167. this.tableDataSelection = val
  168. if (this.tableDataSelection.length === 0) {
  169. this.isDownload = true
  170. this.isDelete = true
  171. } else {
  172. this.isDelete = false
  173. }
  174. for (const file of this.tableDataSelection) {
  175. if (file.status === '转档中' || file.status === '转档失败') {
  176. this.isDownload = true
  177. } else {
  178. this.isDownload = false
  179. }
  180. }
  181. },
  182. // 删除转档记录
  183. deleteChangeFileRecord () {
  184. const data = new FormData()
  185. for (const file of this.tableDataSelection) {
  186. data.append('ids', file.id)
  187. }
  188. const config = {
  189. headers: {
  190. 'Content-Type': 'multipart/form-data;'
  191. }
  192. }
  193. this.$axios.post('/missionFile/delete', data, config).then((res) => {
  194. if(res.code === 200) {
  195. this.getChangeFileRecord(1)
  196. this.isDelete = true
  197. }
  198. })
  199. },
  200. // 分页器
  201. handleCurrentChange(val) {
  202. this.getChangeFileRecord(val)
  203. window.scrollTo(0, 0)
  204. },
  205. // 下载文件
  206. downloadFiles () {
  207. // for (const file of this.tableDataSelection) {
  208. // if (file.status !== 2 || file.status !== 4) {
  209. // this.isDownload = true
  210. // }
  211. // }
  212. this.tableDataSelection.forEach(item => {
  213. this.downloadFile(item.path)
  214. })
  215. },
  216. downloadFile (url) {
  217. const iframe = document.createElement("iframe");
  218. iframe.style.display = "none"; // 防止影响页面
  219. iframe.style.height = 0; // 防止影响页面
  220. iframe.src = url;
  221. document.body.appendChild(iframe);
  222. setTimeout(()=>{
  223. iframe.remove();
  224. }, 5 * 60 * 1000);
  225. }
  226. }
  227. }
  228. </script>
  229. <style lang="scss" scoped>
  230. .expenses-date-tips {
  231. display: flex;
  232. align-items: center;
  233. padding: 12px;
  234. background: linear-gradient(90deg, #FFFAFA 10.37%, rgba(255, 243, 243, 0) 91.75%), linear-gradient(90deg, #FFF2F6 2.26%, rgba(255, 242, 246, 0.21) 101.41%);
  235. border: 1px solid rgba(255, 79, 79, 0.2);
  236. border-radius: 12px;
  237. .text-container {
  238. display: flex;
  239. align-items: center;
  240. margin-left: 16px;
  241. img {
  242. margin-left: 8px;
  243. }
  244. }
  245. span {
  246. font-size: 14px;
  247. line-height: 24px;
  248. vertical-align: middle;
  249. }
  250. .text {
  251. display: inline-flex;
  252. align-items: center;
  253. }
  254. .tip {
  255. position: relative;
  256. font-size: 0;
  257. .tip-text {
  258. display: none;
  259. position: absolute;
  260. left: -3px;
  261. width: 258px;
  262. padding: 15px 14px 10px 10px;
  263. background: url('http://cn-file.17pdf.com/website/members/ic_tip.svg') left top no-repeat;
  264. background-size: auto 100%;
  265. font-size: 12px;
  266. line-height: 18px;
  267. color: #fff;
  268. border-radius: 4px;
  269. }
  270. &:hover .tip-text {
  271. display: block;
  272. }
  273. }
  274. }
  275. .btn {
  276. height: 30px;
  277. line-height: 28px;
  278. font-size: 12px;
  279. border-radius: 2px;
  280. display: inline-block;
  281. padding: 0px 9px 0px 33px;
  282. &-download {
  283. color: #fff;
  284. background: #FF4F4F url(http://cn-file.17pdf.com/website/members/ic_download.svg) no-repeat 8px center;
  285. margin-right: 7px;
  286. &_disabled {
  287. background-color: #FFA7A7;
  288. }
  289. }
  290. &-delete {
  291. border: 1px solid #d8d8d9;
  292. color: #666;
  293. background: url(http://cn-file.17pdf.com/website/members/ic_delete_normal.png) no-repeat 8px 5px;
  294. &_disabled {
  295. color: #ccc;
  296. border-color: #ccc;
  297. }
  298. }
  299. }
  300. .el-table {
  301. th {
  302. background-color: #f4f4f4 !important;
  303. font-size: 16px;
  304. color: #666666;
  305. font-weight: normal;
  306. }
  307. }
  308. .table-empty {
  309. margin-top: 50px;
  310. height: 200px;
  311. background: url(http://cn-file.17pdf.com/website/members/pic_noconsumption.png) no-repeat center center;
  312. }
  313. .el-table__row:hover .downloadBtn {
  314. display: inline-block;
  315. width: 13px;
  316. height: 13px;
  317. background: url(http://cn-file.17pdf.com/website/members/ic_download_gray.svg) center no-repeat;
  318. }
  319. .btn-download:disabled,.btn-delete:disabled {
  320. opacity: 0.5;
  321. pointer-events: none;
  322. }
  323. </style>