1.1.31 隐藏合同回款确认按钮,在分款页面进行回款分配。

dev
yinq 19 hours ago
parent d0d0e5050e
commit 4b832b7d18

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

Loading…
Cancel
Save