52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\common\controller\Backend;
|
|
use think\Db;
|
|
|
|
/**
|
|
* 合作企业
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class Firm extends Backend
|
|
{
|
|
protected $noNeedRight = ['index','getAiService'];
|
|
|
|
/**
|
|
* Firm模型对象
|
|
* @var \app\admin\model\Firm
|
|
*/
|
|
protected $model = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = new \app\admin\model\Firm;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
|
|
* 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
|
|
* 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
|
|
*/
|
|
|
|
|
|
|
|
//查询企业的AI客服
|
|
function getAiService(){
|
|
//查询当前企业已经配置的AI客服
|
|
$aicustomerservice_ids = Db::table('fa_firm')
|
|
->where('id',session_admin_firm_id())
|
|
->value('aicustomerservice_ids');
|
|
$info = Db::table('fa_aicustomerservice')
|
|
->whereIn('id',explode(',',$aicustomerservice_ids))
|
|
->select();
|
|
return json(['list'=>$info,'total'=>$info]);
|
|
}
|
|
}
|