点击增加按钮插入了一行数据,格式如下
现在我点保存的时候需要判断如果插入的数据为空值就提示信息,如果没有空值并且input框必填值存在即可保存
目前我循环了插入的数组可以判断出来有没有空数据,但是在我第一次没有插入数据并且填写了输入框必填值可以打印出console的值"可以新增了!",但是当我插入了空数据提示了有空值然后我再删除之后点击保存没有打印出"可以新增了!!", 此时的input 框有值, 求详细解释
if (this.type == "新增") {
console.log( this.tableData)
console.log(this.productSpec.specName)
this.tableData.forEach((item,index)=>{
if (this.tableData.length>0 && item.specItem == "" && item.remarks == "" && item.number == ""){
this.result = true;
this.$message({
type:"warning",
message:"规格项目存在空数据"
})
}
})
if (this.result != true) {
console.log("可以新增了!!!!!!!!!")
}
// }
// // if (this.productSpec.specName && (item.specItem != "" && item.remarks != "" && item.number != "") ) {
// // this.$confirm("是否提交数据", "提示", {
// // confirmButtonText: "确定",
// // cancelButtonText: "取消",
// // type: "warning",
// // }).then(()=>{
// // this.add();
// // })