/** * 随机数 * @return {number} */ module.exports = () => { return Math.floor(Math.random() * 10000000); };