diff --git a/src/api/index.js b/src/api/index.js index f4e97dd..30ba837 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -33,3 +33,36 @@ export function queryOwnerParkRecord(param) { data:param }) } +/** + * 分页查询车主欠费记录 + * @param param + */ +export function pageQueryArrearRecordByCondition(param) { + return request({ + url: '/personPc/index/pageQueryArrearRecordByCondition', + method: 'post', + data:param + }) +} +/** + * 补缴获取二维码 + * @param param + */ +export function personOrderBackWxPay(param) { + return request({ + url: '/personPc/wxPay/personOrderBackWxPay', + method: 'post', + data:param + }) +} +/** + * 获取所有组织下拉框 + * @param param + */ +export function selectAllAppOrg(param) { + return request({ + url: '/personPc/index/selectAllAppOrg', + method: 'post', + data:param + }) +} diff --git a/src/filters/index.js b/src/filters/index.js index 4de8085..346dff8 100644 --- a/src/filters/index.js +++ b/src/filters/index.js @@ -266,6 +266,8 @@ export function inOutStateFormatter(row, value) { if (orderState == 52) { return "欠费"; + }else if (orderState == 53) { + return "欠费已补缴"; } else { return "离场"; } diff --git a/src/views/payback/index.vue b/src/views/payback/index.vue index 5efbf75..52814ba 100644 --- a/src/views/payback/index.vue +++ b/src/views/payback/index.vue @@ -4,6 +4,16 @@ + + + + + + + + + + @@ -43,10 +53,10 @@ :show-overflow-tooltip="true"> + prop="arrearageFee" + label="欠费金额"> - 这是二维码 +
+ + +
确 定 @@ -113,16 +126,18 @@