合同结束费用

This commit is contained in:
Your Name 2023-03-07 23:27:26 +08:00
parent 7d60affa8f
commit a76beb6b28
3 changed files with 10 additions and 0 deletions

View File

@ -34,6 +34,7 @@
vc.emit('listParkingSpaceFee', 'notify', {});
vc.emit('simplifyRoomFee', 'notify', {});
vc.emit('simplifyCarFee', 'notify', {});
vc.emit('listContractFee', 'notify', {});
vc.toast("结束费用成功");
return;
}

View File

@ -73,6 +73,8 @@
<button class="btn btn-link btn-xs" v-on:click="_payFeeHis(fee)"><span><vc:i18n name="缴费历史" namespace="listContractFee"></vc:i18n></span></button>
<button class="btn btn-link btn-xs" v-if="vc.hasPrivilege('502020090604200029')" v-on:click="_deleteFee(fee)"><span><vc:i18n name="取消费用" namespace="listContractFee"></vc:i18n></span>
</button>
<button class="btn btn-link btn-xs" v-if="vc.hasPrivilege('502021070488970005')" v-on:click="_finishFee(fee)"><span><vc:i18n name="手工结束" namespace="listContractFee"></vc:i18n></span>
</button>
<button class="btn btn-link btn-xs" v-if="fee.state != '2009001' && vc.hasPrivilege('502020090427190001')" v-on:click="_editFee(fee)"><span><vc:i18n name="费用变更" namespace="listContractFee"></vc:i18n></span>
</button>
</td>
@ -97,4 +99,5 @@
<vc:create path="property/editFee"></vc:create>
<vc:create path="property/contractCreateFeeAdd"></vc:create>
<vc:create path="property/tempImportRoomFee"></vc:create>
<vc:create path="property/finishFee"></vc:create>
</div>

View File

@ -98,6 +98,12 @@
feeId: _fee.feeId
});
},
_finishFee: function(_fee) {
vc.emit('finishFee', 'openFinishFeeModal', {
communityId: vc.getCurrentCommunity().communityId,
feeId: _fee.feeId
});
},
_refreshListContractFeeInfo: function() {
vc.component.listContractFeeInfo._currentFeeConfigName = "";
},