if (this.invoiceList.length == 0) {
this.$message.error('请勾选')
return
}
等于
if (this.invoiceList.length == 0) return this.$message.error('请勾选')
2.取不到数据,试试延迟获取
//取不到数据,试试延迟获取
created() {
var that = this
setTimeout(function() {
console.log(that.List)
}, 100)
}
3.判断对象是否有值
if(Object.values(obj).length>0){
// 有值
}