<template> <a-modal class="modal-form-flex" title="修改" :visible="visible" :confirmLoading="confirmLoading" :width=700 :destroyOnClose=true :maskClosable=false @ok="handleOk" @cancel="handleCancel"> <a-form :form="form" autocomplete="off"> <a-form-item label="用户账号" :label-col="{ span: 5 }" :wrapper-col="{ span: 16 }"> <a-input disabled :maxLength="20" v-decorator="['username']"/> </a-form-item> </a-form> </a-modal> </template> showModal() { this.visible = true; this.$nextTick(() => { this.form.setFieldsValue({username:"测试"}); }); } 第一次showModal()时有用户账号数据, 但是第二次以上showModal()时用户账号没数据了 版本1.5.3以下的含1.5.3好着呢,1.5.4以后不行了