md
This commit is contained in:
parent
1501c847fd
commit
af215cf63a
@ -17,6 +17,7 @@ export function queryPayBackStatList(query) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export function queryBillPayStatInfoList(query) {
|
export function queryBillPayStatInfoList(query) {
|
||||||
return request({
|
return request({
|
||||||
url: '/emis/emisSettleBill/queryBillPayStatInfoList',
|
url: '/emis/emisSettleBill/queryBillPayStatInfoList',
|
||||||
|
|||||||
@ -10,6 +10,16 @@ export function listEmisSettlePayRecord(query) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 统计收款记录明细
|
||||||
|
export function queryPayBackRecordList(query) {
|
||||||
|
return request({
|
||||||
|
url: '/emis/emisSettlePayRecord/queryPayBackRecordList',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 查询账单收退款记录详细
|
// 查询账单收退款记录详细
|
||||||
export function getEmisSettlePayRecord(id) {
|
export function getEmisSettlePayRecord(id) {
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
ref="refTable"
|
ref="refTable"
|
||||||
|
|
||||||
storageName="waringEmisSettleBillList_custbill_query_main"
|
storageName="paybackrecord_query_main_250501"
|
||||||
:data="emisSettleBillList"
|
:data="emisSettleBillList"
|
||||||
:showSearch.sync="showSearch"
|
:showSearch.sync="showSearch"
|
||||||
:queryParams="queryParams"
|
:queryParams="queryParams"
|
||||||
@ -38,9 +38,10 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- 账单名称 账单月份 账期 运单号 客户名称 支付方式 付款方式 开票状态 开票金额 收款状态 账单金额 账单退款金额 理赔金额 折让金额 抵扣金额 其他收费 收款金额 收款时间 收款登记人 销售联系人 回款联系人 寄件公司 件数 重量 实际重量 体积 结算重量 线路 产品类型 收款登记备注 -->
|
||||||
|
|
||||||
<el-table-column type="selection" width="55" align="center" />
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
<el-table-column :label="$t('账单名称')" align="left" prop="settleBillName" width="200" :show-overflow-tooltip="true"/>
|
<el-table-column :label="$t('账单名称')" align="left" prop="settleBillName" width="200" :show-overflow-tooltip="true"/>
|
||||||
<el-table-column :label="$t('账单编号')" align="center" prop="settleBillNo" width="170" :show-overflow-tooltip="true"/>
|
|
||||||
<el-table-column :label="$t('账单月份')" align="center" prop="billMonth" width="80" />
|
<el-table-column :label="$t('账单月份')" align="center" prop="billMonth" width="80" />
|
||||||
<el-table-column :label="$t('账单期间')" align="center" prop="billMonthRange" width="200" :show-overflow-tooltip="true">
|
<el-table-column :label="$t('账单期间')" align="center" prop="billMonthRange" width="200" :show-overflow-tooltip="true">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
@ -126,11 +127,11 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { listEmisSettleBill } from "@/api/emis/emisSettleBill";
|
import { queryPayBackRecordList } from "@/api/emis/emisSettlePayRecord";
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "EmisSettleBillQuery",
|
name: "PayBackRecordList",
|
||||||
props:{
|
props:{
|
||||||
queryInfo:{
|
queryInfo:{
|
||||||
type:Object
|
type:Object
|
||||||
@ -240,7 +241,7 @@ export default {
|
|||||||
this.queryParams.openBillStatus=0;
|
this.queryParams.openBillStatus=0;
|
||||||
}
|
}
|
||||||
|
|
||||||
listEmisSettleBill(this.queryParams).then(response => {
|
queryPayBackRecordList(this.queryParams).then(response => {
|
||||||
this.emisSettleBillList = response.rows;
|
this.emisSettleBillList = response.rows;
|
||||||
this.total = response.total;
|
this.total = response.total;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user