p2 project
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.

112 lines
3.6 KiB

5 months ago
<?php
namespace app\admin\service\setting;
use app\admin\service\AdminBaseService;
3 months ago
use app\model\StockIndexInrListModel;
5 months ago
use app\model\StockIndexModel;
3 months ago
use think\facade\Db;
5 months ago
class StockIndexService extends AdminBaseService
{
public function index()
{
try {
$list = StockIndexModel::order('sort', 'desc')->order('id', 'desc')->select();
$rows = [];
if(!$list->isEmpty()){
$rows = $list->toArray();
}
return $this->toData('0', 'SUCCESS', ['list' => $rows, 'total' => count($rows)]);
}catch (\Exception $exception){
return $this->toData('1', '系统繁忙', []);
}
}
public function update($param)
{
try {
if(empty($param['id']) || !is_numeric($param['id'])){
return $this->toData('1', '参数错误1', []);
}
if(!isset($param['sort']) || !is_numeric($param['sort'])){
return $this->toData('1', '参数错误2', []);
}
if(empty($param['status']) || !in_array($param['status'], [1,2])){
return $this->toData('1', '参数错误3', []);
}
$stockIndex = StockIndexModel::where('id', $param['id'])->find();
if(empty($stockIndex)){
return $this->toData('1', '目标不存在', []);
}
$stockIndex->sort = ceil($param['sort']);
$stockIndex->status = ceil($param['status']);
$stockIndex->update_time = date('Y-m-d H:i:s');
$stockIndex->save();
// 通知go
$bool = $this->sendStockIndexToGo($stockIndex->code, $stockIndex->country, $stockIndex->sort, $stockIndex->status);
if(!$bool){
return $this->toData('1', '通知行情失败 请重新设置数据', []);
}
return $this->toData('0', 'SUCCESS');
}catch (\Exception $exception){
return $this->toData('1', '系统繁忙', [$exception->getMessage()]);
}
}
3 months ago
// 印度股指列表
public function inrStockIndexList($param): array
{
try {
if (empty($param['page']) || empty($param['limit'])) {
return $this->toData('400', '缺少必要参数');
}
$where = [];
if (!empty($param['trade_name'])) {
$where[] = ['stock_code', 'like', '%' . $param['trade_name']];
}
$list = StockIndexInrListModel::where($where)->order('id', 'desc')->paginate([
'page' => $param['page'],
'list_rows' => $param['limit'],
]);
$tapeList = (new IPOService())->getStockTape(20);
return $this->toData('0', 'SUCCESS', [
'list' => $list->items(),
'total' => $list->total(),
'page' => $list->currentPage(),
'last_page' => $list->lastPage(),
'extend' => [
'tape_list' => $tapeList['tape'],
'source_list' => $tapeList['source'] ?? [],
]
]);
} catch (\Exception $e) {
return $this->toData('500', '系统繁忙', [$e->getMessage(), $e->getTrace()]);
}
}
// 获取股指名称列表
public function getTradeNameList()
{
try {
$list = StockIndexInrListModel::where('status', 1)->order('id', 'desc')->column('name', 'id');
return $this->toData('0', 'SUCCESS', ['list' => $list]);
} catch (\Exception $e) {
return $this->toData('1', '系统繁忙', [$e->getMessage(), $e->getTrace()]);
}
}
5 months ago
}