b25b036d
wuxw
v1.9 优化日期
|
1
|
<template>
|
24d3590f
wuxw
房屋收费页面开发完成
|
2
3
4
5
|
<div>
<el-row class="margin-top">
<el-col :span="22" class="text-right"></el-col>
<el-col :span="2" class="text-right">
|
257e836f
wuxw
v1.9 优化排版英文bug
|
6
|
<!-- <el-button
|
24d3590f
wuxw
房屋收费页面开发完成
|
7
8
9
10
11
12
13
14
|
type="primary"
size="small"
style="margin-left:10px"
v-if="hasPrivilege('502020082314267912') && simplifyOwnerRoomsInfo.ownerId"
@click="_openSimplifyOwnerRoomsBatchPayFeeModal()"
>
<i class="el-icon-plus"></i>
<span>{{ $t('simplifyOwnerRooms.batchPay') }}</span>
|
257e836f
wuxw
v1.9 优化排版英文bug
|
15
|
</el-button> -->
|
24d3590f
wuxw
房屋收费页面开发完成
|
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
|
</el-col>
</el-row>
<div>
<el-table
:data="simplifyOwnerRoomsInfo.rooms"
style="margin-top:10px"
border
stripe
>
<el-table-column :label="$t('simplifyOwnerRooms.roomCode')" align="center">
<template slot-scope="scope">
{{scope.row.floorNum}}-{{scope.row.unitNum}}-{{scope.row.roomNum}}
</template>
</el-table-column>
<el-table-column prop="layer" :label="$t('simplifyOwnerRooms.floor')" align="center"></el-table-column>
<el-table-column prop="roomSubTypeName" :label="$t('simplifyOwnerRooms.type')" align="center"></el-table-column>
<el-table-column :label="$t('simplifyOwnerRooms.area')" align="center">
<template slot-scope="scope">
{{scope.row.builtUpArea}}/{{scope.row.roomArea}}
</template>
</el-table-column>
<el-table-column prop="roomRent" :label="$t('simplifyOwnerRooms.rent')" align="center"></el-table-column>
<el-table-column :label="$t('simplifyOwnerRooms.validity')" align="center">
<template slot-scope="scope">
{{scope.row.startTime}}<br>~{{scope.row.endTime}}
</template>
</el-table-column>
<el-table-column prop="stateName" :label="$t('simplifyOwnerRooms.roomStatus')" align="center"></el-table-column>
<el-table-column :label="$t('simplifyOwnerRooms.roomOweFee')" align="center">
<template slot-scope="scope">
{{scope.row.roomOweFee || '0.00'}}({{$t('simplifyOwnerRooms.updateDaily')}})
</template>
</el-table-column>
|
257e836f
wuxw
v1.9 优化排版英文bug
|
49
|
<el-table-column :label="$t('simplifyOwnerRooms.actions')" align="center" v-if="hasChange == 'Y'">
|
24d3590f
wuxw
房屋收费页面开发完成
|
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
|
<template slot-scope="scope">
<el-button-group v-if="simplifyOwnerRoomsInfo.roomId != scope.row.roomId">
<el-button size="mini" @click="_toChooseOwnerRoomModel(scope.row)">
{{ $t('simplifyOwnerRooms.choose') }}
</el-button>
</el-button-group>
<div v-else>
{{ $t('simplifyOwnerRooms.currentRoom') }}
</div>
</template>
</el-table-column>
</el-table>
<el-row>
<el-col :span="16"></el-col>
<el-col :span="8" class="float-right">
<span>{{ $t('simplifyOwnerRooms.subtotalOweFee') }}:{{simplifyOwnerRoomsInfo.allOweFeeAmount}}</span>
</el-col>
</el-row>
<el-pagination
@current-change="handleCurrentChange"
:current-page="currentPage"
:page-size="pageSize"
layout="total, prev, pager, next"
:total="total">
</el-pagination>
</div>
</div>
</template>
<script>
import { getCommunityId } from '@/api/community/communityApi'
import { queryRoomsByOwner } from '@/api/fee/simplifyOwnerRoomsApi'
export default {
name: 'SimplifyOwnerRooms',
|
257e836f
wuxw
v1.9 优化排版英文bug
|
85
86
87
88
89
90
|
props:{
hasChange:{
type:String,
default:'Y'
}
},
|
24d3590f
wuxw
房屋收费页面开发完成
|
91
92
93
94
95
96
97
98
99
100
|
data() {
return {
DEFAULT_PAGE: 1,
DEFAULT_ROWS: 10,
simplifyOwnerRoomsInfo: {
rooms: [],
ownerId: '',
roomId: '',
total: 0,
records: 1,
|
257e836f
wuxw
v1.9 优化排版英文bug
|
101
|
allOweFeeAmount: 0,
|
24d3590f
wuxw
房屋收费页面开发完成
|
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
|
},
currentPage: 1,
pageSize: 10,
total: 0
}
},
created() {
this._initEvent()
},
methods: {
_initEvent() {
},
handleSwitch(param) {
if (!param.ownerId) return
this.clearSimplifyOwnerRoomsInfo()
Object.assign(this.simplifyOwnerRoomsInfo, param)
this._listSimplifyOwnerRooms(this.DEFAULT_PAGE, this.DEFAULT_ROWS)
},
handleCurrentChange(val) {
this._listSimplifyOwnerRooms(val, this.DEFAULT_ROWS)
},
async _listSimplifyOwnerRooms() {
try {
const res = await queryRoomsByOwner({
ownerId: this.simplifyOwnerRoomsInfo.ownerId,
communityId: getCommunityId()
})
this.simplifyOwnerRoomsInfo.rooms = res.rooms
this._computeOwnerRoomOweFeeAmount()
this.simplifyOwnerRoomsInfo.total = res.total
this.simplifyOwnerRoomsInfo.records = res.records
|
f9f29297
wuxw
v1.9 分页 record 传给...
|
133
|
this.total = res.total
|
24d3590f
wuxw
房屋收费页面开发完成
|
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
} catch (error) {
console.error('Request failed:', error)
}
},
_toChooseOwnerRoomModel(room) {
this.$emit('notifyRoom', room)
},
_computeOwnerRoomOweFeeAmount() {
let total = 0
this.simplifyOwnerRoomsInfo.allOweFeeAmount = 0
if (!this.simplifyOwnerRoomsInfo.rooms || this.simplifyOwnerRoomsInfo.rooms.length < 1) return
this.simplifyOwnerRoomsInfo.rooms.forEach(room => {
if (room.roomOweFee) {
total += parseFloat(room.roomOweFee)
}
})
this.simplifyOwnerRoomsInfo.allOweFeeAmount = total.toFixed(2)
},
clearSimplifyOwnerRoomsInfo() {
this.simplifyOwnerRoomsInfo = {
rooms: [],
ownerId: '',
roomId: '',
total: 0,
records: 1,
|
257e836f
wuxw
v1.9 优化排版英文bug
|
160
|
allOweFeeAmount: 0,
|
24d3590f
wuxw
房屋收费页面开发完成
|
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
}
},
_openSimplifyOwnerRoomsBatchPayFeeModal() {
this.$router.push(`/property/batchPayFeeOrder?ownerId=${this.simplifyOwnerRoomsInfo.ownerId}&payerObjType=3333`)
},
hasPrivilege(code) {
void code; // 占位,消除未使用警告
return true;
},
open(params) {
this.handleSwitch(params)
}
}
}
</script>
<style scoped>
.margin-top {
margin-top: 15px;
}
.float-right {
float: right;
}
.text-right {
text-align: right;
}
</style>
|