/*
object:form表单对象
*/
objectValueAllEmpty(object) {
var isEmpty = true;
Object.keys(object).forEach(function (x) {
if (object[x] != null && object[x] != "") {
isEmpty = false;
}
});
return isEmpty;
},
/*
object:form表单对象
*/
objectValueAllEmpty(object) {
var isEmpty = true;
Object.keys(object).forEach(function (x) {
if (object[x] != null && object[x] != "") {
isEmpty = false;
}
});
return isEmpty;
},