Blame view

src/components/fee/feeDetailSub.vue 4.51 KB
b25b036d   wuxw   v1.9 优化日期
1
  <template>
f80ea09a   wuxw   加入费用详情
2
3
4
5
    <div>
      <el-row>
        <el-col :span="24" class="text-right">
          <el-button type="primary" size="small" style="margin-left: 10px"
b0222bb0   wuxw   v1.9 优化加入费用拆分功能和费...
6
            v-if="hasPrivilege('502020090427190001') && feeDetailSubInfo.fee.state == '2008001'" @click="_splitPayFee">
f80ea09a   wuxw   加入费用详情
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
            {{ $t('feeDetailSub.split') }}
          </el-button>
        </el-col>
      </el-row>
  
      <el-table :data="feeDetailSubInfo.subs" border style="width: 100%" class="margin-top">
        <el-table-column prop="preFeeId" :label="$t('feeDetailSub.parentFeeId')" align="center">
          <template slot-scope="scope">
            <router-link :to="`/views/fee/feeDetail?feeId=${scope.row.preFeeId}`" target="_blank">
              {{ scope.row.preFeeId }}
            </router-link>
          </template>
        </el-table-column>
        <el-table-column prop="feeId" :label="$t('feeDetailSub.childFeeId')" align="center">
          <template slot-scope="scope">
            <router-link :to="`/views/fee/feeDetail?feeId=${scope.row.feeId}`" target="_blank">
              {{ scope.row.feeId }}
            </router-link>
          </template>
        </el-table-column>
        <el-table-column prop="feeName" :label="$t('feeDetailSub.feeName')" align="center" />
        <el-table-column prop="payerObjName" :label="$t('feeDetailSub.feeObject')" align="center" />
        <el-table-column :label="$t('feeDetailSub.billingPeriod')" align="center">
          <template slot-scope="scope">
            {{ dateFormat(new Date(scope.row.endTime)) }}<br />
            ~{{ dateFormat(new Date(scope.row.maxTime)) }}
          </template>
        </el-table-column>
        <el-table-column prop="createTime" :label="$t('feeDetailSub.splitTime')" align="center" />
        <el-table-column :label="$t('feeDetailSub.operation')" align="center">
          <template slot-scope="scope">
            <el-button size="mini" @click="_mergeFee(scope.row)">
              {{ $t('feeDetailSub.restoreMerge') }}
            </el-button>
          </template>
        </el-table-column>
      </el-table>
  
      <el-row>
        <el-col :span="24" class="text-right">
          <el-pagination @current-change="handleCurrentChange" :current-page="currentPage" :page-size="pageSize"
            :total="feeDetailSubInfo.total" layout="total, prev, pager, next" />
        </el-col>
      </el-row>
  
b0222bb0   wuxw   v1.9 优化加入费用拆分功能和费...
52
53
      <merge-fee ref="mergeFee" @success="loadData" />
      <split-fee ref="splitFee" @success="loadData" />
f80ea09a   wuxw   加入费用详情
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
    </div>
  </template>
  
  <script>
  import { listPayFeeSub, listFee } from '@/api/fee/feeDetailSubApi'
  import { getCommunityId } from '@/api/community/communityApi'
  import MergeFee from './mergeFee'
  import SplitFee from './splitFee'
  import { dateFormat } from '@/utils/dateUtil'
  
  export default {
    name: 'FeeDetailSub',
    components: {
      MergeFee,
      SplitFee
    },
    data() {
      return {
        feeDetailSubInfo: {
          subs: [],
          feeId: '',
          total: 0,
          records: 0,
          fee: {}
        },
        currentPage: 1,
        pageSize: 10,
        communityId: ''
      }
    },
    methods: {
      open(params) {
        if (!params.feeId) return
        Object.assign(this.feeDetailSubInfo, params)
        this.communityId = getCommunityId()
        this.loadData()
      },
      async loadData() {
        await this._listFeeDetailSub(this.currentPage, this.pageSize)
        await this._loadFeeDetailSubFeeInfo()
      },
      async _listFeeDetailSub(page, rows) {
        try {
          const params = {
            page,
            row: rows,
            pcFeeId: this.feeDetailSubInfo.feeId,
            communityId: this.communityId
          }
          const res = await listPayFeeSub(params)
          this.feeDetailSubInfo.total = res.total
          this.feeDetailSubInfo.records = res.records
          this.feeDetailSubInfo.subs = res.data
          this.currentPage = page
        } catch (error) {
          console.error('Failed to load fee sub list:', error)
        }
      },
      async _loadFeeDetailSubFeeInfo() {
        try {
          const params = {
            page: 1,
            row: 1,
            feeId: this.feeDetailSubInfo.feeId,
            communityId: this.communityId
          }
          const res = await listFee(params)
          this.feeDetailSubInfo.fee = res.fees[0] || {}
        } catch (error) {
          console.error('Failed to load fee info:', error)
        }
      },
      _mergeFee(fee) {
        this.$refs.mergeFee.open(fee)
      },
      _splitPayFee() {
        this.$refs.splitFee.open(this.feeDetailSubInfo.fee)
      },
      handleCurrentChange(page) {
        this._listFeeDetailSub(page, this.pageSize)
      },
      dateFormat
    }
  }
  </script>
  
  <style scoped>
  .margin-top {
    margin-top: 20px;
  }
  
  .text-right {
    text-align: right;
  }
  </style>