//封装字符串相关的方法 export function isBlank(value) { value = value.trim(); if (value === "" || value === null || value === "string") { return true; } }