1a0bdbe0
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
|
<template>
<el-dialog
:title="$t('payFeeOrderResult.title')"
:visible.sync="dialogVisible"
width="40%"
@close="handleClose"
:close-on-click-modal="false"
>
<div class="result-content">
<p>{{ $t('payFeeOrderResult.success') }}</p>
<p v-if="!receiptId">{{ $t('payFeeOrderResult.receiptTip') }}</p>
</div>
<div slot="footer" class="dialog-footer">
<el-button @click="back">{{ $t('payFeeOrderResult.back') }}</el-button>
<el-button
v-if="receiptId"
type="primary"
@click="printSmallAndBack"
>
{{ $t('payFeeOrderResult.printSmall') }}
</el-button>
<el-button
v-if="receiptId"
type="primary"
@click="printAndBack('ON')"
>
{{ $t('payFeeOrderResult.mergePrint') }}
</el-button>
<el-button
v-if="receiptId"
type="primary"
@click="printAndBack('OFF')"
>
{{ $t('payFeeOrderResult.printReceipt') }}
</el-button>
</div>
</el-dialog>
</template>
<script>
import { getCommunityId } from '@/api/community/communityApi'
|
1a0bdbe0
wuxw
优化缴费页面
|
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
87
88
89
|
export default {
name: 'PayFeeOrderResult',
data() {
return {
dialogVisible: false,
receiptId: '',
printUrl: '/print.html#/pages/property/printPayFee'
}
},
created() {
this.listFeePrintPages()
},
methods: {
open(params) {
if (!params) {
this.dialogVisible = true
return
}
this.queryPayFeeReceiptId(params)
},
close() {
this.dialogVisible = false
},
async queryPayFeeReceiptId(params) {
try {
const communityId = await getCommunityId()
const response = await this.$http.get('/feeReceipt/queryFeeReceipt', {
params: {
detailIds: params.detailId,
communityId,
page: 1,
row: 1
}
})
if (response.data.code === 0 && response.data.data && response.data.data.length > 0) {
this.receiptId = response.data.data[0].receiptId
}
this.dialogVisible = true
} catch (error) {
console.error('查询收据ID失败:', error)
}
},
async listFeePrintPages() {
try {
|
1a0bdbe0
wuxw
优化缴费页面
|
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
|
}
} catch (error) {
console.error('获取打印页面失败:', error)
}
},
printAndBack(merge) {
window.open(`${this.printUrl}?receiptId=${this.receiptId}&merge=${merge}`)
},
printSmallAndBack() {
window.open(`/smallPrint.html#/pages/property/printSmallPayFee?receiptId=${this.receiptId}`)
},
back() {
this.close()
this.$emit('back')
},
handleClose() {
this.receiptId = ''
}
}
}
</script>
<style scoped>
.result-content {
text-align: center;
padding: 20px;
}
.dialog-footer {
text-align: center;
}
</style>
|