24 lines
434 B
PHP
24 lines
434 B
PHP
<?php
|
|
namespace app\admin\controller;
|
|
use app\common\controller\Admin;
|
|
use think\Request;
|
|
use think\Loader;
|
|
use think\Db;
|
|
// 客服消息 继续阅读推送 || 签到推送
|
|
class Wxkefupushall extends Admin{
|
|
|
|
public function jx(){
|
|
|
|
|
|
$this->setMeta('继续阅读推送');
|
|
return $this->fetch();
|
|
}
|
|
|
|
public function qd(){
|
|
|
|
|
|
|
|
$this->setMeta('签到推送');
|
|
return $this->fetch();
|
|
}
|
|
} |