亚洲AV午夜精品一区二区/欧美日韩亚洲v在线观看/日韩免费视频/久久大香伊蕉在人线国产昨爱

全時財經

首頁 > 股票 > 正文

今日2只A股跌停 建筑裝飾行業跌幅最大

  證券時報股市大數據新媒體“數據寶”統計,截至上午10:31,今日滬指漲幅-0.18%,A股成交量181.62億股,成交金額2091.93億元,比上一個交易日減9.65%。個股方面,605只個股上漲,其中非ST股漲停20只,2399只個股下跌,其中非ST股跌停2只。從申萬行業來看,鋼鐵、銀行、電子等漲幅最大,漲幅分別為1.99%、1.13%、0.12%;建筑裝飾、建筑材料、化工等跌幅最大,跌幅分別為-1.12%、-1.04%、-1.01%。(數據寶)

今日各行業表現(截至上午10:31)

申萬行業行業
漲跌
(%)
成交額
(億元)
比上日
(%)
領漲(跌)股漲跌幅
(%)
鋼鐵1.9974.773.77馬鋼股份7.02
銀行1.13104.3824.35江陰銀行4.01
電子0.12135.711.98惠威科技10.01
有色金屬0.11245.45-27.89索通發展9.99
交通運輸-0.1565.08-11.44中遠海特-3.41
電氣設備-0.2269.6713.13迪貝電氣-9.99
計算機-0.2980.75-1.58朗瑪信息-2.78
公用事業-0.3150.051.91中再資環-2.67
食品飲料-0.3345.41-17.56安德利-3.85
傳媒-0.3567.14-7.09天舟文化-8.28
醫藥生物-0.3663.94-24.85金達威-2.98
機械設備-0.3790.92-3.89斯萊克-4.51
通信-0.3828.77-7.14三元達-9.96
房地產-0.4483.610.20市北高新-3.50
休閑服務-0.534.22-33.46首旅酒店-2.20
農林牧漁-0.6032.54-21.31正虹科技-3.10
非銀金融-0.63169.99-30.51西水股份-5.00
家用電器-0.6329.72-29.61春蘭股份-4.04
紡織服裝-0.6617.91-19.14上海三毛-3.05
采掘-0.6658.25-29.27惠博普-2.39
汽車-0.7068.66-3.35長春一東-5.93
輕工制造-0.7634.57-19.42永藝股份-3.06
商業貿易-0.8239.26-30.68商業城-2.95
綜合-0.8529.98-7.11博通股份-2.83
國防軍工-0.9833.5226.83中兵紅箭-8.40
化工-1.01228.28-20.24北化股份-7.28
建筑材料-1.0467.9921.50福建水泥-3.46
建筑裝飾-1.1271.39-5.05西藏天路-5.97
<script type="text/javascript">$(document).ready(function (){ var $denglu = $('.denglu'); var $tc_box = $('.tc_box'); var $bghover = $('.bghover'); var $close = $('.close'); $denglu.bind('click',function(){ $tc_box.show(); $bghover.show(); showCount('.tc_box'); }); $close.bind('click',function(){ $tc_box.hide(); $bghover.hide(); }); function showCount(obj){ var $body_height = $('body').css('height'); $bghover.css('height', $body_height); var $scroll_top = $(window).scrollTop(); var $obj = $(obj); var $width = parseInt($obj.css('width')); var $height = parseInt($obj.css('height')); $obj.css({ marginLeft : -($width / 2), marginTop : -($height / 2) + $scroll_top }); } $('#username').keydown(function (event){ if (event.keyCode == 13) { $('#ajaxlogin').click(); } }); $('#password').keydown(function (event){ if (event.keyCode == 13) { $('#ajaxlogin').click(); } }); //手動登錄部分與處理 $('#ajaxlogin').click(function (){ var message = ""; var err = false; if($('#username').val()==''){ message = "用戶名或密碼不能為空"; err = true; } if($('#password').val()==''){ message = "用戶名或密碼不能為空"; err = true; } if(err){ $("#loginError").html("*"+message); $("#loginError").show(); return false; } $("#ajaxlogin").attr("disabled", true); $("#ajaxlogin").css("background","#ababab"); var isrember = '0'; if($("#remUsername").attr("checked")){ isrember = '1'; } $.ajax({ type: "POST", dataType: "json", url: "/passport/ajaxLogin.do", data:{ username:$('#username').val(), password:$('#password').val(), isrember:isrember }, cache: false, success:function (data) //回傳函數 { if(data.result==1){ //如果已登錄,在這里做相應處理 //window.location.href=""; $('#username').val(""); $('#password').val(""); $("#loginError").html(""); $("#loginBox").hide(); $bghover.hide(); $("#notLogin").hide(); $("#nick").html(data.user.nick); $("#hasLogin").show(); }else{ $("#loginError").html("*用戶名或密碼不正確"); $("#loginError").show(); } $("#ajaxlogin").removeAttr("disabled"); $("#ajaxlogin").css("background","#b90a0a"); }, error:function (xmlHttpRequest, textStatus, errorThrown){ $("#ajaxlogin").removeAttr("disabled"); $("#ajaxlogin").css("background","#b90a0a"); //alert("服務器維護,請稍候登錄"); } }); }); $("#loginBox").hide(); $("#hasLogin").hide(); $("#loginError").hide(); //自動登錄 //檢查用戶登錄狀態并處理,注意這里的提交參數與上面方式不同 var ssoreceivetgturl = 'https://passport.stcn.com/wsLoginAssis.js?'+new Date().getTime(); $.getScript(ssoreceivetgturl, function(){ if( typeof tgtId !='undefined' && (tgtId=='null' || tgtId==null)){ tgtId = ''; } $.post( '/passport/ajaxLogin.do', { tgtId:(tgtId!==undefined)?tgtId:'' }, function (data) //回傳函數 { if(data.result==1){ //如果已登錄 //window.location.href=""; $("#notLogin").hide(); $("#loginBox").hide(); $("#nick").html(data.user.nick); $("#hasLogin").show(); return; } }, 'json' ); });});function logout(){ //處理ajax超時的范例 var isneedtoKillAjax = true; // set this true var ssologoutUrl = "https://passport.stcn.com/ajaxlogout?jsoncallback=?"; var myAjaxCall = $.getJSON(ssologoutUrl, function(data) { isneedtoKillAjax = false; //TODO:用戶注銷后可以做的事 $.post("/passport/ajaxLogout.do",{}, function(data) { $("#notLogin").show(); $("#loginError").html(""); $("#loginBox").hide(); $("#loginError").hide(); $("#hasLogin").hide(); $("#nick").html(""); $("#ajaxlogin").removeAttr("disabled"); } ); } ); setTimeout(function() { if(isneedtoKillAjax){ myAjaxCall.abort(); } }, 5000); }</script> <script type="text/javascript" src="http://img.stcn.com/templates/stcn/css/index2015/jQselect.js"></script><script type="text/javascript"> var content = '';//第一頁內容緩存 var context = '';//全文內容緩存 $(function(){ content = $('#ctrlfscont').html(); }) function fulltext(){ //單頁閱讀 if(context =='') $.getJSON('http://app.stcn.com/'+'?app=article&controller=article&action=fulltext&jsoncallback=?&contentid='+contentid,function(data){ context = data.content; $('#ctrlfscont').html(data.content); $('#show-all-cont').html('分頁閱讀').parent().siblings().hide(); $('.bor-ccc').hide(); isfulltext = true; holdpic(); }); else{ $('#ctrlfscont').html(isfulltext?content:context); $('#show-all-cont').html(isfulltext?'單頁閱讀':'分頁閱讀').parent().siblings().toggle(isfulltext === true); isfulltext = (isfulltext === false); $('.bor-ccc').show(); holdpic(); } } //cmstop后臺pv統計代碼 $.getJSON(APP_URL+'?app=system&controller=content&action=stat&jsoncallback=?&contentid='+contentid); function holdpic(){//控制內容區域的的圖片大小并為過大的圖片添加查看原圖 var options = { imageLoading:'http://img.stcn.com/'+'js/lib/lightBox/lightbox-ico-loading.gif', imageBtnPrev:'http://img.stcn.com/'+'js/lib/lightBox/lightbox-btn-prev.gif', imageBtnNext:'http://img.stcn.com/'+'js/lib/lightBox/lightbox-btn-next.gif', imageBtnClose:'http://img.stcn.com/'+'js/lib/lightBox/lightbox-btn-close.gif', imageBlank:'http://img.stcn.com/'+'js/lib/lightBox/lightbox-blank.gif' }; $('#ctrlfscont').find('img').each(function(){ var img = this; if (img.width>608) { img.style.width = '600px'; $(img).removeAttr('height'); var aTag = document.createElement('a'); aTag.href = img.src; $(aTag).addClass('bPic') .insertAfter(img).append(img) .lightBox(options); } }); } $(window).load(function(){ holdpic(); }); var $menu_li = $('.menu_con').find('li') $menu_li.bind('mouseover',function(){ if( $(this).attr('class') != 'cur'){ $(this).addClass("cur1").siblings().removeClass("cur1"); }else{ $(this).addClass("cur").siblings().removeClass("cur1"); } }) $menu_li.bind('mouseout',function(){ $(this).removeClass('cur1'); }) //文章發布時間離現在未超過24小時才統計全媒體網站記錄點擊量 function checkArticleHits(){ try { //獲取文章發布時間 var begindate = publishdate; var beginsecond = changeDate(begindate).getTime(); //獲取客戶端當前系統時間 var date = new Date(); var endsecond = date.getTime(); var days = (endsecond-beginsecond)/(24*3600*1000); if(days < 1){ // 全媒體網站記錄點擊量接口 doArticleHits(contentid, publishdate); } } catch (e) { } } // 如果你的時間是字符串 yyyy-MM-dd hh:mm:ss ,下面函數可以轉成時間 function changeDate(str){ try{ var newstr = str.replace(/-/g,'/'); return new Date(newstr); }catch (e){ alert("轉換時間出錯,原因:" + e.message); } } checkArticleHits(); </script>

本站部分文章來源于網絡,版權屬于原作者所有;如有轉載或引用文章/圖片涉及版權問題,請聯系我們處理!

相關推薦