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

@@ -30,11 +30,16 @@ export const ocrTemplateDic = [
];
export const option = {
title: '保险记录(OCR)',
height: 'auto',
calcHeight: 32,
dialogWidth: 1100,
labelPosition: 'top',
tip: false,
searchBtnText: '查询',
emptyBtnText: '重置',
saveBtnText: '提交',
updateBtnText: '提交',
searchShow: true,
searchMenuSpan: 6,
border: true,
@@ -123,6 +128,7 @@ export const option = {
prop: 'insuredAmount',
type: 'number',
precision: 2,
append: '元',
minWidth: 120,
rules: [{ validator: validateNonNegative, trigger: 'blur' }],
},
@@ -131,6 +137,7 @@ export const option = {
prop: 'premium',
type: 'number',
precision: 2,
append: '元',
minWidth: 120,
rules: [
{ required: true, message: '请输入保费', trigger: 'blur' },