md
This commit is contained in:
parent
af215cf63a
commit
63b4213575
@ -3,9 +3,7 @@
|
||||
<div slot="pageContent" style="height:calc(100vh - 3rem)">
|
||||
<XdTable
|
||||
slot="pageContent"
|
||||
|
||||
height="calc(100vh - 20rem)"
|
||||
|
||||
v-loading="loading"
|
||||
border stripe
|
||||
size="mini"
|
||||
@ -22,8 +20,7 @@
|
||||
@sort-change="handleSortChange"
|
||||
show-summary
|
||||
:summary-method="getSummaries"
|
||||
>
|
||||
|
||||
>
|
||||
<div slot="toolbar">
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
@ -195,19 +192,8 @@ export default {
|
||||
pageNum: 1,
|
||||
pageSize: 500,
|
||||
|
||||
billMonth: null,
|
||||
custNo: null,
|
||||
openBillStatus: null,
|
||||
paymentStatus: null,
|
||||
chargeStatus: null,
|
||||
settleBillNo: null,
|
||||
|
||||
payee: null,
|
||||
salesmen: null,
|
||||
|
||||
params:{
|
||||
noPayBill:null,
|
||||
canOpenBill:null
|
||||
}
|
||||
},
|
||||
};
|
||||
},
|
||||
@ -228,19 +214,7 @@ export default {
|
||||
this.loading = true;
|
||||
this.emisSettleBillList=[];
|
||||
console.log("====>queryInfo====>",this.queryInfo);
|
||||
this.queryParams.salesmen=this.queryInfo.salesmen;
|
||||
this.queryParams.billMonth=this.queryInfo.billMonth;
|
||||
if(this.queryType==1){
|
||||
this.queryParams.params.noPayBill=1;
|
||||
this.queryParams.params.canOpenBill=null;
|
||||
this.queryParams.openBillStatus=null;
|
||||
}
|
||||
else if(this.queryType==2){
|
||||
this.queryParams.params.noPayBill=null;
|
||||
this.queryParams.params.canOpenBill=1;
|
||||
this.queryParams.openBillStatus=0;
|
||||
}
|
||||
|
||||
this.queryParams.settleBillNo=this.queryInfo.settleBillNo;
|
||||
queryPayBackRecordList(this.queryParams).then(response => {
|
||||
this.emisSettleBillList = response.rows;
|
||||
this.total = response.total;
|
||||
@ -249,10 +223,6 @@ export default {
|
||||
|
||||
},
|
||||
|
||||
handleSendDbClick(row){
|
||||
this.$emit("onSelect",row);
|
||||
},
|
||||
|
||||
//指定列求和
|
||||
getSummaries(param) {
|
||||
const { columns, data } = param;
|
||||
@ -410,7 +380,9 @@ export default {
|
||||
qExportParam.pageNum=1;
|
||||
qExportParam.pageSize=20000;
|
||||
|
||||
listEmisSettleBill(qExportParam).then(response => {
|
||||
// qExportParam.settleBillNo=this.queryInfo.settleBillNo;
|
||||
|
||||
queryPayBackRecordList(qExportParam).then(response => {
|
||||
if (response.code === 200) {
|
||||
this.exportData(response.rows,loadingInstance);
|
||||
}
|
||||
|
||||
@ -87,7 +87,7 @@
|
||||
@click="handleExport"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<!-- <el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
@ -95,7 +95,7 @@
|
||||
size="mini"
|
||||
@click="handleExportDtl"
|
||||
>导出收款明细</el-button>
|
||||
</el-col>
|
||||
</el-col> -->
|
||||
|
||||
</el-row>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user