fix: 修改列表和尾款支付时间限制

This commit is contained in:
lzhizhao 2025-05-02 18:58:20 +08:00
parent 8bdaea0ad4
commit 4a1d34e6dc
2 changed files with 11 additions and 2 deletions

View File

@ -303,6 +303,9 @@ export default {
field: "presalePrice",
type: "jsx",
render: ({ row }) => {
if (!row.productSpecificationList) {
return <span>-</span>
}
if (
Math.min.apply(
Math,
@ -352,6 +355,9 @@ export default {
field: "earnestMoney",
type: "jsx",
render: ({ row }) => {
if (!row.productSpecificationList) {
return <span>-</span>
}
if (
Math.min.apply(
Math,
@ -401,6 +407,9 @@ export default {
field: "balancePayment",
type: "jsx",
render: ({ row }) => {
if (!row.productSpecificationList) {
return <span>-</span>
}
if (
Math.min.apply(
Math,

View File

@ -40,8 +40,8 @@
>
<el-date-picker
@change="getArrearsTime"
format="yyyy-MM-dd"
data-format="yyyy-MM-dd"
format="yyyy-MM-dd HH:mm"
data-format="yyyy-MM-dd HH:mm"
value-format="yyyy-MM-dd HH:mm:ss"
v-model="arrears"
type="datetimerange"