expenses.vue 9.2 KB

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