|
|
@ -392,7 +392,7 @@ export default { |
|
|
options: col.bodyOptions, |
|
|
options: col.bodyOptions, |
|
|
maxlength: col.bodyMaxlength, |
|
|
maxlength: col.bodyMaxlength, |
|
|
label: this.$t(col.label), |
|
|
label: this.$t(col.label), |
|
|
precision: currentItem[col.bodyPrecisionKey] || col.precision || 0, |
|
|
|
|
|
|
|
|
precision: currentItem[col.bodyPrecisionKey] || col.precision , |
|
|
copyFrom: col.copyFrom || "", |
|
|
copyFrom: col.copyFrom || "", |
|
|
compareTo: col.bodyCompareTo, // 添加 compareTo 字段 |
|
|
compareTo: col.bodyCompareTo, // 添加 compareTo 字段 |
|
|
type: col.bodyType || "input", |
|
|
type: col.bodyType || "input", |
|
|
@ -409,7 +409,7 @@ export default { |
|
|
maxlength: col.bodySubMaxlength || 10, |
|
|
maxlength: col.bodySubMaxlength || 10, |
|
|
label: "", |
|
|
label: "", |
|
|
placeholder: col.bodySubPlaceholder || "请输入", |
|
|
placeholder: col.bodySubPlaceholder || "请输入", |
|
|
precision: col.subPrecision || 0, |
|
|
|
|
|
|
|
|
precision: col.subPrecision, |
|
|
compareTo: col.bodySubCompareTo, // 添加 compareTo 字段 |
|
|
compareTo: col.bodySubCompareTo, // 添加 compareTo 字段 |
|
|
type: col.bodySubType || "input", |
|
|
type: col.bodySubType || "input", |
|
|
} |
|
|
} |
|
|
|