/** * 检测对象是否存在空 value * @param {Object} obj 检测的对象 */ export const withEmpty = (obj: Object) => Object.values(obj).some((v) => !v);