mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-23 21:36:37 +08:00
优化 费用项功能
This commit is contained in:
parent
f6cc48983f
commit
494f66686b
@ -49,15 +49,7 @@
|
||||
<div class="form-group input-group">
|
||||
<select class="form-control-md form-control input-s-sm inline" v-model="listOweFeeInfo.conditions.roomSubType">
|
||||
<option selected value="">请选择房屋类型</option>
|
||||
<option value="110">
|
||||
住宅
|
||||
</option>
|
||||
<option value="120">
|
||||
办公室
|
||||
</option>
|
||||
<option value="119">
|
||||
宿舍
|
||||
</option>
|
||||
<option :value="item.statusCd" v-for="(item,index) in listOweFeeInfo.roomSubTypes">{{item.name}}</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -28,7 +28,8 @@
|
||||
feeConfigs: [],
|
||||
feeConfigNames: [],
|
||||
floorId: '',
|
||||
unitId: ''
|
||||
unitId: '',
|
||||
roomSubTypes: []
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
@ -46,6 +47,10 @@
|
||||
vc.getDict('report_owe_fee', "payer_obj_type", function(_data) {
|
||||
vc.component.listOweFeeInfo.payObjTypes = _data;
|
||||
});
|
||||
//与字典表关联
|
||||
vc.getDict('building_room', "room_sub_type", function(_data) {
|
||||
vc.component.listOweFeeInfo.roomSubTypes = _data;
|
||||
});
|
||||
vc.component._loadListOweFeeInfo(1, 10);
|
||||
$that._listFeeConfigs();
|
||||
},
|
||||
|
||||
@ -161,11 +161,8 @@
|
||||
_loadDataByParam: function() {
|
||||
vc.component.roomInfo.conditions.floorId = vc.getParam("floorId");
|
||||
vc.component.roomInfo.conditions.floorId = vc.getParam("floorName");
|
||||
//如果 floodId 没有传 则,直接结束
|
||||
/* if(!vc.notNull(vc.component.roomInfo.conditions.floorId)){
|
||||
return ;
|
||||
}*/
|
||||
var param = {
|
||||
|
||||
let param = {
|
||||
params: {
|
||||
communityId: vc.getCurrentCommunity().communityId,
|
||||
floorId: vc.component.roomInfo.conditions.floorId
|
||||
|
||||
Loading…
Reference in New Issue
Block a user