|
@@ -70,7 +70,8 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="申请人" align="center" prop="applierName">
|
|
|
<template #default="scope">
|
|
|
- <el-link type="primary" @click="openDetail(scope.row)" style="font-size: 12px;"> {{scope.row.applierName}}</el-link>
|
|
|
+ <el-link type="primary" @click="openDetail(scope.row)" style="font-size: 12px;">
|
|
|
+ {{scope.row.applierName}}</el-link>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="合同类型" align="center" prop="contractType">
|
|
@@ -81,14 +82,16 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="实收" align="center" prop="reallyDetailAmount">
|
|
|
<template #default="scope">
|
|
|
- <el-link type="primary" @click="openDetailIn(scope.row)" style="font-size: 12px;"> {{scope.row.reallyDetailAmount}}</el-link>
|
|
|
+ <el-link type="primary" @click="openDetailIn(scope.row)" style="font-size: 12px;">
|
|
|
+ {{scope.row.reallyDetailAmount}}</el-link>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="待收" align="center" prop="waitDetailAmount">
|
|
|
</el-table-column>
|
|
|
<el-table-column label="支出" align="center" prop="outAmount">
|
|
|
<template #default="scope">
|
|
|
- <el-link type="primary" @click="openDetailOut(scope.row)" style="font-size: 12px;"> {{scope.row.outAmount}}</el-link>
|
|
|
+ <el-link type="primary" @click="openDetailOut(scope.row)" style="font-size: 12px;">
|
|
|
+ {{scope.row.outAmount}}</el-link>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="审核时间" align="center" prop="examineTime">
|
|
@@ -116,7 +119,11 @@
|
|
|
<el-table-column label="是否是项目" align="center" prop="isProject" />
|
|
|
<el-table-column label="服务金额" align="center" prop="detailAllAmount" />
|
|
|
<el-table-column label="实收" align="center" prop="reallyDetailAmount" />
|
|
|
- <el-table-column label="审核时间" align="center" prop="examineTime" />
|
|
|
+ <el-table-column label="审核时间" align="center" prop="examineTime" >
|
|
|
+ <template #default="scope">
|
|
|
+ {{(scope.row.examineTime === '0000-00-00 00:00:00') ? '' : scope.row.examineTime}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
<div v-if="outData.length > 0">
|
|
@@ -131,10 +138,15 @@
|
|
|
<el-table-column label="付款金额" align="center" prop="withdrawalAmount" />
|
|
|
<el-table-column label="申请人" width="100" align="center" prop="applierName" />
|
|
|
<el-table-column label="合同类型" align="center" prop="contractType" />
|
|
|
- <el-table-column label="是否是项目" align="center" prop="isProject" />
|
|
|
+ <!-- <el-table-column label="是否是项目" align="center" prop="isProject" /> -->
|
|
|
<el-table-column label="服务金额" align="center" prop="detailAllAmount" />
|
|
|
<el-table-column label="实收" align="center" prop="reallyDetailAmount" />
|
|
|
- <el-table-column label="审核时间" align="center" prop="examineTime" />
|
|
|
+ <!-- <el-table-column label="审核时间" align="center" prop="examineTime"/> -->
|
|
|
+ <el-table-column label="审核时间" align="center" prop="examineTime">
|
|
|
+ <template #default="scope">
|
|
|
+ {{(scope.row.examineTime === '0000-00-00 00:00:00') ? '' : scope.row.examineTime}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
<template #footer>
|
|
@@ -242,9 +254,12 @@
|
|
|
if (res.code == 200) {
|
|
|
inData.value = res.data.data.inList
|
|
|
inData.value.forEach(element => {
|
|
|
- element.withdrawalAmount = item.withdrawalAmount
|
|
|
+ element.withdrawalAmount = item.withdrawalAmount
|
|
|
});
|
|
|
outData.value = res.data.data.outList
|
|
|
+ outData.value.forEach(element => {
|
|
|
+ element.contractType = item.contractType
|
|
|
+ });
|
|
|
loading.value = false;
|
|
|
open.value = true;
|
|
|
} else {
|
|
@@ -252,7 +267,7 @@
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
function openDetailIn(item) {
|
|
|
loading.value = true;
|
|
|
let data = JSON.parse(JSON.stringify(queryParams.value));
|
|
@@ -262,7 +277,7 @@
|
|
|
if (res.code == 200) {
|
|
|
inData.value = res.data.data.inList
|
|
|
inData.value.forEach(element => {
|
|
|
- element.withdrawalAmount = item.withdrawalAmount
|
|
|
+ element.withdrawalAmount = item.withdrawalAmount
|
|
|
});
|
|
|
outData.value = []
|
|
|
loading.value = false;
|