export.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <div class="index">
  3. <el-row>
  4. <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
  5. <el-col :span="24" class="two">
  6. <el-table :data="list" style="width: 100%" size="large" :header-cell-style="{ backgroundColor: '#edf3ff' }">
  7. <template #empty>
  8. <el-empty description="暂无数据" />
  9. </template>
  10. <el-table-column prop="table_name" align="center" label="数据类型" />
  11. <el-table-column prop="created_time" align="center" label="创建时间" />
  12. <el-table-column prop="progress" align="center" label="进度" width="180" />
  13. <el-table-column align="center" label="操作" width="180">
  14. <template #default="{ row }">
  15. <el-link :underline="false" type="primary" size="mini" @click="reExecute(row)" style="margin-right: 10px">重执行</el-link>
  16. <el-link :underline="false" type="primary" size="mini" v-if="row.uri" @click="download(row)"> 下载 </el-link>
  17. </template>
  18. </el-table-column>
  19. </el-table>
  20. </el-col>
  21. <el-col :span="24" class="thr">
  22. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  23. </el-col>
  24. </el-col>
  25. </el-row>
  26. </div>
  27. </template>
  28. <script setup>
  29. import { Search } from '@element-plus/icons-vue'
  30. import { cloneDeep, get } from 'lodash-es'
  31. const $checkRes = inject('$checkRes')
  32. import { UserStore } from '@/store/user'
  33. const userStore = UserStore()
  34. const user = computed(() => userStore.user)
  35. // 接口
  36. import { ExportConfigStore } from '@/store/api/exportConfig'
  37. const store = ExportConfigStore()
  38. // 加载中
  39. const loading = ref(false)
  40. // 列表
  41. const list = ref([])
  42. let skip = 0
  43. let limit = inject('limit')
  44. const total = ref(0)
  45. const currentPage = ref(1)
  46. // 请求
  47. onMounted(async () => {
  48. loading.value = true
  49. await search()
  50. loading.value = false
  51. })
  52. const search = async (query = { skip, limit }) => {
  53. skip = query.skip
  54. limit = query.limit
  55. const info = {
  56. skip: query.skip,
  57. limit: query.limit,
  58. user: user.value.id
  59. }
  60. const res = await store.query(info)
  61. if (res.errcode == '0') {
  62. list.value = res.data
  63. total.value = res.total
  64. }
  65. }
  66. const reExecute = async (data) => {
  67. const id = get(data, 'id')
  68. const result = await store.reExecute(id)
  69. if ($checkRes(result, true, result.errmsg)) search({ skip, limit })
  70. }
  71. const download = (data) => {
  72. const uri = get(data, 'uri')
  73. window.open(uri)
  74. }
  75. // 分页
  76. const changePage = (page = currentPage.value) => {
  77. search({ skip: (page - 1) * limit, limit: limit })
  78. }
  79. const sizeChange = (limits) => {
  80. limit = limits
  81. currentPage.value = 1
  82. search({ skip: 0, limit: limit })
  83. }
  84. </script>
  85. <style scoped lang="scss">
  86. .main {
  87. .one {
  88. height: 50px;
  89. display: flex;
  90. justify-content: space-between;
  91. align-items: center;
  92. margin: 0 0 10px 0;
  93. .one_left {
  94. background: #1875df;
  95. padding: 0 10px;
  96. height: 30px;
  97. color: #fff;
  98. line-height: 30px;
  99. text-align: center;
  100. font-size: 16px;
  101. cursor: default;
  102. }
  103. }
  104. .thr {
  105. display: flex;
  106. justify-content: center;
  107. margin: 20px 0 0 0;
  108. }
  109. }
  110. </style>