Blame view

src/components/owner/ownerOweFees.vue 2.56 KB
b25b036d   wuxw   v1.9 优化日期
1
  <template>
81955f61   wuxw   优化房屋页面
2
3
4
5
6
7
8
9
10
11
12
    <el-dialog :visible.sync="visible" :title="$t('ownerOweFees.title')" width="80%" top="5vh" custom-class="custom-modal"
      @close="handleClose">
      <el-table :data="ownerOweFeesInfo.fees" stripe border style="width: 100%; margin-top: 15px">
        <el-table-column prop="payerObjName" :label="$t('ownerOweFees.payerObj')" align="center" />
        <el-table-column prop="ownerName" :label="$t('ownerOweFees.ownerName')" align="center" />
        <el-table-column prop="ownerTel" :label="$t('ownerOweFees.phone')" align="center" />
        <el-table-column prop="endTime" :label="$t('ownerOweFees.startTime')" align="center" />
        <el-table-column prop="deadlineTime" :label="$t('ownerOweFees.endTime')" align="center" />
        <el-table-column prop="amountOwed" :label="`${$t('ownerOweFees.total')} (${$t('ownerOweFees.unit')})`"
          align="center" />
        <el-table-column prop="updateTime" :label="$t('ownerOweFees.updateTime')" align="center" />
af1bcbd6   wuxw   房屋页面开发中
13
      </el-table>
81955f61   wuxw   优化房屋页面
14
15
16
17
  
      <el-pagination v-if="pagination.total > 0" background layout="prev, pager, next" :total="pagination.total"
        :page-size="pagination.pageSize" :current-page="pagination.currentPage" @current-change="handlePageChange"
        style="margin-top: 20px; text-align: right" />
af1bcbd6   wuxw   房屋页面开发中
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
    </el-dialog>
  </template>
  
  <script>
  import { getOwnerOweFees } from '@/api/room/ownerOweFeesApi'
  
  export default {
    name: 'OwnerOweFees',
    data() {
      return {
        visible: false,
        ownerOweFeesInfo: {
          fees: [],
          ownerId: ''
        },
        pagination: {
          total: 0,
          pageSize: 10,
          currentPage: 1
        }
      }
    },
    methods: {
      open(ownerId) {
        this.ownerOweFeesInfo.ownerId = ownerId
        this.pagination.currentPage = 1
        this.visible = true
        this.loadData()
      },
      handleClose() {
        this.visible = false
      },
      handlePageChange(currentPage) {
        this.pagination.currentPage = currentPage
        this.loadData()
      },
      async loadData() {
        try {
          const params = {
            page: this.pagination.currentPage,
            row: this.pagination.pageSize,
            communityId: this.getCommunityId(),
            ownerId: this.ownerOweFeesInfo.ownerId
          }
81955f61   wuxw   优化房屋页面
62
  
af1bcbd6   wuxw   房屋页面开发中
63
64
          const response = await getOwnerOweFees(params)
          this.ownerOweFeesInfo.fees = response.data
f9f29297   wuxw   v1.9 分页 record 传给...
65
          this.pagination.total = response.total
af1bcbd6   wuxw   房屋页面开发中
66
67
68
69
70
        } catch (error) {
          console.error('加载欠费信息失败:', error)
          this.$message.error(this.$t('common.loadFailed'))
        }
      },
af1bcbd6   wuxw   房屋页面开发中
71
72
73
74
75
    }
  }
  </script>
  
  <style scoped>
81955f61   wuxw   优化房屋页面
76
  .custom-modal>>>.el-dialog__body {
af1bcbd6   wuxw   房屋页面开发中
77
78
79
    padding: 15px 20px;
  }
  </style>