jxc-admin icon indicating copy to clipboard operation
jxc-admin copied to clipboard

一个前后端分离的简易进销存后台管理系统,基于SpringBoot和vue-element-admin实现,具备常见的后台管理功能,登录态使用session,使用基于资源url的简单权限控制。

Results 5 jxc-admin issues
Sort by recently updated
recently updated
newest added

发现好多地方在sql层面使用了运算,$符号也是存在使用过多情况我在尝试对它进行改造尽量程序层面解决掉各种计算

首先先感谢你的分享,用来改成毕设哈哈,可以节省不少时间。然后就是在走流程的过程中发现了bug具体如下: 在物品入库时有概率报错,报this.parentSubList.find is not a function。经过研究发现,this.parentSubList 的值在被赋值时有两种可能, 一种是this.parentSubList = sub,一种是return getParentSubById.request(this.form.pid).then(data => this.parentSubList = data),其中第一种方式时sub是一个数组,其拥有find方法,但是第二种方式时由于是返回的data,它不是数组,不拥有find方法。发送概率出错的原因就在于此,因为this.parentSubList的定义是一个数组,所以用sub赋值的故不会报错,可是通过data赋值时就会报错(this.parentSubList.find is not a function),需要把第二种赋值方式修改为return getParentSubById.request(this.form.pid).then(data => this.parentSubList = data.data)即可解决。

你好,库存明细目前是只有加库存而没有减库存的明细吗?还是在其它地方我没找着?

mysql8 用source导入数据的时候提示上面错误,mysql 配置文件my.ii里 charset 已经改成utf8了

org.springframework.jdbc.BadSqlGrammarException: ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to...