mirror of https://gitee.com/karson/fastadmin.git
52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller\wechat;
|
|
|
|
use app\admin\model\AdminLog;
|
|
use app\common\controller\Backend;
|
|
use app\common\model\WechatResponse;
|
|
use think\Db;
|
|
|
|
/**
|
|
* 微信自动回复管理
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class Autoreply extends Backend
|
|
{
|
|
|
|
protected $model = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = model('WechatAutoreply');
|
|
}
|
|
|
|
/**
|
|
* 编辑
|
|
*/
|
|
public function edit($ids = NULL)
|
|
{
|
|
$row = Db::table($this->table)->where('id', $ids)->get();
|
|
if (!$row)
|
|
$this->error(__('No Results were found'));
|
|
if ($this->request->isPost())
|
|
{
|
|
$this->code = -1;
|
|
$params = $this->request->post("row/a");
|
|
if ($params)
|
|
{
|
|
$row->save($params);
|
|
AdminLog::record(__('Edit'), $ids);
|
|
$this->code = 1;
|
|
}
|
|
return;
|
|
}
|
|
$response = WechatResponse::get(['eventkey' => $row['eventkey']]);
|
|
$this->view->assign("response", $response);
|
|
$this->view->assign("row", $row);
|
|
}
|
|
|
|
}
|