export function getDeviceId() { let id = uni.getStorageSync('deviceId') if (!id) { id = 'dev_' + Math.random().toString(16).slice(2) + Date.now().toString(16) uni.setStorageSync('deviceId', id) } return id }