This commit is contained in:
2026-07-21 13:20:06 +08:00
parent 76df2b9cd2
commit e50d1b8fda
21 changed files with 714 additions and 129 deletions

View File

@@ -13,11 +13,16 @@ const validateNonNegative = (rule, value, callback) => {
};
export const option = {
title: '里程记录(无船)',
height: 'auto',
calcHeight: 32,
dialogWidth: 980,
labelPosition: 'top',
tip: false,
searchBtnText: '查询',
emptyBtnText: '重置',
saveBtnText: '提交',
updateBtnText: '提交',
searchShow: true,
searchMenuSpan: 6,
border: true,
@@ -57,7 +62,7 @@ export const option = {
rules: [{ validator: validateNonNegative, trigger: 'blur' }],
},
{
label: '本月行驶里程km',
label: '本月行驶里程(km)',
prop: 'monthlyMileage',
type: 'number',
precision: 2,
@@ -65,7 +70,7 @@ export const option = {
rules: [{ validator: validateNonNegative, trigger: 'blur' }],
},
{
label: '累计行驶里程km',
label: '累计行驶里程(km)',
prop: 'totalMileage',
type: 'number',
precision: 2,