|
@@ -78,7 +78,7 @@ watch(visible, () => {
|
|
|
|
|
|
const rules: EpFormRules = {
|
|
|
reason: [{ required: true, message: '请选择打回原因' }],
|
|
|
- description: [{ type: 'string', max: 50, message: '说明文字限制50字以内' }],
|
|
|
+ description: [{ type: 'string', max: 300, message: '说明文字限制300字以内' }],
|
|
|
}
|
|
|
|
|
|
const reason = ['给分太高', '给分太低', '注意,评分偏紧', '注意,评分偏松', '评分不稳定,请认真评卷', '其他'].map((v) => ({
|
|
@@ -93,7 +93,7 @@ const items: any[] = [
|
|
|
labelWidth: '80px',
|
|
|
prop: 'description',
|
|
|
slotType: 'input',
|
|
|
- slot: { type: 'textarea', maxlength: 50, resize: 'none', rows: 6, showWordLimit: true },
|
|
|
+ slot: { type: 'textarea', maxlength: 300, resize: 'none', rows: 6, showWordLimit: true },
|
|
|
},
|
|
|
]
|
|
|
|