You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
617 B
12 lines
617 B
<div>
|
|
<i-form ref="formValidate" :model="formValidate" :rules="ruleInline" inline>
|
|
<form-item label="备注:" prop="con" class="form-item" label-position="right" :label-width="100">
|
|
<i-input v-model="formValidate.con" placeholder="请输入备注" style="width: 100%" maxlength="200" type="textarea"
|
|
:rows="5" show-word-limit></i-input>
|
|
</form-item>
|
|
<div class="mask-footer">
|
|
<i-button type="primary" @click="handleSubmit('formValidate')">提交</i-button>
|
|
<i-button @click="close">取消</i-button>
|
|
</div>
|
|
</i-form>
|
|
</div> |