diff --git a/src/api/emis/emisSettleBill.js b/src/api/emis/emisSettleBill.js index 2e783b3c..8a00400b 100644 --- a/src/api/emis/emisSettleBill.js +++ b/src/api/emis/emisSettleBill.js @@ -43,6 +43,24 @@ export function confirmNotOpenBillBySite(id) { } +// 核销 +export function chargeByCenter(id) { + return request({ + url: '/emis/emisSettleBill/chargeByCenter/' + id, + method: 'post' + }) +} + + +// 反核销 +export function unChargeByCenter(id,note) { + return request({ + url: '/emis/emisSettleBill/unChargeByCenter/' + id, + method: 'post', + data: {confirmCenterNote: note} + }) +} + // 查询结算总账单详细 export function getInfoBySettleBillNo(settleBillNo) { return request({ diff --git a/src/views/emis/emisSettleBill/panel/ChargeBillMoneyPanel.vue b/src/views/emis/emisSettleBill/panel/ChargeBillMoneyPanel.vue index 60dff340..56266b85 100644 --- a/src/views/emis/emisSettleBill/panel/ChargeBillMoneyPanel.vue +++ b/src/views/emis/emisSettleBill/panel/ChargeBillMoneyPanel.vue @@ -247,7 +247,7 @@