You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.4 KiB
79 lines
2.4 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
namespace app\adminapi\controller\v1\setting;
|
|
|
|
use app\adminapi\controller\AuthController;
|
|
use app\services\system\lang\LangCountryServices;
|
|
use think\facade\App;
|
|
|
|
class LangCountry extends AuthController
|
|
{
|
|
/**
|
|
* @param App $app
|
|
* @param LangCountryServices $services
|
|
*/
|
|
public function __construct(App $app, LangCountryServices $services)
|
|
{
|
|
parent::__construct($app);
|
|
$this->services = $services;
|
|
}
|
|
|
|
/**
|
|
* 国家语言列表
|
|
* @return mixed
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function langCountryList()
|
|
{
|
|
$where = $this->request->getMore([
|
|
['keyword', ''],
|
|
]);
|
|
return app('json')->success($this->services->langCountryList($where));
|
|
}
|
|
|
|
/**
|
|
* 设置国家语言类型表单
|
|
* @param $id
|
|
* @return mixed
|
|
* @throws \FormBuilder\Exception\FormBuilderException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function langCountryForm($id)
|
|
{
|
|
return app('json')->success($this->services->langCountryForm($id));
|
|
}
|
|
|
|
/**
|
|
* 地区语言修改
|
|
* @param $id
|
|
* @return mixed
|
|
*/
|
|
public function langCountrySave($id)
|
|
{
|
|
$data = $this->request->postMore([
|
|
['name', ''],
|
|
['code', ''],
|
|
['type_id', 0],
|
|
]);
|
|
$this->services->langCountrySave($id, $data);
|
|
return app('json')->success(100000);
|
|
}
|
|
|
|
public function langCountryDel($id)
|
|
{
|
|
$this->services->langCountryDel($id);
|
|
return app('json')->success(100002);
|
|
}
|
|
} |