表单几个知识点

 textarea去掉右下角斜杠标:

textarea{
    resize:none;
    border:0;
}

iview 表单单独重置某一项:

this.$refs[name].fields.forEach(function (e) {

      if (e.prop == 'abc') {

          e.resetField()

      }

})

iview Upload实现手动上传文件:

          ref="upload"
      :headers="headers"
      show-upload-list
      drag
      :action="actionUrl"
      accept=".xlsx,.xls"
      :format="format"
      :limit="1"
      :on-success="success"
      :on-error="error"
      :before-upload="beforeUpload"
      :data="data"
    >
     
 
 

beforeUpload(file) {
     this.file = file;//将文件暂存起来
     return false;//阻止默认的上传
 },
handleOkClick(){
    this.$refs.upload.post(this.file)//手动触发上传
}

带参上传:iview upload爬坑 之手动上传以及动态修改附带参数 附后台接受测试代码 | 码农家园

iview Modal高度的设定问题

iview Modal高度的设定问题-CSDN博客

 

你可能感兴趣的:(前端,javascript,html)