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

View File

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