-
修复权限问题:
打开文件:backend/library/Menu.php
定位至230行,代码如下:
'priv' => ['key' => 'deposit|account', 'depends' => 'deposit|edit,deposit|editcol,deposit|index|deposit|delete,deposit|export,deposit|monthbill,deposit|downloadbill']
修改为:
'priv' => ['key' => 'deposit|account', 'depends' => 'deposit|edit,deposit|editcol,deposit|index,deposit|delete,deposit|export,deposit|monthbill,deposit|downloadbill']
-
修复资金账户页面按【用户名】筛选条件,数据报错的问题
打开文件:backend/controllers/DepositController.php
定位至554行,代码如下:if($post->field && $post->search_name && in_array($post->field, array_keys($this->getSearchOption()))) { $query->andWhere([$post->field => $post->search_name]), }
修改为:
if($post->field && $post->search_name && in_array($post->field, array_keys($this->getSearchOption()))) { if($post->field == 'username') { $userid = UserModel::find()->select('userid')->where(['username' => $post->search_name])->scalar(), $query->andWhere(['userid' => intval($userid)]), } else { $query->andWhere([$post->field => $post->search_name]), } }
-
完毕!
修复后台/资产/资金账户页面提示无访问权限问题
shopwind 更新于 BUG提交 2023-03-17 12:53:17
最后编辑于
2023-03-17
12:53:17
1
985
回复(1)
Re :
内容精选
-
ShopWind多商户旗舰版V4 安装部署流程
2023-03-11 17:37:46 3809
-
使用phpstudyPro发布网站到服务器后,使用相对地址的图片资源无法访问
2022-10-11 04:58:03 2839
-
ShopWind开源电商系统V3.4.2更新,新增主图视频
2022-09-08 17:01:22 3609
-
ShopWind V3.4.3 更新 | webIM 客服模块新体验
2022-08-31 10:28:59 4225
-
ShopWind开源电商系统V3.4.2优化更新,淘宝京东数据采集
2022-04-16 14:01:18 4122
-
ShopWind开源电商系统V3.4.1发布,新版支付接口支持原路返回
2022-02-16 14:01:18 3965
-
【教程】ShopWind开源电商系统 - 全新微信支付API v3接口配置
2022-01-04 00:48:00 3561
-
ShopWind开源电商系统微商城H5发布(uniapp-H5)
2021-12-24 17:20:14 3704
联系我们
-
关注公众号
系统更新,推送提醒 -
技术交流Q群
安装使用,开发交流