2023年沙子口街道“四好农村路”提质增效工程

项目编号QDZBJH2023000177招标状态招标|招标公告
发布时间2023-01-29 18:29:15标书获取截止时间
投标截止时间开标时间
招标单位青岛市崂山区人民政府沙子口街道办事处预算金额
中标单位中标金额
代理单位
相关产品提质增效工程
联系方式

正文内容

function Navigation_QH(id) { if (id > 0) { $("#li" + id).attr("class", "active"); } } function isMobile() { var userAgentInfo = navigator.userAgent; var mobileAgents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"]; var mobile_flag = false; //根据userAgent判断是否是手机 for (var v = 0; v 0) { mobile_flag = true; break; } } var screen_width = window.screen.width; var screen_height = window.screen.height; //根据屏幕分辨率判断是否是手机 if (screen_width 首页 主体信息 信用信息 服务公开 政策法规 监督信息 区市动态 下载中心 服务热线 营商环境 招标计划 .box_bg { height: auto !important; min-height: 732px; padding-bottom: 20px; /*width: 1200px;*/ margin: 0 auto; } #htmlTable table { margin: 0 auto; } .article_XW { width: 860px; margin: 0 auto; border: 1px solid #808080; overflow: hidden; } .article_content { width: 860px; margin: 0 auto; border: 1px solid #808080; text-align: center; overflow: hidden; } .article_p { height: 40px; line-height: 40px; font-weight: bold; font-size: 20px; border-bottom: 2px solid #777; padding: 0 10px; } .article_list { overflow: hidden; width: 860px; margin: 0 auto; } .article_list > li { position: relative; line-height: 40px; clear: both; color: #6f6f6f; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-left: 20px; border-bottom: 1px dashed #ccc; font-size: 14px; } .article_list > li > span { float: right; } .article_list .people_li span { float: left; display: inline-block; } .wd20 { width: 20%; text-align: left; padding-left: 4px; } .wd45 { width: 40%; text-align: center; padding-left: 4px; } .wd35 { width: 35%; text-align: center; padding-left: 4px; } .wd70 { width: 70%; text-align: left; padding-left: 4px; } .wd100 { width: 100%; text-align: left; padding-left: 4px; } .click_pop { padding: 0 10px; background: #0071d8; color: #fff; font-size: 14px; font-weight: bold; border-radius: 5px; margin-right: 10px; display: inline-block; height: 30px; line-height: 30px; } .click_pop:hover { padding: 0 10px; background: #0081d8; color: #fff; cursor: pointer; } .Disable { padding: 0 10px; background: #ccc !important; color: #fff; font-size: 14px; font-weight: bold; border-radius: 5px; margin-right: 10px; display: inline-block; height: 30px; line-height: 30px; cursor: pointer; } .query { background-color: #dedede; } .article_list > li > label { white-space: pre-wrap !important; } .article_list .people_li label { float: left; padding-right: 3px; display: inline-block; } .tab { border-collapse: collapse; font-size: 12px; color: #094176; margin: 0 auto; } .tab th { border: 1px #222222 solid; padding: 5px; background-color: #DFDEDE; text-align: center; } .tab td { border: 1px #222222 solid; padding: 5px; } .float_a { float: right; margin-top: 5px; } .wd45 > a { font-size: 12px; } .l-dialog-content { overflow-y: hidden; overflow-x: hidden; } tr td:first-child { width:250px; } 您现在所在位置: 首页 >公告公示 >招标计划 >交易信息详情 2023年沙子口街道“四好农村路”提质增效工程招标计划 一、招标计划编号: QDZBJH2023000177 二、项目名称: 2023年沙子口街道“四好农村路”提质增效工程 三、招标人名称: 青岛市崂山区人民政府沙子口街道办事处 四、工程用途: 其他市政工程 五、建筑规模: 建筑面积(m2):45000 六、项目概况: 对沙子口街道董家埠、段家埠、戴家埠、前登瀛、后登瀛等社区及村庄的约4.5里农村道路进行提质增效,主要包括混凝土路面翻建,沥青罩面,设置排水沟、挡土墙、护栏等。 七、招标内容: 施工图纸范围内全部内容,详见工程量清单 八、估算投资(元): 7,700,000元 九、预计招标公告发布(或投标邀请书发出)时间: 2023年03月01日 十、项目地区: 崂山区 Copyright © 2017-2023 青岛市政务服务和公共资源交易中心 All Rights Reserved. 地址:青岛市市南区福州南路17,27号 技术支持电话:0532-85871505 0532-55572211 鲁公网安备 37020202000555号 ICP:鲁ICP备05038584号 技术支持:青岛福莱易通软件有限公司 //用户点击文章或是课程的详情页,点击量加1 function addclick(type, flag) { var cookieName = type + 'jia' + flag;//组合独一无二的专属该文章的cookie名 var jsonString = { "type": type, "flag": flag }; var cookie = getCookie(cookieName); if (cookie == null || cookie == "") {//如果没有这个cookie,则说明是第一次点击该页面,或者已经过去了30分钟,可以给点击量+1了 $.ajax({ type: "post", url: "../../PortalQDManage/PortalQD/SaveUVCount", data: jsonString, async: true, success: function (msg) { var date = new Date(); date.setTime(date.getTime() + 30 * 60 * 1000);//只能这么写,30表示30分钟 setCookie(cookieName, cookieName, { expires: date }); //点击量成功加1,则打印信息 //console.log(msg); }, error: function (XMLHttpRequest, textStatus, errorThrown) { //console.log("连接超时!"); } }); } }; function setCookie(c_name, value, expiredays) { var exdate = new Date() exdate.setDate(exdate.getDate() + expiredays) document.cookie = c_name + "=" + escape(value) + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString()) } function getCookie(c_name) { if (document.cookie.length > 0) { c_start = document.cookie.indexOf(c_name + "=") if (c_start != -1) { c_start = c_start + c_name.length + 1 c_end = document.cookie.indexOf(";", c_start) if (c_end == -1) c_end = document.cookie.length return unescape(document.cookie.substring(c_start, c_end)) } } return "" }