回款凭证

This commit is contained in:
liuxi 2024-12-31 17:21:44 +08:00
parent 29d6b89210
commit 29bcdc0822
4 changed files with 27 additions and 4 deletions

View File

@ -141,6 +141,9 @@ html{
overflow: hidden;
white-space: nowrap;
}
.text-left{
text-align: left;
}
.text-center{
text-align: center;
}

View File

@ -8,7 +8,7 @@
:model="repaymentObj"
:rules="rulesClientRule"
label-width="100px">
<el-form-item label="材料类:" prop="materialType">
<el-form-item label="材料:" prop="materialType">
<el-select v-model="repaymentObj.materialType" placeholder="请选择" class="width100">
<el-option
v-for="(item,index) in materialTypeOptions"

View File

@ -124,7 +124,6 @@
<div class="height-56 flex-row align-items-center justify-content-between">
<div class="f22 color-text-primary">凭证列表</div>
<div class="flex-row">
</div>
</div>
<div class="case-table">
@ -156,8 +155,10 @@
</el-table-column>
</el-table>
</div>
<div class="text-center pt-16">
<div class="text-left pt-8">
<span class="color-274ea4">合计回款金额{{Proof_statistics.payback}}</span>
</div>
<div class="text-center pt-16 ">
<el-pagination
@size-change="getCaseInfoList"
@current-change="getCaseInfoList"
@ -209,12 +210,15 @@ import smapi from "@/services/systemManage";
mediatorId:'',//id
current:1,
size:10,
status:'OK',
},
usageOption: ['今日','昨日', '近一周', '近一月', '近半年', '近一年'],
tableData: [],
total:0,
caseStatusData:[],
MediateUserList:[],
Proof_statistics:{}
}
},
@ -278,6 +282,13 @@ import smapi from "@/services/systemManage";
}
})
api.gettraceProof_amount(this.queryParam).then(res => {
if (!res.code) {
this.Proof_statistics = res;
}
})
},
handleToggleSearch() {
this.showSearch = !this.showSearch

View File

@ -140,6 +140,15 @@ const caseManagementApi = {
gettraceProof_page: data => {
return service.service.post(`${apiAdmin}api/trace/traceProof/page`, data)
},
// 统计回款总金额
gettraceProof_statistics: data => {
return service.service.post(`${apiAdmin}api/trace/traceProof/statistics`, data)
},
// 统计回款金额
gettraceProof_amount: data => {
return service.service.post(`${apiAdmin}api/trace/traceProof/amount`, data)
},
// 短信模板