/* * @Author: wenrongyun wenrongyun@benlaixian.onaliyun.com * @Date: 2022-05-16 22:33:42 * @LastEditors: wenrongyun wenrongyun@benlaixian.onaliyun.com * @LastEditTime: 2022-05-19 15:46:28 * @FilePath: /lowcode-materials/lowcode/_utils/utils.ts * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE */ export { get, set, has } from 'lodash'; // simple uuid export function uuid() { let uuids=((Math.random() * 1e6) >> 0).toString(36) console.log('uuid',uuids) return uuids; }