|
|
|
@ -53,7 +53,7 @@
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" width="120" fixed="right">
|
|
|
|
<el-table-column label="操作" width="120" fixed="right">
|
|
|
|
<template #default="scope">
|
|
|
|
<template #default="scope">
|
|
|
|
<el-button link type="primary" @click="openStageDialog(scope.row)">阶段回款确认</el-button>
|
|
|
|
<el-button link type="primary" @click="openStageDialog(scope.row)">回款阶段</el-button>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
|
@ -98,17 +98,17 @@
|
|
|
|
{{ scope.row.collectionConfirmNickName || scope.row.collectionConfirmUserId || '—' }}
|
|
|
|
{{ scope.row.collectionConfirmNickName || scope.row.collectionConfirmUserId || '—' }}
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="确认日期" width="120">
|
|
|
|
<el-table-column label="实际回款日期" width="120">
|
|
|
|
<template #default="scope">
|
|
|
|
<template #default="scope">
|
|
|
|
{{ parseTime(scope.row.collectionConfirmTime, '{y}-{m}-{d}') || '—' }}
|
|
|
|
{{ parseTime(scope.row.collectionConfirmTime, '{y}-{m}-{d}') || '—' }}
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="确认备注" prop="collectionConfirmRemark" min-width="160" show-overflow-tooltip />
|
|
|
|
<!-- <el-table-column label="确认备注" prop="collectionConfirmRemark" min-width="160" show-overflow-tooltip />-->
|
|
|
|
<el-table-column label="操作" width="100" fixed="right">
|
|
|
|
<!-- <el-table-column label="操作" width="100" fixed="right">-->
|
|
|
|
<template #default="scope">
|
|
|
|
<!-- <template #default="scope">-->
|
|
|
|
<el-button link type="primary" @click="openConfirmDialog(scope.row)">确认</el-button>
|
|
|
|
<!-- <el-button link type="primary" @click="openConfirmDialog(scope.row)">确认</el-button>-->
|
|
|
|
</template>
|
|
|
|
<!-- </template>-->
|
|
|
|
</el-table-column>
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
@ -130,7 +130,7 @@
|
|
|
|
}}</span>
|
|
|
|
}}</span>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="实际回款日期" required>
|
|
|
|
<el-form-item label="实际回款日期" required>
|
|
|
|
<el-date-picker v-model="confirmForm.receivableDate" type="date" value-format="YYYY-MM-DD" style="width: 100%" />
|
|
|
|
<el-date-picker v-model="confirmForm.collectionConfirmTime" type="date" value-format="YYYY-MM-DD" style="width: 100%" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="实际回款金额" required>
|
|
|
|
<el-form-item label="实际回款金额" required>
|
|
|
|
<el-input-number
|
|
|
|
<el-input-number
|
|
|
|
@ -288,7 +288,7 @@ const submitConfirm = async () => {
|
|
|
|
ElMessage.warning('缺少阶段ID');
|
|
|
|
ElMessage.warning('缺少阶段ID');
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!confirmForm.receivableDate) {
|
|
|
|
if (!confirmForm.collectionConfirmTime) {
|
|
|
|
ElMessage.warning('请选择实际回款日期');
|
|
|
|
ElMessage.warning('请选择实际回款日期');
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|