no message

This commit is contained in:
hellcat 2025-06-11 15:18:13 +08:00
parent 7f1d3ce4f3
commit f492817e58
2 changed files with 7 additions and 0 deletions

View File

@ -313,6 +313,8 @@ class SakaiController
$s = "no 7";
$s = "openRe";
$s = "del 1";
$s = "tip 7";
$s = "back";
// $s = "war 8";
// $s = "no 9";
// $s = "detail__all 1";

View File

@ -1763,6 +1763,7 @@ class Book extends Base {
private function _noToId($aNo = false)
{
if ($this->oRag->type == "dir") {
$sPathOld = $this->sPath;
$this->sPath = $this->oRag->path;
}
@ -1789,6 +1790,10 @@ class Book extends Base {
/// 标准no传值
$aId = ModelBook::where("path", $this->sPath)->whereIn("no", $aNo)->pluck("id")->toArray();
if ($this->oRag->type == "dir") {
$this->sPath = $sPathOld;
}
return $aId;
/// end
}