美文网首页
vue / js input file 条件调用

vue / js input file 条件调用

作者: 反者道之动001 | 来源:发表于2018-10-12 17:04 被阅读13次

    -- 好久没写文章了, 最近好忙好忙

    input file选择文件, 但是有条件的话怎么办。怎么阻止。

    哈哈 就是修改file

    vue参考代码

    nextPhotographCheck(){
                let row = this.list.find(e => e.choice)
    
                if(row.type == 2){
                    if(!Config.isNumber2(row.writeZhekou) && row.writeZhekou !== ''){
                        this.isSelectPic = false
                    }else{
                        this.isSelectPic = true
                    }
                }
            },
            nextPhotographClick(){
                this.isSelectPic || Config.totast('填写的金额不对')
            },
    

    --END--

    相关文章

      网友评论

          本文标题:vue / js input file 条件调用

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