diff --git a/src/api/emis/emisSettleBill.js b/src/api/emis/emisSettleBill.js
index 2548c1ca..6cd623e7 100644
--- a/src/api/emis/emisSettleBill.js
+++ b/src/api/emis/emisSettleBill.js
@@ -17,6 +17,14 @@ export function queryBillPayStatInfoList(query) {
})
}
+export function queryOpenBillStatInfoList(query) {
+ return request({
+ url: '/emis/emisSettleBill/queryOpenBillStatInfoList',
+ method: 'get',
+ params: query
+ })
+}
+
// 查询结算总账单详细
export function getEmisSettleBill(id) {
return request({
diff --git a/src/views/emis/emisSettleBill/BillPaybackBillList.vue b/src/views/emis/emisSettleBill/BillPaybackBillList.vue
index e57ff212..f172d80c 100644
--- a/src/views/emis/emisSettleBill/BillPaybackBillList.vue
+++ b/src/views/emis/emisSettleBill/BillPaybackBillList.vue
@@ -1,80 +1,11 @@
-
-
-
-
-
- 运单号
- 账单号
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
- 导出EXCEL电子表
-
-
-
-
-
+
{{scope.row.settleStartDate}}~{{scope.row.settleEndDate}}
@@ -243,38 +100,32 @@
-
-
-
-
diff --git a/src/views/emis/emisSettleBill/BillPaybackSumQuery.vue b/src/views/emis/emisSettleBill/BillPaybackSumQuery.vue
index bf9ba3b3..f57e425c 100644
--- a/src/views/emis/emisSettleBill/BillPaybackSumQuery.vue
+++ b/src/views/emis/emisSettleBill/BillPaybackSumQuery.vue
@@ -67,14 +67,7 @@
>
-
- 查询
-
+
-
-
@@ -197,16 +188,16 @@ export default {
// 查询参数
queryParams: {
pageNum:1,
- pageSize:20,
- scanType:null,
- scanSiteCode:this.$store.getters.ownerSiteCode,
- preOrNextStationCode:null,
- scanManCode:null,
- params:{
- beginScanDate:null,
- endScanDate:null,
- },
-
+ pageSize:500,
+ settleBillNo: null,
+ settleType: null,
+ billMonth: null,
+ custNo: null,
+ openBillStatus: null,
+ paymentStatus: null,
+ chargeStatus: null,
+ payee: null,
+ salesmen: null,
},
// 表单参数
form: {},
@@ -238,9 +229,8 @@ export default {
/** 查询明细列表 */
onDblClick(row, column, event) {
// this.loading = true;
- this.tempQueryParams.scanSiteCode = row.scanSiteCode;
- console.log("===>onDblClick====>",this.tempQueryParams);
- this.$emit("onSelect", this.tempQueryParams);
+ console.log("===>onDblClick====>",row);
+ this.$emit("onSelect", row);
},
/** 重置按钮操作 */