feat(靓号审批页): 驳回弹窗的备注输入框去除空格限制
This commit is contained in:
parent
fb74a242fa
commit
0f7e2a6b1d
@ -10,13 +10,17 @@
|
||||
v-loading="loading"
|
||||
:model="form"
|
||||
:rules="formRules"
|
||||
label-width="80px"
|
||||
label-width="40px"
|
||||
>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input
|
||||
v-model.trim="form.remark"
|
||||
v-model="form.remark"
|
||||
type="textarea"
|
||||
@keyup.native="descriptionKeyup"
|
||||
placeholder="请输入驳回理由"
|
||||
maxlength="300"
|
||||
resize="none"
|
||||
show-word-limit
|
||||
rows="8"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
@ -57,7 +61,7 @@ export default {
|
||||
remark: ""
|
||||
},
|
||||
formRules: {
|
||||
remark: commonRules
|
||||
// remark: commonRules
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user