|
@@ -40,7 +40,7 @@
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
- <p style="font-size: 14px; color: #606266">应付总额:¥30000.00</p>
|
|
|
|
|
|
|
+ <p style="font-size: 14px; color: #606266">应付总额:¥{{ totalAmount }}</p>
|
|
|
<el-table :data="firstData1" height="calc(100% - 196px)" style="width: 100%; margin-top: 20px;">
|
|
<el-table :data="firstData1" height="calc(100% - 196px)" style="width: 100%; margin-top: 20px;">
|
|
|
<el-table-column prop="name" label="业务员"></el-table-column>
|
|
<el-table-column prop="name" label="业务员"></el-table-column>
|
|
|
<el-table-column prop="attrType" label="业务员类型">
|
|
<el-table-column prop="attrType" label="业务员类型">
|
|
@@ -108,7 +108,7 @@
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
- <p style="font-size: 14px; color: #606266">应付总额:¥30000.00</p>
|
|
|
|
|
|
|
+ <p style="font-size: 14px; color: #606266">应付总额:¥{{ totalAmount }}</p>
|
|
|
|
|
|
|
|
<el-table :data="firstData2" height="calc(100% - 144px)" style="width: 100%; margin-top: 20px;">
|
|
<el-table :data="firstData2" height="calc(100% - 144px)" style="width: 100%; margin-top: 20px;">
|
|
|
<el-table-column prop="name" label="业务员"></el-table-column>
|
|
<el-table-column prop="name" label="业务员"></el-table-column>
|
|
@@ -177,7 +177,7 @@
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
- <p style="font-size: 14px; color: #606266">应付总额:¥30000.00</p>
|
|
|
|
|
|
|
+ <p style="font-size: 14px; color: #606266">应付总额:¥{{ totalAmount }}</p>
|
|
|
|
|
|
|
|
<el-table :data="firstData3" height="calc(100% - 144px)" style="width: 100%; margin-top: 20px;">
|
|
<el-table :data="firstData3" height="calc(100% - 144px)" style="width: 100%; margin-top: 20px;">
|
|
|
<el-table-column prop="name" label="业务员"></el-table-column>
|
|
<el-table-column prop="name" label="业务员"></el-table-column>
|
|
@@ -280,6 +280,7 @@ const handleSearch = () => {
|
|
|
initData(activeName.value)
|
|
initData(activeName.value)
|
|
|
getMyPaymentTotalWithdrawalAmount()
|
|
getMyPaymentTotalWithdrawalAmount()
|
|
|
}
|
|
}
|
|
|
|
|
+let totalAmount = ref(0)
|
|
|
//我的付款-应收总额
|
|
//我的付款-应收总额
|
|
|
const getMyPaymentTotalWithdrawalAmount = () => {
|
|
const getMyPaymentTotalWithdrawalAmount = () => {
|
|
|
api.financeApi.myPaymentTotalWithdrawalAmount({
|
|
api.financeApi.myPaymentTotalWithdrawalAmount({
|
|
@@ -290,7 +291,7 @@ const getMyPaymentTotalWithdrawalAmount = () => {
|
|
|
auditingStatus: activeName.value,
|
|
auditingStatus: activeName.value,
|
|
|
}).then((res: any) => {
|
|
}).then((res: any) => {
|
|
|
if (res.data) {
|
|
if (res.data) {
|
|
|
- total1.value = res.data
|
|
|
|
|
|
|
+ totalAmount.value = res.data
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|