This commit is contained in:
linfso 2025-06-09 17:29:19 +08:00
parent c8746db385
commit 70b119aa34
2 changed files with 15 additions and 1 deletions

View File

@ -33,6 +33,11 @@
type: [String],
required: false
},
notShowAll:{
type: Number,
required: false,
default:1,
},
disabled:{
type: [Boolean],
required: false,
@ -46,6 +51,9 @@
queryParams:{
pageNum: 1,
pageSize: 10,
params:{
notShowAll:this.filterFlag
}
}
};
},

View File

@ -117,7 +117,11 @@
<el-table-column :label="$t('账单月份')" align="center" prop="billMonth" width="80" />
<el-table-column :label="$t('账期(天)')" align="center" prop="creditPeriod" min-width="100" />
<el-table-column :label="$t('出账时间')" align="center" prop="createTime" min-width="170" />
<el-table-column :label="$t('最后回款日')" align="center" prop="paymentDueDate" min-width="170" />
<el-table-column :label="$t('最后回款日')" align="center" prop="paymentDueDate" min-width="170" >
<template slot-scope="scope">
<span>{{ parseTime(scope.row.paymentDueDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column :label="$t('支付方式')" align="center" prop="settleType" width="100" >
<template slot-scope="scope">
<el-tag v-if="scope.row.settleType=='1'" type="error">现金</el-tag>
@ -185,6 +189,8 @@
<script>
import { parseTime,parseExcelTime } from "@/utils/custom";
import { queryPayBackStatList } from "@/api/emis/emisSettleBill";
import elDateAdvPicker from '@/components/DatePickerAdv/elDateAdvPicker';
import AllMonthpayAccountPicker from '@/views/emis/EmisBaseTools/AllMonthpayAccountPicker.vue';