限制理由20字符

This commit is contained in:
zoujiandong 2024-03-28 09:03:36 +08:00
parent 41e5088ada
commit 1398a5a48f

View File

@ -148,10 +148,10 @@
</a-modal> </a-modal>
<!-- 审核失败弹框 --> <!-- 审核失败弹框 -->
<a-modal :mask-closable="false" v-model:visible="modalCheckVisible" :title="'拒绝理由'" title-align="start" <a-modal :mask-closable="false" v-model:visible="modalCheckVisible" :title="'拒绝理由'" title-align="start"
@before-ok="handleSubmit" @close="() => { $refs.checkFormRef.resetFields();}"> @before-ok="handleSubmit" @close="() => { $refs.checkFormRef.resetFields();}">
<a-form :model="modalCheckForm" ref="checkFormRef" <a-form :model="modalCheckForm" ref="checkFormRef"
:auto-label-width="true" :mask-closable="false" > :auto-label-width="true" :mask-closable="false" :rules="rules" >
<a-form-item field="avatar_reason" label="头像原因:"> <a-form-item field="avatar_reason" label="头像原因:">
<a-textarea v-model="modalCheckForm.avatar_reason" placeholder="请输入头像原因" /> <a-textarea v-model="modalCheckForm.avatar_reason" placeholder="请输入头像原因" />
</a-form-item> </a-form-item>