no message

This commit is contained in:
hellcat 2025-06-17 18:05:40 +08:00
parent 4b3fe718b3
commit f4edb6f8fa
3 changed files with 16 additions and 3 deletions

View File

@ -346,7 +346,11 @@ class SakaiController
// $s = "/dove#add xxx";
// $s = "/dove#set__xxx__memo fff";
// $s = "/dove#list";
$s = "/book#main";
$s = "/book#nickSet__1 ss";
$s = "/book#hit__nick 1";
$s = "/book#nickLike s";
$s = "/book#nick ss";

View File

@ -1579,7 +1579,16 @@ class Book extends Base {
//// check系列 end
//// nick系列
public function nick_no($aParam)
public function nickLike($aParam)
{
$sValue = $aParam["aArg"][1];
$aNickList = ModelBook::where("nick", "like", "%".$sValue."%")->pluck("nick")->toArray();
return $this->toJson($aNickList);
}
public function nickSet($aParam)
{
$aNo = $aParam["aOption"] ?? false;
$sNick = $aParam["aArg"][1] ?? false;

View File

@ -138,7 +138,7 @@ class Dove extends Base {
return $this->list();
}
public function uncheck($aParam)
public function checkun($aParam)
{
$sCode = $aParam["aArg"][1];