云南德宏[更正] 盈江县公安局交通警察大队执法执勤用车采购项目三次询价变更(二次)

项目编号
点击查看
预算金额
点击查看
招标单位
点击查看
招标电话
点击查看
代理机构
点击查看
代理电话
点击查看

查看隐藏内容(*)需先登录

段落格式sans-...**盈江县公安局交通警察大队执法执勤用车采购项目三次询价更正公告(交易编号:yjcg(询)****-***号)一、项目信息(一)项目名称:盈江县公安局交通警察大队执法执勤用车采购项目三次询价(二)公告首次发布时间:****年**月**日二、更正原因:云南省政府采购网发布日期与德宏州公共资源交易电子服务系统(全国公共资源交易平台(云南省·德宏州))发布日期不同步。三、更正信息*.原报名及下载询价文件时间延期至****年**月**日**:**分。*.原公告中“递交报价文件截止时间、开标时间:****年**月*日上午**:**”,现更正为:递交报价文件截止时间、开标时间:****年**月*日上午**:**。*.其他事项不变。请各投标人遵照执行。四、公告媒体:德宏州公共资源交易电子服务系统(全国公共资源交易平台(云南省·德宏州))。五、联系方式:采购单位:盈江县公安局交通警察大队联系人及联系方式:刀先生***********地址:盈江县平原镇勐腊路**号政府集采机构:盈江县政府采购和出让中心联系人及联系方式:李先生****-*******地址:盈江县平原镇目瑙纵歌路***号盈江县政府采购和出让中心****年**月**日//ueditor_config.umeditor_home_url = "/zfcg-zb/res/common/umeditor/"; //实例化编辑器 // var um = um.geteditor('myeditor'); var isview=$.geturlparam("isview"); var width=$.geturlparam("width"); var height=$.geturlparam("height"); if(width==null){ width=$(document).width(); } if(height==null){ height=$(document).height(); } var um=um.createeditor('myeditor',{initialframeheight:height-**,initialframewidth:width-* });; um.addlistener('blur',function(){ //$('#focush*').html('编辑器失去焦点了') }); um.addlistener('focus',function(){ // $('#focush*').html('') }); $(function(){ var isview=$.geturlparam("isview"); if(isview=="true"){ setdisabled(); /* settimeout(function(){ $("#_baidu_bookmark_start_*").parent().hide();//如果是只读会生成一行多的p,去掉 },***); */ } else{ //有内容的情况下,编辑器自动加p 手动去掉。后面再处理 /* settimeout(function(){ var pfirst=$("#myeditor").find("p:first"); if(pfirst.html()==""||pfirst.html()==""){ pfirst.remove(); } },***); */ } }); //按钮的操作 function inserthtml() { var value = prompt('插入html代码', ''); um.execcommand('inserthtml', value) } //是否聚焦 function isfocus(){ alert(um.isfocus()) } function doblur(){ um.blur() } //创建editor function createeditor() { //enablebtn(); um = um.geteditor('myeditor'); } //获取html function getallhtml() { return um.geteditor('myeditor').getallhtml(); } //获取内容 function getcontent() { return um.geteditor('myeditor').getcontent(); } //设置内容 content 内容 isappendto 是否追加 true是追加 false是不追加,默认追加 function setcontent(content,isappendto) { if(isappendto==undefined){isappendto=true;} um.geteditor('myeditor').setcontent(content, isappendto); } function getplaintxt() { var arr = []; arr.push("使用editor.getplaintxt()方法可以获得编辑器的带格式的纯文本内容"); arr.push("内容为:"); arr.push(um.geteditor('myeditor').getplaintxt()); alert(arr.join('\n')) } function setdisabled() { um.geteditor('myeditor').setdisabled('fullscreen'); // disablebtn("enable"); } function setenabled() { um.geteditor('myeditor').setenabled(); // enablebtn(); } function gettext() { //当你点击按钮时编辑区域已经失去了焦点,如果直接用gettext将不会得到内容,所以要在选回来,然后取得内容 var range = um.geteditor('myeditor').selection.getrange(); range.select(); var txt = um.geteditor('myeditor').selection.gettext(); alert(txt); } function getcontenttxt() { var arr = []; arr.push("使用editor.getcontenttxt()方法可以获得编辑器的纯文本内容"); arr.push("编辑器的纯文本内容为:"); arr.push(um.geteditor('myeditor').getcontenttxt()); alert(arr.join("\n")); } function hascontent() { var arr = []; arr.push("使用editor.hascontents()方法判断编辑器里是否有内容"); arr.push("判断结果为:"); arr.push(um.geteditor('myeditor').hascontents()); alert(arr.join("\n")); } function setfocus() { um.geteditor('myeditor').focus(); } function deleteeditor() { disablebtn(); um.geteditor('myeditor').destroy(); } function disablebtn(str) { var div = document.getelementbyid('btncontainer'); var btns = ***.******.***.getelementsbytagname(div, "button"); for (var i = *, btn; btn = btns[i++];) { if (btn.id == str) { ***.******.***.removeattributes(btn, ["disabled"]); } else { $(btn).attr( "disabled", true ).addclass( "disabled" ); } } } function enablebtn() { var div = document.getelementbyid('btncontainer'); var btns = ***.******.***.getelementsbytagname(div, "button"); for (var i = *, btn; btn = btns[i++];) { $(btn).removeattr( "disabled" ).removeclass( "disabled" ); } } function isnotblank(value){ if(value == undefined){ return false; } if(value == "undefined"){ return false; } if(value == null){ return false; } if(value == "null"){ return false; } if(value === ""){ return false; } return true; } function resizeheight(heightparam){ if(isnotblank(heightparam)){ height = heightparam; } if(!height){ var heighttmp = $(document).height(); um.setheight(heighttmp); }else{ um.setheight(height); } } function resizewidth(widthparam){ if(isnotblank(widthparam)){ width = widthparam; } if(!width){ var widthtmp = $(document).width(); um.setwidth(widthtmp); }else{ um.setwidth(width); } }附件信息附件: 序号文件名创建时间无
查看隐藏内容