基本信息
股票代码
|
002875
|
---|
股票简称
|
长盈精密
|
---|
上市日期
|
2018-08-10
|
---|
所属行业
|
电子元器件
|
---|
所属板块
|
创业板
|
---|
股价行情
历史数据
日期
|
开盘价
|
最高价
|
最低价
|
收盘价
|
成交量(手)
|
成交额(元)
|
---|
财务数据
指标
|
2022年报
|
2023年一季报
|
---|
营业收入(亿元)
|
45.21
|
16.87
|
净利润(亿元)
|
16.21
|
5.89
|
每股收益(元)
|
2.47
|
0.88
|
市盈率(动)
|
58.34
|
53.35
|
机构评级
新闻资讯
// 获取股价行情数据$.ajax({url: 'https://hq.sinajs.cn/list=sh002875',dataType: 'text',success: function (data) {var res = data.split(',');var chartData = {date: res[31],open: res[1],close: res[3],high: res[4],low: res[5],volume: res[8]};// 生成股价走势图var chart = echarts.init(document.getElementById('chart'));var option = {title: {text: '长盈精密股票走势'},xAxis: {data: [chartData.date]},yAxis: {},series: [{type: 'candlestick',data: [chartData]}]};chart.setOption(option);}});// 获取历史数据$.ajax({url: 'https://eniu.com/chart/history?code=sh002875',dataType: 'text',success: function (data) {var res = data.split(',');$('tbody').html('');for (var i = 1; i
' + res[i] + ' | ' + res[i + 1] + ' | ' + res[i + 2] + ' | ' + res[i+ 3] + ' | ' + res[i + 4] + ' | ' + res[i + 5] + ' | ' + res[i + 6] + ' | ');}}});// 获取机构评级数据$.ajax({url: 'https://eniu.com/stock/rating?code=sh002875',dataType: 'text',success: function (data) {var res = data.split('\n');$('tbody').html('');for (var i = 1; i
' + res[i] + ' | ' + res[i + 1] + ' | ' + res[i + 2] + ' | ' + res[i + 3] + ' | ');}}});// 获取新闻资讯数据$.ajax({url: 'https://eniu.com/stock/news?code=sh002875',dataType: 'text',success: function (data) {var res = data.split('\n');$('news').html('');for (var i = 1; i ' + res[i] + '
' + res[i + 1] + '');}}});
版权声明:除非特别标注,否则均为本站转摘于网络,转载时请以链接形式注明文章出处。