捣鼓一个记账类的小程序
创始人
2024-06-03 06:01:21
0

项目前端小程序二维码:

gh_57e3d03938cf_258.jpg

简介: 记录个人,家庭等财务收支情况,可免费导出收支明细,与家人好友共享账本,让记账变得更简单

我的个人blog网站:https://www.zhooson.cn/ 里面其他全栈项目开源Github地址

1. 技术:

前端:uniapp(vue3)
后端:egg
node:16.5.0
数据库:mysql
工具:HbuilerX filezilla pm2 Termius等

2. 整体项目结构

image.png

3. uniapp

具体的开发文档:https://uniapp.dcloud.net.cn/
技术选型:uniapp以前没有使用过,这次决定尝试一次。

使用感觉,感觉不咋好,也许我是了解的不够全面,我每次小程序开发工具添加新的编译模式,重新打包后就没有了,这一点软件默认设置不太友好。

uniapp仔细阅读文档即可,本文不做详细讲解。

4. egg

1. 初始化的项目的老掉牙的命令自行查看文档:https://www.eggjs.org/zh-CN/intro/quickstart

2. jwt使用

  • 安装
    yarn add egg-jwt
  • 配置
// {app_root}/config/plugin.js
exports.jwt = {enable: true,package: "egg-jwt"
};
// {app_root}/config/config.default.js
exports.jwt = {secret: "123456"
};
  • 使用
// {app_root}/app/controller/user.js
//签发 token 数据...let result = await service.user.query({ openId });const token = app.jwt.sign({nickname: result.openId,userId: result.id,exp: Math.floor(Date.now() / 1000) + 60 * 60, // 1h},app.config.jwt.secret);
// {app_root}/app/router.js
module.exports = (app) => {const { router, controller, jwt } = app;/***  用户*/router.post('/api/user/login', controller.user.login);router.post('/api/user/update', jwt, controller.user.update);router.get('/api/user/list', jwt, controller.user.list);
}

3. 获取微信小程序用户openId(前端只需传递code)

// {app_root}/app/service/tool.js
'use strict';const Service = require('egg').Service;
const axios = require('axios');
class ToolService extends Service {// wx 相关操作async decodeWXByCode({ code }) {return new Promise((resolve, reject) => {const { ctx, app } = this;const { AppSecret, AppID } = app.config.wx;axios.get(`https://api.weixin.qq.com/sns/jscode2session?appid=${AppID}&secret=${AppSecret}&js_code=${code}&grant_type=authorization_code`).then((res) => {// console.log('decodeWXByCode', res.data);if (res.data.errcode === 40029) {resolve({ status: 201, message: '无效code' });} else if (res.data.errcode === 40163) {resolve({ status: 201, message: 'code被使用' });} else if (res.data.session_key && res.data.openid) {resolve({status: 200,message: '获取成功',data: {openid: res.data.openid,},});} else {resolve({ status: 201, message: '未知错误' });}});});}
}module.exports = ToolService;

4. 查询首页数据service, 分级查询

image.png

WechatIMG1451.jpeg

  async list({ openId, plus = 0, year, month, name_id }) {// console.log('2023-2-1', openId, plus, plus === 0, year, month, day);// let w = `where 1=1`;// let a = `where 1=1`;// if (openId) {//   w += ` and b.openId = '${openId}'`;//   a += ` and b.openId = '${openId}'`;// }// if (year) {//   w += ` and year = ${year}`;//   a += ` and year = ${year}`;// }// if (month) {//   w += ` and month = ${month}`;//   a += ` and month = ${month}`;// }// // if (day) {// //   a += ` and day = ${day}`;// // }// if (+plus) {//   w += ` and plus = ${plus}`;// }// 本月 支出 + 收入 =  总和// const sumSql = `select sum(price) from book b ${a}`;// const MonthCount = await this.app.mysql.query(sumSql);// 本月 支出const outSql = `select sum(price) from book  where  name_id = ${name_id} and year = ${year} and month = ${month} and plus = 1 and disabled = 0`;const MonthOutCount = await this.app.mysql.query(outSql);// 本月 收入const inSql = `select sum(price) from book b where name_id = ${name_id} and year = ${year} and month = ${month} and plus = 2 and disabled = 0`;const MonthInCount = await this.app.mysql.query(inSql);// 当月 所有明细// const sql = `select b.*, u.nickname, u.avatar, i.title icon_title   from book b inner join user u on b.openId = u.openId   inner join cate i on b.cate_id = i.id ${w} group day order by create_time desc`;const sql = `select distinct day, month, year from book where name_id = ${name_id} and year = ${year} and month = ${month} and disabled = 0  order by day desc`;let days = await this.app.mysql.query(sql);// const detailSql = `select * from book where openId = '${openId}' and year = ${year} and month = ${month}`;// const detailSql = `select b.*, u.nickname, u.avatar, i.title icon_title   from book b   inner join user u on b.openId = u.openId   inner join cate i on b.cate_id = i.id     where openId = '${openId}' and year = ${year} and month = ${month} order by create_time desc`;let n = '1 = 1 and disabled = 0';if (+plus) {n += ` and b.plus = ${plus}`;}for (let val of days) {val.date = `${val.year}-${val.month}-${val.day}`;val.items = [];val.items = await this.app.mysql.query(`select b.*, u.nickname, u.avatar, c.title icon_title   from book b   inner join user u on b.openId = u.openId   inner join cate c on b.cate_id = c.id   where  ${n}  and b.name_id = ${name_id} and year = ${year} and month = ${month} and day = ${val.day}  order by create_time desc`);}}

我的sql语法不太完美,请大神提出宝贵意见。

5. 导出数据 excle表格, 可根据自己的需求导出想要的类目。

WechatIMG1449.jpeg

  // 导出async export() {const { ctx, service } = this;try {let query = ctx.request.query.code // 当前code需要解密,需要自己的制定自己的解密规则console.log('search-query', query);query = JSON.parse(query);let list = await service.book.search(query);const bookDetail = await service.name.query({ id: query.name_id });let xls = [[]];xls[0] = ['方式', '金额', '创建人', '账本', '类别', '时间', '备注'];for (let index = 0; index < list.length; index++) {const element = list[index];xls[index + 1] = [element.plus === 1 ? '支出' : '收入',element.price,element.nickname,element.name_title,element.cate_title,element.year + '/' + element.month + '/' + element.day,element.remark,];}// console.log('xls', xls);const wb = XLSX.utils.book_new();XLSX.utils.book_append_sheet(wb, XLSX.utils.aoa_to_sheet(xls), '账本');const buf = XLSX.write(wb, { type: 'buffer', bookType: 'xlsx' });const filename = encodeURIComponent(`${bookDetail.title}_${query.year}_${query.month}月账本`);// 设置header关键代码ctx.set('Content-Disposition', `attachment; filename="${filename}.xlsx"`);ctx.set('Content-Type', 'application/vnd.ms-excel');ctx.status = 200;ctx.body = buf;// cb(ctx, 200, 200, '导出成功', list);} catch (err) {cb(ctx, 200, 422, '导出失败', JOSN.stringify(err));}}
  • excle:

image.png

6. 上传文件 用户头像和cover图,可动态生成文件夹目录。

'use strict';
const fs = require('fs');
const path = require('path');
const mkdirp = require('mkdirp');const { cb, formatDate } = require('../../utils');// 生成新的文件名称
function getUploadFileExt(name) {let ext = name.split('.');let last = formatDate(new Date(), 'YYYYMMDDhhmmssms');return `${last}.${ext[ext.length - 1]}`;
}const Controller = require('egg').Controller;class UploadController extends Controller {async file() {const { ctx } = this;try {// 1. 获取文件流const file = ctx.request.files[0];// console.log(33, file);// 2. 生成filenameconst name = getUploadFileExt(file.filename);// console.log('name', name);// 3. 获取bucket ps: demo 或者 demo/test 或者 demo/test/cdconst { bucket = 'avatar' } = ctx.request.body;// 4. 生成文件夹const dir = path.join(__dirname, `../public/images/${bucket}`);// console.log('dir', dir);await mkdirp(dir);// 5. 文件流读取/写入const filePath = `${dir}/${name}`;let readStream = fs.createReadStream(file.filepath);var writeStream = fs.createWriteStream(filePath);readStream.pipe(writeStream);readStream.on('end', function () {fs.unlinkSync(file.filepath);});cb(ctx, 200, 200, '上传成功', {url: `http://${ctx.request.header.host}/public/images/${bucket}/${name}`,});} catch (err) {cb(ctx, 200, 500, '上传失败!', JSON.stringify(err));}}
}module.exports = UploadController;

7. 好友共享账本

image.png

image.png

8. 具体的数据表设计展示如下

  • 账本表

image.png

  • 用户表

image.png

5. 博客

我的个人blog网站:https://www.zhooson.cn/ 有其他前后端项目代码已开源。

相关内容

热门资讯

谷歌安卓系统流畅度高 你有没有发现,最近你的安卓手机用起来是不是特别顺滑?没错,说的就是你!今天,就让我来给你揭秘为什么谷...
小米note安卓系统5.0系统... 亲爱的读者们,你是否也像我一样,对小米Note这款手机情有独钟呢?自从它问世以来,就凭借其出色的性能...
华为适配安卓系统的手表,引领智... 你有没有发现,最近智能手表界又掀起了一股热潮?没错,就是华为适配安卓系统的手表!这款手表不仅颜值爆表...
安卓系统吉他调音软件,轻松掌握... 你有没有想过,吉他手在演奏前最头疼的事情是什么?没错,就是调音!不过别担心,现在有了安卓系统的吉他调...
功能比较齐全的安卓系统,功能丰... 你有没有想过,为什么安卓系统这么受欢迎呢?它就像一个万能的小助手,功能齐全得让人爱不释手。今天,就让...
简单安卓成绩管理系统,打造高效... 你有没有想过,在繁忙的工作和学习中,如何轻松管理你的安卓设备上的成绩呢?别急,今天就来给你介绍一个超...
安卓系统ui设计好吗,打造极致... 你有没有发现,每次打开手机,安卓系统的界面总是那么吸引眼球呢?今天,我们就来聊聊这个话题——安卓系统...
16th系统安卓版本,创新功能... 你有没有发现,你的手机最近是不是有点不一样了?是不是觉得操作起来更加流畅,界面也更加美观了呢?哈哈,...
苹果系统能玩安卓游戏吗 你有没有想过,你的苹果手机里能不能玩安卓游戏呢?这可是个让人好奇不已的问题哦!想象你手握着那光滑的i...
国外使用安卓系统吗,全球安卓系... 你有没有想过,为什么你的手机里装的是安卓系统,而你的外国朋友却用的是苹果?今天,就让我带你一起探索国...
安卓双系统怎么设置小米,体验双... 你有没有想过,手机里装两个系统,一个安卓,一个iOS,那感觉是不是就像拥有了两个世界?今天,就让我来...
安卓系统不如ios流畅,安卓系... 你有没有发现,每次拿出手机,安卓和iOS的用户总是免不了要来一场“谁更流畅”的辩论?我最近也深入研究...
安卓系统在下载东西在哪,安卓系... 你有没有遇到过这种情况:手机里突然想下载个新应用或者文件,可是翻遍手机,就是找不到那个神秘的下载按钮...
安卓系统可以连接airport... 你有没有想过,你的安卓手机竟然能和机场来个亲密接触呢?没错,就是那种高大上的国际机场,那些穿梭在跑道...
安卓系统软件怎样删除,安卓系统... 手机里的安卓系统软件越来越多,是不是感觉有点乱糟糟的?别急,今天就来教你怎么轻松删除那些不再需要的软...
电脑备份安卓车机系统,电脑备份... 你有没有想过,你的安卓车机系统就像是一辆行驶在信息高速公路上的汽车,而备份就像是给这辆车装上了备用轮...
微信ios换安卓系统,无缝衔接 最近是不是有不少小伙伴在纠结微信从iOS系统换到安卓系统的事情呢?这可是个大问题,毕竟微信可是咱们日...
可以给安卓系统装APP,畅享智... 你有没有想过,你的安卓手机里可以装上那些只在苹果手机上才能用的APP呢?没错,今天就要来告诉你,这可...
安卓系统视频转音频教程,享受纯... 亲爱的手机控们,你是否有过这样的经历:一部精彩的电影,一段感人的演讲,或者是某个瞬间让你会心一笑的短...
安卓传苹果系统怎么传,安卓到苹... 你是不是也和我一样,手里拿着安卓手机,却对苹果系统的魅力无法抗拒?想要把安卓手机里的宝贝转移到苹果设...