zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<template>
  <div>
    <TableList
      :isPaddingRight="false"
      :list="accounts"
      :header="tableHeader"
      :isShowPages='false'
      :max-height='528'
      :loading="loading"
    ></TableList>
    <div class="btn">
      <el-button size="medium" type="primary" @click="confirm">确认</el-button>
    </div>
  </div>
</template>
<script>
import TableList from "./TableList";
import { PayCompanysHeader } from '@comprehensive/utils/tableHeaders'
export default {
  props: ['accounts'],
  data () {
    return {
      loading:false,
      tableHeader: [...PayCompanysHeader],
    }
  },
  components: {
    TableList
  },
  methods: {
    confirm(){
      this.$emit('close',false)
    }
  }
}
</script>
<style lang="stylus" scoped>
div
  .btn
    margin-top 20px
    text-align center
    .el-button
      width: 120px;
      font-size: 14px;
      line-height: 20px;
      padding: 5px 0;
</style>