后台添加会员权益报错问题
问题修复:
修改文件:app\services\user\member\MemberRightServices
添加方法:
/**
* 添加权益内容
* @param int $id
* @param array $data
* @return bool
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function save_content(int $id, array $data)
{
if (!$id) throw new AdminException("id参数缺失");
if (!$data['content']) throw new AdminException("请添加权益内容");
$this->dao->update($id, $data);
$right = $this->dao->get($id);
if ($right) {
$this->dao->cacheUpdate($right->toArray());
}
return true;
}
或者下载下面文件覆盖