c85e0853
wuxw
业主详情开发完成
|
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
|
<div>
<el-row class="margin-top-lg">
<el-col :span="12"></el-col>
<el-col :span="12" class="text-right">
<el-button type="primary" size="small" @click="_printFeeReceipt" style="margin-left:10px">
{{$t('ownerDetailReceipt.print')}}
</el-button>
<el-button type="primary" size="small" @click="_printFeeSmallReceipt" style="margin-left:10px">
{{$t('ownerDetailReceipt.printSmall')}}
</el-button>
<el-button type="primary" size="small" @click="_printApplyFeeReceipt" style="margin-left:10px">
{{$t('ownerDetailReceipt.printApply')}}
</el-button>
</el-col>
</el-row>
<div class="margin-top">
<el-table
:data="ownerDetailReceiptInfo.feeReceipts"
style="width: 100%; margin-top: 10px"
border
stripe
>
<el-table-column width="50" align="center">
<template slot-scope="scope">
<el-checkbox
v-model="scope.row.checked"
@change="handleCheckChange(scope.row)"
></el-checkbox>
</template>
</el-table-column>
<el-table-column prop="objName" :label="$t('ownerDetailReceipt.feeType')" align="center"></el-table-column>
<el-table-column prop="payObjName" :label="$t('ownerDetailReceipt.owner')" align="center"></el-table-column>
<el-table-column prop="feeName" :label="$t('ownerDetailReceipt.feeItem')" align="center"></el-table-column>
<el-table-column :label="$t('ownerDetailReceipt.chargePeriod')" align="center">
<template slot-scope="scope">
{{dateFormat(scope.row.startTime)}}~<br>
{{dateFormat(scope.row.endTime)}}
</template>
</el-table-column>
<el-table-column prop="amount" :label="$t('ownerDetailReceipt.totalAmount')" align="center"></el-table-column>
<el-table-column prop="createTime" :label="$t('ownerDetailReceipt.paymentTime')" align="center"></el-table-column>
<el-table-column prop="receiptId" :label="$t('ownerDetailReceipt.receiptId')" align="center"></el-table-column>
</el-table>
<el-pagination
@current-change="handleCurrentChange"
:current-page="currentPage"
:page-size="pageSize"
layout="total, prev, pager, next, jumper"
:total="total">
</el-pagination>
</div>
</div>
</template>
<script>
import { queryFeeReceipt, listFeePrintPage } from '@/api/owner/ownerDetailReceiptApi'
import { getCommunityId } from '@/api/community/communityApi'
export default {
name: 'OwnerDetailReceipt',
data() {
return {
ownerDetailReceiptInfo: {
feeReceipts: [],
payObjId: '',
total: 0,
records: 0,
selectReceipts: [],
|
c85e0853
wuxw
业主详情开发完成
|
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
|
},
currentPage: 1,
pageSize: 10,
total: 0,
communityId: ''
}
},
created() {
this.communityId = getCommunityId()
},
methods: {
open(ownerId) {
this.ownerDetailReceiptInfo.payObjId = ownerId
this._listFeePrintPages()
this._listOwnerDetailReceipt(this.currentPage, this.pageSize)
},
_listOwnerDetailReceipt(page, rows) {
this.ownerDetailReceiptInfo.selectReceipts = []
const param = {
page: page,
row: rows,
payObjId: this.ownerDetailReceiptInfo.payObjId,
communityId: this.communityId
}
queryFeeReceipt(param).then(response => {
this.ownerDetailReceiptInfo.feeReceipts = response.data.data.map(item => {
return { ...item, checked: false }
})
this.total = response.data.total
}).catch(error => {
console.error('请求失败:', error)
})
},
_listFeePrintPages() {
const param = {
page: 1,
row: 1,
state: 'T',
communityId: this.communityId
}
listFeePrintPage(param).then(response => {
const feePrintPages = response.data.data
if (feePrintPages && feePrintPages.length > 0) {
this.ownerDetailReceiptInfo.printUrl = feePrintPages[0].url
}
}).catch(error => {
console.error('请求失败:', error)
})
},
_printFeeReceipt() {
const selected = this.ownerDetailReceiptInfo.feeReceipts.filter(item => item.checked)
if (selected.length < 1) {
this.$message.warning(this.$t('ownerDetailReceipt.selectPrint'))
return
}
const receiptIds = selected.map(item => item.receiptId).join(',')
window.open(`${this.ownerDetailReceiptInfo.printUrl}?receiptIds=${receiptIds}&apply=N`)
},
_printApplyFeeReceipt() {
const selected = this.ownerDetailReceiptInfo.feeReceipts.filter(item => item.checked)
if (selected.length < 1) {
this.$message.warning(this.$t('ownerDetailReceipt.selectPrint'))
return
}
const receiptIds = selected.map(item => item.receiptId).join(',')
|
c85e0853
wuxw
业主详情开发完成
|
139
140
141
142
143
144
145
146
|
},
_printFeeSmallReceipt() {
const selected = this.ownerDetailReceiptInfo.feeReceipts.filter(item => item.checked)
if (selected.length < 1) {
this.$message.warning(this.$t('ownerDetailReceipt.selectPrint'))
return
}
const receiptIds = selected.map(item => item.receiptId).join(',')
|
c85e0853
wuxw
业主详情开发完成
|
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
},
handleCheckChange(row) {
if (row.checked) {
this.ownerDetailReceiptInfo.selectReceipts.push(row.receiptId)
} else {
const index = this.ownerDetailReceiptInfo.selectReceipts.indexOf(row.receiptId)
if (index > -1) {
this.ownerDetailReceiptInfo.selectReceipts.splice(index, 1)
}
}
},
handleCurrentChange(val) {
this.currentPage = val
this._listOwnerDetailReceipt(val, this.pageSize)
},
dateFormat(date) {
// Implement your date formatting logic here
return date
}
}
}
</script>
|