no message
This commit is contained in:
parent
4b3fe718b3
commit
f4edb6f8fa
@ -346,7 +346,11 @@ class SakaiController
|
|||||||
// $s = "/dove#add xxx";
|
// $s = "/dove#add xxx";
|
||||||
// $s = "/dove#set__xxx__memo fff";
|
// $s = "/dove#set__xxx__memo fff";
|
||||||
// $s = "/dove#list";
|
// $s = "/dove#list";
|
||||||
|
$s = "/book#main";
|
||||||
|
$s = "/book#nickSet__1 ss";
|
||||||
|
$s = "/book#hit__nick 1";
|
||||||
|
$s = "/book#nickLike s";
|
||||||
|
$s = "/book#nick ss";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1579,7 +1579,16 @@ class Book extends Base {
|
|||||||
//// check系列 end
|
//// check系列 end
|
||||||
|
|
||||||
//// nick系列
|
//// 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;
|
$aNo = $aParam["aOption"] ?? false;
|
||||||
$sNick = $aParam["aArg"][1] ?? false;
|
$sNick = $aParam["aArg"][1] ?? false;
|
||||||
|
|||||||
@ -138,7 +138,7 @@ class Dove extends Base {
|
|||||||
return $this->list();
|
return $this->list();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function uncheck($aParam)
|
public function checkun($aParam)
|
||||||
{
|
{
|
||||||
$sCode = $aParam["aArg"][1];
|
$sCode = $aParam["aArg"][1];
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user