PC版【鲨鱼闹钟】来啦~
一睹为快:
简洁的列表,分类管理,鼠标移上去会显示更多的操作选项:
超级多的添加选项:
技术:
前端:electron+vue2.0+iviewui
后端:nodejs+express
数据库:mysql
云平台:阿里云linux+nginx
遇到的问题:
1. 托盘图标路径问题:
var trayIconPath = process.env.NODE_ENV == 'production' ? nativeImage.createFromPath(path.join(__static, 'icon.ico')) : nativeImage.createFromPath(path.join(__dirname, '../../../static/icon.ico')) appIcon = new Tray(trayIconPath);
2. 使用256x256的图标时,在100%的分辨率下,显示的图标会有问题。
解决方案:使用ico图标。 不过mac不能使用ico图标。
3. 服务端异常捕获:
app.use(function (err, req, res, next) { if (err.name === 'UnauthorizedError') { res.status(200); return res.json({ msg: '登录失效', retcode: 401, }) } else { if (!unlessPath.includes(req.path)) { token.setHeaderToken(req, res) } res.status(500).json({ msg: '操作失败', retcode: 500 }) } })
下载:
https://wws.lanzout.com/iPPXn02g1c0h
有何疑问、意见、建议,欢迎讨论。