md
This commit is contained in:
parent
a15330d69b
commit
2782213a76
@ -4,6 +4,7 @@
|
||||
<div class="flex">
|
||||
<div class="from">
|
||||
<el-input
|
||||
clearable
|
||||
ref="input_from"
|
||||
v-model="userInputForm"
|
||||
:disabled="disabled"
|
||||
@ -20,6 +21,7 @@
|
||||
<div class="to">
|
||||
<el-input
|
||||
ref="input_to"
|
||||
clearable
|
||||
v-model="userInputTo"
|
||||
:disabled="disabled"
|
||||
placeholder=""
|
||||
|
||||
@ -26,6 +26,7 @@
|
||||
v-model="form.startDate"
|
||||
type="datetime"
|
||||
value-format="yyyy-MM-dd HH:mm:ss"
|
||||
default-time = "00:00:00"
|
||||
:placeholder="$t('起始时间')">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
@ -36,6 +37,7 @@
|
||||
v-model="form.endDate"
|
||||
type="datetime"
|
||||
value-format="yyyy-MM-dd HH:mm:ss"
|
||||
default-time = "23:59:59"
|
||||
:placeholder="$t('结束时间')">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
|
||||
@ -48,7 +48,7 @@
|
||||
|
||||
|
||||
ref="refTable"
|
||||
storageName="emisCreditCustomerList_main_250303"
|
||||
storageName="emisCreditCustomerList_main_250305"
|
||||
|
||||
v-loading="loading"
|
||||
border stripe
|
||||
@ -127,6 +127,7 @@
|
||||
</el-switch>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column :label="$t('剩余额度')" align="center" prop="curMoney" min-width="100" />
|
||||
<el-table-column :label="$t('已使用额度')" align="center" prop="hasUseMoney" min-width="100" >
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.creditMoney - scope.row.curMoney }}
|
||||
|
||||
@ -28,6 +28,7 @@
|
||||
v-model="form.startDate"
|
||||
type="datetime"
|
||||
value-format="yyyy-MM-dd HH:mm:ss"
|
||||
default-time = "00:00:00"
|
||||
:placeholder="$t('起始时间')">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
@ -38,6 +39,7 @@
|
||||
v-model="form.endDate"
|
||||
type="datetime"
|
||||
value-format="yyyy-MM-dd HH:mm:ss"
|
||||
default-time = "23:59:59"
|
||||
:placeholder="$t('结束时间')">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
|
||||
@ -37,7 +37,7 @@
|
||||
<XdTable v-loading="loading"
|
||||
|
||||
ref="refTable"
|
||||
storageName="emisCreditSalesmenList_main_250303"
|
||||
storageName="emisCreditSalesmenList_main_250305"
|
||||
|
||||
border stripe
|
||||
size="small"
|
||||
@ -116,6 +116,7 @@
|
||||
</el-switch>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column :label="$t('剩余额度')" align="center" prop="curMoney" min-width="100" />
|
||||
<el-table-column :label="$t('已使用额度')" align="center" prop="hasUseMoney" min-width="100" >
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.creditMoney - scope.row.curMoney }}
|
||||
@ -231,15 +232,13 @@ export default {
|
||||
let qParam = {...this.queryParams}
|
||||
|
||||
if(qParam.params.curMoneyRange&&qParam.params.curMoneyRange.length>0){
|
||||
qParam=this.addDateRange(this.qParam, qParam.params.curMoneyRange,'CurMoney')
|
||||
qParam=this.addDateRange(qParam, qParam.params.curMoneyRange,'CurMoney')
|
||||
}
|
||||
|
||||
if(qParam.params.curMoneyRateRange&&qParam.params.curMoneyRateRange.length>0){
|
||||
qParam=this.addDateRange(this.qParam, qParam.params.curMoneyRateRange,'CurMoneyRate')
|
||||
qParam=this.addDateRange(qParam, qParam.params.curMoneyRateRange,'CurMoneyRate')
|
||||
}
|
||||
|
||||
console.log("====>listEmisCreditSalesmen==>",qParam);
|
||||
|
||||
listEmisCreditSalesmen(qParam).then(response => {
|
||||
this.emisCreditSalesmenList = response.rows;
|
||||
this.total = response.total;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user