美文网首页
antd-vue 表单回显数据和重置

antd-vue 表单回显数据和重置

作者: zhang_sir_ | 来源:发表于2020-04-24 13:28 被阅读0次

//回显

edit(record){

      this.$nextTick(function(){

        //或者下载个 lodash.pick 插件

        //this.form.setFieldsValue(pick(record,'name','keyWord','sex','age','email','content'))

        this.form.setFieldsValue({'name':record.name,‘sex’:record.sex});

      });

      this.done=true;

    }

//清空

this.form.resetFields();

相关文章

网友评论

      本文标题:antd-vue 表单回显数据和重置

      本文链接:https://www.haomeiwen.com/subject/aoxfwhtx.html