招标频道 [切换分站]
招标网服务号 微信公众平台
招标网APP 中招APP下载
招标网 > 招标采购 > 招标公告 > 武汉市蔡甸区新农中学设计

武汉市蔡甸区新农中学设计

2018-11-02 中学招标设计招标 湖北省武汉市
收藏
打印
全屏
用手机查看

扫描到手机,信息随时看

用微信扫一扫功能即可

将此内容分享给朋友

  • 以下内容,仅对会员开放。如需查看详细内容,请先【注册】成为会员。
  • 已注册会员请【登录】后查看。
  • 更多详情,请查看【会员服务列表】
  • 如果您需要解决登录及其他问题,请您拨打客服热线:400-633-1888
  • 【正式会员“登录”后可浏览】
  • 2018年11月02日
  • 【正式会员“登录”后可浏览】
  • 【正式会员“登录”后可浏览】
正文内容

·公告摘要:

***********招标公司受业主*******委托,于2018年11月02日在招标网发布武汉市蔡甸区新农中学设计。各有关单位请于前与公告中联系人联系,及时参与投标等相关工作,以免错失商业机会。

*** 部分为隐藏内容,查看详细信息请

·部分信息内容如下:

武汉市蔡甸区新农中学设计
注册人异动 /* * jQuery Easing v*.* - http://gsgd.co.uk/sandbox/jquery/easing/ * * Uses the built in easing capabilities added In jQuery *.* * to offer multiple easing options * * TERMS OF USE - jQuery Easing * * Open source under the BSD License. * * Copyright © **** George McGinley Smith * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list * of conditions and the following disclaimer in the documentation and/or other materials * provided with the distribution. * * Neither the name of the author nor the names of contributors may be used to endorse * or promote products derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * */ // 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-*) + b; }, easeInOutQuad: function (x, t, b, c, d) { if ((t/=d/*) < *) return c/**t*t + b; return -c/* * ((--t)*(t-*) - *) + 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-*)*t*t + *) + b; }, easeInOutCubic: function (x, t, b, c, d) { if ((t/=d/*) < *) return c/**t*t*t + b; return c/**((t-=*)*t*t + *) + 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-*)*t*t*t - *) + b; }, easeInOutQuart: function (x, t, b, c, d) { if ((t/=d/*) < *) return c/**t*t*t*t + b; return -c/* * ((t-=*)*t*t*t - *) + 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-*)*t*t*t*t + *) + b; }, easeInOutQuint: function (x, t, b, c, d) { if ((t/=d/*) < *) return c/**t*t*t*t*t + b; return c/**((t-=*)*t*t*t*t + *) + b; }, easeInSine: function (x, t, b, c, d) { return -c * Math.cos(t/d * (Math.PI/*)) + c + b; }, easeOutSine: function (x, t, b, c, d) { return c * Math.sin(t/d * (Math.PI/*)) + b; }, easeInOutSine: function (x, t, b, c, d) { return -c/* * (Math.cos(Math.PI*t/d) - *) + b; }, easeInExpo: function (x, t, b, c, d) { return (t==*) b : c * Math.pow(*, ** * (t/d - *)) + b; }, easeOutExpo: function (x, t, b, c, d) { return (t==d) b+c : c * (-Math.pow(*, -** * t/d) + *) + b; }, easeInOutExpo: function (x, t, b, c, d) { if (t==*) return b; if (t==d) return b+c; if ((t/=d/*) < *) return c/* * Math.pow(*, ** * (t - *)) + b; return c/* * (-Math.pow(*, -** * --t) + *) + b; }, easeInCirc: function (x, t, b, c, d) { return -c * (Math.sqrt(* - (t/=d)*t) - *) + b; }, easeOutCirc: function (x, t, b, c, d) { return c * Math.sqrt(* - (t=t/d-*)*t) + b; }, easeInOutCirc: function (x, t, b, c, d) { if ((t/=d/*) < *) return -c/* * (Math.sqrt(* - t*t) - *) + b; return c/* * (Math.sqrt(* - (t-=*)*t) + *) + b; }, easeInElastic: function (x, t, b, c, d) { var s=*.*****;var p=*;var a=c; if (t==*) return b; if ((t/=d)==*) return b+c; if (!p) p=d*.*; if (a < Math.abs(c)) { a=c; var s=p/*; } else var s = p/(**Math.PI) * Math.asin (c/a); return -(a*Math.pow(*,***(t-=*)) * Math.sin( (t*d-s)*(**Math.PI)/p )) + b; }, easeOutElastic: function (x, t, b, c, d) { var s=*.*****;var p=*;var a=c; if (t==*) return b; if ((t/=d)==*) return b+c; if (!p) p=d*.*; if (a < Math.abs(c)) { a=c; var s=p/*; } else var s = p/(**Math.PI) * Math.asin (c/a); return a*Math.pow(*,-***t) * Math.sin( (t*d-s)*(**Math.PI)/p ) + c + b; }, easeInOutElastic: function (x, t, b, c, d) { var s=*.*****;var p=*;var a=c; if (t==*) return b; if ((t/=d/*)==*) return b+c; if (!p) p=d*(.***.*); if (a < Math.abs(c)) { a=c; var s=p/*; } else var s = p/(**Math.PI) * Math.asin (c/a); if (t < *) return -.**(a*Math.pow(*,***(t-=*)) * Math.sin( (t*d-s)*(**Math.PI)/p )) + b; return a*Math.pow(*,-***(t-=*)) * Math.sin( (t*d-s)*(**Math.PI)/p )*.* + c + b; }, easeInBack: function (x, t, b, c, d, s) { if (s == undefined) s = *.*****; return c*(t/=d)*t*((s+*)*t - s) + b; }, easeOutBack: function (x, t, b, c, d, s) { if (s == undefined) s = *.*****; return c*((t=t/d-*)*t*((s+*)*t + s) + *) + b; }, easeInOutBack: function (x, t, b, c, d, s) { if (s == undefined) s = *.*****; if ((t/=d/*) < *) return c/**(t*t*(((s*=(*.***))+*)*t - s)) + b; return c/**((t-=*)*t*(((s*=(*.***))+*)*t + s) + *) + b; }, easeInBounce: function (x, t, b, c, d) { return c - jQuery.easing.easeOutBounce (x, d-t, *, c, d) + b; }, easeOutBounce: function (x, t, b, c, d) { if ((t/=d) < (*/*.**)) { return c*(*.*****t*t) + b; } else if (t < (*/*.**)) { return c*(*.*****(t-=(*.*/*.**))*t + .**) + b; } else if (t < (*.*/*.**)) { return c*(*.*****(t-=(*.**/*.**))*t + .****) + b; } else { return c*(*.*****(t-=(*.***/*.**))*t + .******) + b; } }, easeInOutBounce: function (x, t, b, c, d) { if (t < d/*) return jQuery.easing.easeInBounce (x, t**, *, c, d) * .* + b; return jQuery.easing.easeOutBounce (x, t**-d, *, c, d) * .* + c*.* + b; } }); /* * * TERMS OF USE - EASING EQUATIONS * * Open source under the BSD License. * * Copyright © **** Robert Penner * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list * of conditions and the following disclaimer in the documentation and/or other materials * provided with the distribution. * * Neither the name of the author nor the names of contributors may be used to endorse * or promote products derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * */ //等待dom元素加载完毕. $(function(){ // 一级菜单 $(".menu_list .level**>a").click( function() { $(".down_**").remove(); $(".on").attr('class',''); $(this).append(""); $(this).attr('class','on'); return false;//阻止默认时间 } ); }) function fun_ShowCategory(id){ $(".down_**").remove(); $(".on").attr('class',''); $("#"+id+"").append(""); $("#"+id+">a").attr('class','on'); } 招标/资格预审公告 报建编号: ***************** 报建名称: ******新农中学 招标登记编号: ****************** 招标项目名称: ******新农中学设计 招投标监管部门: ***建设工程招标投标管理办公室 招标人(盖章): 中法**生态示范城投资开发有限公司 招标人法定代表人(盖章): 凃辉 招标代理机构: **名达工程咨询有限责任公司 招标人联系人: 杨昕 招标联系电话: *********** 招标人代理联系人: 覃国丽 招标代理联系电话: *********** 是否电子标: 非电子标 是否需要项目经理: 是 数据来源: ***公共**交易平台 工程地点: 中法**生态示范城新农村 招标类别: 工程服务招标 招标内容: 设计招标 招标方式: 公开招标 招标内容说明: 完成本工程设计工作及后期相关服务。 本次招标工程投资额(万元): ***** 立项批准文号: 蔡发改社会【****】**号 计划工期(日历天): ** 标段数/采购数: * 质量要求: 对投标人资格审查方式: 资格预审 资格预审办法: 合格制预审 公告发布及投标报名、资格预审文件下载 起止时间: ****-**-** **:** ~ ****-**-** **:** 投资总额(万元): ***** 购领招标文件地点: **名达工程咨询有限责任公司(******依山龙郡**栋*单元*层) 招标文件获取方式: 到代理公司现场领取 招标文件发售价格: * 购领招标文件时间: ****-**-** **:** 资格预审文件获取方式: 网上下载 资格预审文件下载: 投标报名方式: 网上报名 资格预审申请书送达截止时间: ****-**-** **:** 资格预审申请书送达地点: ******公共**交易中心*楼(********大街***号) 资格预审申请书送达单位: 中法**生态示范城投资开发有限公司、**名达工程咨询有限责任公司 资格预审结果公示起止时间: ****-**-** **:** ~ ****-**-** **:** 资格预审结果通知时间: ****-**-** **:** 评标办法: 招标文件所规定的评标办法 公告状态: 报名中 其他要求: 一、通过网上报名的投标申请单位,必须在规定时间内一次性提交以下资料的原件及加盖企业公章的复印件一套接受现场核验(提交的证件都需年审合格且在有效期内,复印件需清晰可辨、内容完整与原件一致,并加盖公章后装订成册):*、法人持法定代表人证明书及法人二代身份证或被委托人持法定代表人授权委托书及被委托人二代身份证(被委托人必须为拟派的项目负责人);*、营业执照副本;*、资质证书副本;*、拟派本工程的项目负责人须具备一级注册建筑师注册证、职称证、劳动合同;*、近三年(从公告发布之日起往前推算)企业及项目负责人承担过类似业绩证明文件(设计合同);*、不受理同一法人代表或相互控股或参股的投标申请人投标,不受理同属于一家集团公司的多个投标申请人同时投标;在***公共**交易中心、**建设网等上有关于企业及项目主要负责人不良行为记录的投标申请人,将被拒绝参加本次投标; *、本工程不受理联合体投标。二、本工程资格预审采取一次性审查,不接收补充资料,逾期到达或现场核验未能通过者视为资格预审不合格。 备注: 资格预审申请文件递交方法: 现场递交 合格投标人的数量: 当通过资格预审的投标申请人不少于*名,且不多于*名(含)时,确定全部通过资格预审的投标申请人参加投标;当通过资格预审的投标申请人超过*名时,由招标人采用随机抽取的方式,确定不少于*名(含)通过资格预审的投标申请人参加投标。
文件下载

为你推荐 相关的其他招标项目信息

投标提示

为保证您能够顺利投标,请在投标或购买招标文件前向招标代理机构或招标人咨询投标详细要求,有关招标的具体要求及情况以招标代理机构或招标人的解释为准。

加载中...

广告

加载中...

广告