/** * 公共空判断 */export function stringIsEmpty(strVal) { if (strVal == '' || strVal == null || strVal == undefined || strVal == 'undefined') { return true; } else { return false; }}