|
@@ -7,14 +7,14 @@
|
|
|
<yearMonthYay ref="yearMonthYay" @getYearData="getYearData" @getMonthData="getMonthData" @getDayData="getDayData"></yearMonthYay>
|
|
<yearMonthYay ref="yearMonthYay" @getYearData="getYearData" @getMonthData="getMonthData" @getDayData="getDayData"></yearMonthYay>
|
|
|
</template>
|
|
</template>
|
|
|
<template slot="保司机构">
|
|
<template slot="保司机构">
|
|
|
- <el-cascader v-model="pageData.partnerCompaniesIdList" size="small" :show-all-levels="false" ize="small"
|
|
|
|
|
- :options="ztreeNodes" :props='{
|
|
|
|
|
- checkStrictly: true,
|
|
|
|
|
- value: "id",
|
|
|
|
|
- label: "name",
|
|
|
|
|
- children: "children",
|
|
|
|
|
- }' clearable filterable></el-cascader>
|
|
|
|
|
- </template>
|
|
|
|
|
|
|
+ <el-cascader v-model="pageData.partnerCompaniesIdList" size="small" :show-all-levels="false" ize="small"
|
|
|
|
|
+ :options="ztreeNodes" :props='{
|
|
|
|
|
+ checkStrictly: true,
|
|
|
|
|
+ value: "id",
|
|
|
|
|
+ label: "name",
|
|
|
|
|
+ children: "children",
|
|
|
|
|
+ }' clearable filterable></el-cascader>
|
|
|
|
|
+ </template>
|
|
|
</templateTable>
|
|
</templateTable>
|
|
|
<el-dialog
|
|
<el-dialog
|
|
|
title="详情"
|
|
title="详情"
|
|
@@ -252,8 +252,8 @@ export default {
|
|
|
this.formData.day=val
|
|
this.formData.day=val
|
|
|
},
|
|
},
|
|
|
// 查询
|
|
// 查询
|
|
|
- handleSearchList() {
|
|
|
|
|
- this.findPage();
|
|
|
|
|
|
|
+ handleSearchList(data) {
|
|
|
|
|
+ this.findPage(data);
|
|
|
},
|
|
},
|
|
|
handleSearchList1(data){
|
|
handleSearchList1(data){
|
|
|
this.findPageDetail({...this.formDetail,...data})
|
|
this.findPageDetail({...this.formDetail,...data})
|
|
@@ -289,13 +289,13 @@ export default {
|
|
|
|
|
|
|
|
//列表数据
|
|
//列表数据
|
|
|
findPage(data) {
|
|
findPage(data) {
|
|
|
- if (data) {
|
|
|
|
|
- this.pageData.pageNum = data.pageNum;
|
|
|
|
|
- this.pageData.pageSize = data.pageSize;
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ // if (data) {
|
|
|
|
|
+ // this.pageData.pageNum = data.pageNum;
|
|
|
|
|
+ // this.pageData.pageSize = data.pageSize;
|
|
|
|
|
+ // }
|
|
|
this.tableConfig.loading = true;
|
|
this.tableConfig.loading = true;
|
|
|
this.$api.task
|
|
this.$api.task
|
|
|
- .totalBxAmount({...this.pageData,...this.formData})
|
|
|
|
|
|
|
+ .totalBxAmount({...this.pageData,...this.formData, ...data})
|
|
|
.then(res => {
|
|
.then(res => {
|
|
|
if (res.code==200) {
|
|
if (res.code==200) {
|
|
|
this.tableData = res.data? res.data:[]
|
|
this.tableData = res.data? res.data:[]
|