Blame view

src/components/fee/invoiceApplyDetailEvent.vue 2.1 KB
9b01bbd3   wuxw   开发完成发票相关功能
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
  <template>
    <div class="invoice-apply-detail-event">
      <el-table :data="events" border style="width: 100%">
        <el-table-column prop="eventTypeName" :label="$t('invoiceApplyDetailEvent.type')" align="center"></el-table-column>
        <el-table-column prop="createUserName" :label="$t('invoiceApplyDetailEvent.operator')" align="center"></el-table-column>
        <el-table-column prop="remark" :label="$t('invoiceApplyDetailEvent.remark')" align="center"></el-table-column>
        <el-table-column prop="createTime" :label="$t('invoiceApplyDetailEvent.time')" align="center"></el-table-column>
      </el-table>
  
      <el-pagination
        @size-change="handleSizeChange"
        @current-change="handleCurrentChange"
        :current-page="page.current"
        :page-sizes="[10, 20, 30, 50]"
        :page-size="page.size"
        layout="total, sizes, prev, pager, next, jumper"
        :total="page.total">
      </el-pagination>
    </div>
  </template>
  
  <script>
  import { getInvoiceEventList } from '@/api/fee/invoiceApplyDetailApi'
  
  export default {
    name: 'InvoiceApplyDetailEvent',
    props: {
      applyId: {
        type: String,
        required: true
      }
    },
    data() {
      return {
        events: [],
        page: {
          current: 1,
          size: 10,
          total: 0
        }
      }
    },
    watch: {
      applyId: {
        immediate: true,
        handler() {
          if (this.applyId) {
            this.loadData()
          }
        }
      }
    },
    methods: {
      async loadData() {
        try {
          const params = {
            page: this.page.current,
            row: this.page.size,
            applyId: this.applyId
          }
          const res = await getInvoiceEventList(params)
          if (res.code === 0) {
            this.events = res.data
            this.page.total = res.total
          }
        } catch (error) {
          this.$message.error(this.$t('invoiceApplyDetailEvent.fetchError'))
        }
      },
      handleSizeChange(val) {
        this.page.size = val
        this.loadData()
      },
      handleCurrentChange(val) {
        this.page.current = val
        this.loadData()
      }
    }
  }
  </script>
  
  <style scoped>
  .invoice-apply-detail-event {
    margin-top: 20px;
  }
  </style>