This commit is contained in:
linfso 2025-04-25 13:11:36 +08:00
parent f09c845421
commit 2fa93fcff6
2 changed files with 10 additions and 8 deletions

View File

@ -48,7 +48,7 @@
ref="refTable" ref="refTable"
storageName="emisCreditCustomerList_main_250425" storageName="emisCreditCustomerList_main_250426"
v-loading="loading" v-loading="loading"
border stripe border stripe
@ -125,12 +125,12 @@
</el-table-column> </el-table-column>
<el-table-column :label="$t('账期内已用')" align="center" prop="inTermMoney" min-width="120" :sortable="true"> <el-table-column :label="$t('账期内已用')" align="center" prop="inTermMoney" min-width="120" :sortable="true">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.inTermMoney }} <div @click="handleShowBillList(scope.row,2)" class="link-type">{{ scope.row.inTermMoney }}</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('超期已用')" align="center" prop="overTermMoney" min-width="120" :sortable="true"> <el-table-column :label="$t('超期已用')" align="center" prop="overTermMoney" min-width="120" :sortable="true">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.overTermMoney }} <div @click="handleShowBillList(scope.row,1)" class="link-type">{{ scope.row.overTermMoney }}</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('剩余比例(%)')" align="center" prop="curMoneyRate" min-width="130" :sortable="true"> <el-table-column :label="$t('剩余比例(%)')" align="center" prop="curMoneyRate" min-width="130" :sortable="true">
@ -310,7 +310,7 @@ export default {
this.$modal.msgSuccess("已保存"); this.$modal.msgSuccess("已保存");
}); });
}, },
handleShowBillList(row){ handleShowBillList(row,queryQuotaType){
let item0=row; let item0=row;
this.$router.push( this.$router.push(
{ {
@ -321,6 +321,7 @@ export default {
startDate: item0.startDate, startDate: item0.startDate,
endDate: item0.endDate, endDate: item0.endDate,
transType: item0.transType, transType: item0.transType,
queryQuotaType:queryQuotaType,
'_t':(new Date()).getTime() '_t':(new Date()).getTime()
} }
} }

View File

@ -37,7 +37,7 @@
<XdTable v-loading="loading" <XdTable v-loading="loading"
ref="refTable" ref="refTable"
storageName="emisCreditSalesmenList_main_250425" storageName="emisCreditSalesmenList_main_250426"
border stripe border stripe
size="small" size="small"
@ -117,12 +117,12 @@
</el-table-column> </el-table-column>
<el-table-column :label="$t('账期内已用')" align="center" prop="inTermMoney" min-width="120" :sortable="true"> <el-table-column :label="$t('账期内已用')" align="center" prop="inTermMoney" min-width="120" :sortable="true">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.inTermMoney }} <div class="link-type" @click="handleShowBillList(scope.row,2)">{{ scope.row.inTermMoney }}</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('超期已用')" align="center" prop="overTermMoney" min-width="120" :sortable="true"> <el-table-column :label="$t('超期已用')" align="center" prop="overTermMoney" min-width="120" :sortable="true">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.overTermMoney }} <div class="link-type" @click="handleShowBillList(scope.row,1)">{{ scope.row.overTermMoney }}</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('剩余比例(%)')" align="center" prop="curMoneyRate" min-width="130" :sortable="true"> <el-table-column :label="$t('剩余比例(%)')" align="center" prop="curMoneyRate" min-width="130" :sortable="true">
@ -288,7 +288,7 @@ export default {
}); });
}, },
handleShowBillList(row){ handleShowBillList(row,queryQuotaType){
let item0=row; let item0=row;
this.$router.push( this.$router.push(
{ {
@ -299,6 +299,7 @@ export default {
startDate: item0.startDate, startDate: item0.startDate,
endDate: item0.endDate, endDate: item0.endDate,
transType: item0.transType, transType: item0.transType,
queryQuotaType:queryQuotaType,
'_t':(new Date()).getTime() '_t':(new Date()).getTime()
} }
} }