推广 热搜: 物资  河北  煤炭  发电  变压器  输送机  广西  施工    电厂 

双碳产业园综合服务中心二期项目施工一标段资格预审公告

   日期:2022-11-14     来源:中国电力招标采购网    作者:dlztb    浏览:0    
核心提示:打印// t: current time, b: begInnIng value, c: change In value, d: durationjQuery.easing['jswing'] = jQuery.easing['swin
打印

 

cript type="text/javascript"> // t: current time, b: begInnIng value, c: change In value, d: duration jQuery.easing['jswing'] = jQuery.easing['swing']; jQuery.extend( jQuery.easing, { def: 'easeOutQuad', swing: function (x, t, b, c, d) { //alert(jQuery.easing.default); return jQuery.easing[jQuery.easing.def](x, t, b, c, d); }, easeInQuad: function (x, t, b, c, d) { return c*(t/=d)*t + b; }, easeOutQuad: function (x, t, b, c, d) { return -c *(t/=d)*(t-2) + b; }, easeInOutQuad: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t + b; return -c/2 * ((--t)*(t-2) - 1) + b; }, easeInCubic: function (x, t, b, c, d) { return c*(t/=d)*t*t + b; }, easeOutCubic: function (x, t, b, c, d) { return c*((t=t/d-1)*t*t + 1) + b; }, easeInOutCubic: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t*t + b; return c/2*((t-=2)*t*t + 2) + b; }, easeInQuart: function (x, t, b, c, d) { return c*(t/=d)*t*t*t + b; }, easeOutQuart: function (x, t, b, c, d) { return -c * ((t=t/d-1)*t*t*t - 1) + b; }, easeInOutQuart: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t*t*t + b; return -c/2 * ((t-=2)*t*t*t - 2) + b; }, easeInQuint: function (x, t, b, c, d) { return c*(t/=d)*t*t*t*t + b; }, easeOutQuint: function (x, t, b, c, d) { return c*((t=t/d-1)*t*t*t*t + 1) + b; }, easeInOutQuint: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b; return c/2*((t-=2)*t*t*t*t + 2) + b; }, easeInSine: function (x, t, b, c, d) { return -c * Math.cos(t/d * (Math.PI/2)) + c + b; }, easeOutSine: function (x, t, b, c, d) { return c * Math.sin(t/d * (Math.PI/2)) + b; }, easeInOutSine: function (x, t, b, c, d) { return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b; }, easeInExpo: function (x, t, b, c, d) { return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b; }, easeOutExpo: function (x, t, b, c, d) { return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b; }, easeInOutExpo: function (x, t, b, c, d) { if (t==0) return b; if (t==d) return b+c; if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b; return c/2 * (-Math.pow(2, -10 * --t) + 2) + b; }, easeInCirc: function (x, t, b, c, d) { return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b; }, easeOutCirc: function (x, t, b, c, d) { return c * Math.sqrt(1 - (t=t/d-1)*t) + b; }, easeInOutCirc: function (x, t, b, c, d) { if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b; return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b; }, easeInElastic: function (x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; if (a < Math.abs(c)) { a=c; var s=p/4; } else var s = p/(2*Math.PI) * Math.asin (c/a); return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; }, easeOutElastic: function (x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3; if (a < Math.abs(c)) { a=c; var s=p/4; } else var s = p/(2*Math.PI) * Math.asin (c/a); return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b; }, easeInOutElastic: function (x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5); if (a < Math.abs(c)) { a=c; var s=p/4; } else var s = p/(2*Math.PI) * Math.asin (c/a); if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b; return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b; }, easeInBack: function (x, t, b, c, d, s) { if (s == undefined) s = 1.70158; return c*(t/=d)*t*((s+1)*t - s) + b; }, easeOutBack: function (x, t, b, c, d, s) { if (s == undefined) s = 1.70158; return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b; }, easeInOutBack: function (x, t, b, c, d, s) { if (s == undefined) s = 1.70158; if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; }, easeInBounce: function (x, t, b, c, d) { return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b; }, easeOutBounce: function (x, t, b, c, d) { if ((t/=d) < (1/2.75)) { return c*(7.5625*t*t) + b; } else if (t < (2/2.75)) { return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b; } else if (t < (2.5/2.75)) { return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b; } else { return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b; } }, easeInOutBounce: function (x, t, b, c, d) { if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b; return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b; } }); //等待dom元素加载完毕. $(function(){ // 一级菜单 $(".menu_list .level11>a").click( function() { $(".down_01").remove(); $(".on").attr('class',''); $(this).append(""); $(this).attr('class','on'); return false;//阻止默认时间 } ); }) function fun_ShowCategory(id){ $(".down_01").remove(); $(".on").attr('class',''); $("#"+id+"").append(""); $("#"+id+">a").attr('class','on'); }cript>

招标/资格预审公告

招标/资格预审公告信息

报建编号:   42019820220523001
报建

标段号 

资格预审申请书送达截止时间 

双碳产业园综合服务中心二期项目施工一标段

1

2022-11-25 10:00:00

        共1页          

显示1到1,共1记录

项目标段详情

div.datagrid-cell-c1-prjName {width:142px;} div.datagrid-cell-c1-section {width:42px;} div.datagrid-cell-c1-state {width:92px;} div.datagrid-cell-c1-receivingUnitType {width:172px;} div.datagrid-cell-c1-tenderBond {width:92px;} div.datagrid-cell-c1-bondEndDate {width:142px;} div.datagrid-cell-c1-receivingUnit {width:92px;} div.datagrid-cell-c1-depositBank {width:92px;} div.datagrid-cell-c1-accountNumber {width:92px;} div.datagrid-cell-c1-largePaymentNumber {width:92px;} div.datagrid-cell-c1-cityAccount {width:92px;} div.datagrid-cell-c1-description {width:92px;}
 

标段名称 

标段号 

保证金信息状态 

1

双碳产业园综合服务中心二期项目施工一标段

1

暂无

收款单位类别(是否公管局) 

保证金金额(元) 

保证金提交截止时间 

收款单位 

账号 

大额支付行号 

同城帐号 

标段描述 

               

双碳产业园综合服务中心二期项目施工一标段

招标对投标人要求

div.datagrid-cell-c2-certTypeNumName {width:92px;} div.datagrid-cell-c2-tradeLargeClassName {width:92px;} div.datagrid-cell-c2-tradeCategoryCodeName {width:92px;} div.datagrid-cell-c2-certTypeLevelName {width:142px;} div.datagrid-cell-c2-description {width:142px;}
 

1

资质类型 

资质分类 

资质专业 

资质等级(含及以上) 

备注 

建筑业

施工总承包

建筑工程

二级

招标对 div.datagrid-cell-c3-tradeRequirementsName {width:92px;} div.datagrid-cell-c3-tradeLevelName {width:92px;} div.datagrid-cell-c3-regTradeTypeName {width:92px;} div.datagrid-cell-c3-requirements {width:142px;}

 

1

注册类型 

注册等级(含及以上) 

注册专业 

要求说明 

注册建造师

一级

建筑工程

具备 建筑工程专业壹级及以上注册建造师执业资格和有效的安全生产考核合格证书(B证),且未担任其他在施建设工程项目的项目经理。

公告变更记录

div.datagrid-cell-c4-amendBulletinName {width:342px;} div.datagrid-cell-c4-amendType {width:92px;} div.datagrid-cell-c4-amendBulletinIssueTime {width:92px;}
 

变更公告名称 

变更类型 

变更公告发布时间 

异议受理部门信息

div.datagrid-cell-c5-id {width:192px;} div.datagrid-cell-c5-section {width:92px;} div.datagrid-cell-c5-dissentDepartmentName {width:192px;} div.datagrid-cell-c5-dissentDepartmentAddress {width:142px;} div.datagrid-cell-c5-dissentDepartmentlinkMan {width:142px;} div.datagrid-cell-c5-dissentDepartmentlink {width:142px;} div.datagrid-cell-c5-dissentPostalCode {width:142px;} div.datagrid-cell-c5-dissentDepartmentEmail {width:142px;}
 

招标编号 

标段号 

异议受理部门名称 

1

202211091217191741

1

湖北省成套

异议受理部门

异议受理部门联系人 

异议受理部门联系人

异议受理部门邮政编码 

异议受理部门电子邮箱 

武汉市武昌区平安财富中心B座

王保东

17798348006

434000

382424091@qq.com

备注:您的权限不能浏览详细内容,非正式会员请联系办理会员入网注册事宜,并缴费成为正式会员后登录网站会员区可查看招标公告、招名方式或下载报名表格等详细内容!为保证您能够顺利投标,具体要求及购买标书操作流程按公告详细内容为准。

咨询联系人:李工
咨询电话:010-51957458
传真:010-51957412
手机:13683233285
QQ:1211306049
微信:Li13683233285
邮箱:1211306049@qq.com
来源:中国电力招标采购网 编辑:hubeibidding

 
打赏
 
更多>同类资讯

最新资讯
最新行情