// JavaScript Document //alert("popup"); // 资源信息 function ResourceInfo() { var PopHtml=""; PopHtml += '
'; PopHtml += '
'; PopHtml += '
资源信息
申请
'; PopHtml += '
'; //资源信息 PopHtml += '
'; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ' '; PopHtml += ''; PopHtml += ''; PopHtml += ' '; PopHtml += ''; PopHtml += '' PopHtml += ' '; PopHtml += ''; PopHtml += ''; PopHtml += ' '; //PopHtml += ''; PopHtml += ''; //PopHtml += ''; //PopHtml += ''; PopHtml +='
资源名称
*
资源发布者
应用用途
*
学术领域
应用行业
期望付款方式
合作备注
详细描述
详细描述
'; /////////////资源图片上传//////////////////// //图像 PopHtml +='
'; PopHtml += '
'; //PopHtml += '
'; //PopHtml += '上传资源图片'; //PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
选择图片
'; PopHtml += '尺寸240*240,大小在5M以内,
JPG、PNG格式
'; PopHtml += '
'; PopHtml +='
详细描述
'; /////////////资源图片上传 结束//////////////////// //按钮盒子 PopHtml +='
'; PopHtml += '
'; PopHtml += '
'; //合作历史及评价 // PopHtml += ''; // PopHtml += ''; // PopHtml += '
合作历史及评价
'; // PopHtml += '

专家姓名

职称,职位

XXX学校,XXX机222222222222222构

'; // PopHtml += '
'; // PopHtml += '
  • XXXXXX资源的合作2016-09-06
'; // PopHtml += '
'; // PopHtml += '

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo co Proin gravida dolor sit amet lacus accumsan etiverra justo co Proin gravida dolor sit amet lacus accumsan et iverra justo co Proin gravida dolor sit amet lacus accumsan et iverra justo co Proin gravida dolor sit amet lacus accumsan et

'; // PopHtml += '
'; // PopHtml += '
'; PopHtml += '
'; //关闭按钮 PopHtml += ''; PopHtml += '
'; //必须先将html添加到body,再设置Css样式 $("body").prepend(PopHtml); $("body").css("position","fixed"); //初始引用编辑器 ue = UE.getEditor('editor', { // lang:"zh-cn" }); //上传资源图像的hover // $(".resouimg").hover(function(){ // $(".resouup").animate({ // "bottom": "0px" // }); // }, function() { // $(".resouup").animate({ // "bottom": "-50px" // }); // }) //var _widht = document.documentElement.clientWidth; //屏幕宽 //var _height = document.documentElement.clientHeight; //屏幕高 var _widht = $(".blackcover").width(); var _height = $(".blackcover").height(); var boxWidth = $(".resouinfo").width(); var boxHeight = $(".resouinfo").height(); // console.log(document.documentElement.clientWidth); // console.log(document.documentElement.clientHeight); // console.log(_widht); // console.log(_height); //让提示框居中 //$(".resouinfo").css({ top: (_height - boxHeight)/2 + "px", left: (_widht - boxWidth) / 2 + "px" }); $(".resouinfo").css({ top:"40px", left: (_widht - boxWidth) / 2 + "px" }); //关闭按钮 $(".workclose").click(function(){ $(".blackcover").remove(); $("body").css("position",""); UE.delEditor('editor'); }); function resourceName() { var code = $("#resourceName").val(); if(code.length==0||code==" ") { $(".workmsg1").text("发布资源名称不能为空"); resourceNamePass = false; } else { $(".workmsg1").text(""); resourceNamePass= true; } } $("#resourceName").blur(function(){ resourceName(); }); //验证应用用途 function supportedServices() { var code = $("#supportedServices").val(); if(code.length==0||code==" ") { $(".workmsg3").text("应用用途不能为空"); supportedServicesPass= false; } else { $(".workmsg3").text(""); supportedServicesPass= true; } } $("#supportedServices").blur(function(){ supportedServices(); }); //失去焦点判断 $("#resourceName").blur(function(){ resourceName(); }); $("#supportedServices").blur(function(){ supportedServices(); }); //资源图像上传 /*$(function (){ var id = $.cookie(''); cacheImageKey=null; if(id){ $('#resouup').on('change',function(){ $(".resouimgshow").show(); $(".resouup").hide(); $.ajaxFileUpload({ url:"../ajax/cachedFileUpload", secureuri:false, fileElementId:"resouup", dataType:"json", success:function($data){ if($data.success){ cacheImageKey =$data.data[0].cacheKey $(".resouImage").attr("src","/images/tmp/"+cacheImageKey); }else{ $.MsgBox.Alert("message",$data.msg); } }, error:function(){ $.MsgBox.Alert("message","upload error"); } }); }); } }) */ // 初始化Web Uploader var uploader = WebUploader.create({ // 选完文件后,是否自动上传。 auto: true, // 添加的文件数量 //fileNumLimit: 1, // swf文件路径 swf: '../js/webuploader/Uploader.swf', // 文件接收服务端。 server: '../ajax/cachedFileUpload', // 选择文件的按钮。可选。 // 内部根据当前运行是创建,可能是input元素,也可能是flash. pick : { id : "#filePicker", multiple: false }, // 只允许选择图片文件。 accept: { title: 'Images', extensions: 'gif,jpg,jpeg,bmp,png', mimeTypes: 'image/gif,image/jpg,image/jpeg,image/bmp,image/png' } }); // 当有文件添加进来的时候 uploader.on( 'fileQueued', function( file ) { var $li = $( '
' + '' + '
' ) $img = $li.find('img'); // $list为容器jQuery实例 var $list = $('#fileList'); $list.empty(""); $list.append( $li ); $(".upbox").css({"marginTop":"0px"}); // 创建缩略图 // 如果为非图片文件,可以不用调用此方法。 // thumbnailWidth x thumbnailHeight 为 100 x 100 uploader.makeThumb( file, function( error, src ) { if ( error ) { $img.replaceWith('不能预览'); return; } $img.attr( 'src', src ); }, 1, 1 ); }); // 文件上传过程中创建进度条实时显示。 /*uploader.on( 'uploadProgress', function( file, percentage ) { var $li = $( '#'+file.id ), $percent = $li.find('.progress span'); // 避免重复创建 if ( !$percent.length ) { $percent = $('

') .appendTo( $li ) .find('span'); } $percent.css( 'width', percentage * 100 + '%' ); }); */ // 文件上传成功,给item添加成功class, 用样式标记上传成功。 cacheImageKey=null; uploader.on( 'uploadSuccess', function(file,data) { cacheImageKey =data.data[0].cacheKey; //console.log(cacheImageKey); // $( '#'+file.id ).addClass('upload-state-done'); //$("#filePicker").hide(); }); } //资源信息 // //资源详细页面 function ResourceMessage() { var PopHtml=""; PopHtml += '
'; PopHtml += '
'; PopHtml += '
资源详细信息
'; PopHtml += '
'; //资源信息 PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ' '; PopHtml += ''; PopHtml += ''; PopHtml += ' '; PopHtml += ''; PopHtml += ''; //PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml +='
资源名称
资源发布者
应用用途
学术领域
应用行业
期望付款方式
详细描述
合作备注
'; /////////////资源图片上传//////////////////// //图像 PopHtml +='
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; //关闭按钮 PopHtml += ''; PopHtml += '
'; //必须先将html添加到body,再设置Css样式 $("body").prepend(PopHtml); $("body").css("position","fixed"); var _widht = $(".blackcover").width(); var _height = $(".blackcover").height(); var boxWidth = $(".resouinfo").width(); var boxHeight = $(".resouinfo").height(); //让提示框居中 $(".resouinfo").css({ top:(_height-boxHeight)/2+"px", left: (_widht - boxWidth) / 2 + "px" }); //关闭按钮 $(".workclose").click(function(){ $(".blackcover").remove(); $("body").css("position",""); }); } // 资源申请确认 function ResourceApply(){ var PopHtml=""; PopHtml += '
'; PopHtml += '
'; /*//资源申请模块*/ PopHtml += '
资源申请
申请中
'; PopHtml += '
'; //合作编号在申请的时候还未生成,不显示;申请完成之后产生,在申请确认是显示 PopHtml += ''; PopHtml += ''; //资源申请信息 PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += '
合作编号
申请时间
2016-08-01
需求资源
资源发布者
需求方'; PopHtml += '
'; PopHtml += '
交付时间
具体需求
'; PopHtml += '
'; //相关文件上传 PopHtml += ' '; //发送申请按钮 PopHtml += '
'; PopHtml += '
'; //确认申请按钮 PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; /*//发送报价模块*/ PopHtml += '
发送报价
'; PopHtml += '
'; PopHtml += ''; PopHtml += ''; PopHtml += '
付款方式
费用
备注
'; PopHtml += ''; //文件 PopHtml += ' '; //发送报价按钮 PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; //必须先将html添加到body,再设置Css样式 $("body").prepend(PopHtml); $("body").css("position","fixed"); var _widht = $(".blackcover").width(); var _height = $(".blackcover").height(); var boxWidth = $(".resouapply").width(); var boxHeight = $(".resouapply").height(); //让提示框居中 $(".resouapply").css({top:"40px", left: (_widht - boxWidth) / 2 + "px" }); // $( "#datepicker" ).datepicker({ "dateFormat":" yy-mm-dd"}); //关闭按钮 $(".workclose").click(function(){ $(".blackcover").remove(); $("body").css("position",""); }); } //资源申请确认 // //评价 // function CommentInfo() { var PopHtml=""; PopHtml += '
'; PopHtml += '
'; /*输入评价tab*/ PopHtml += '
'; PopHtml += '
评价
评价后可看到对方对您的评价
'; PopHtml += '
'; //星级评价 PopHtml += ''; //评价内容 PopHtml += ''; PopHtml += ''; PopHtml += '
总体评价
评价内容
字数限制为5~200个
'; //按钮 PopHtml += '
'; PopHtml += '
'; /*查看评价信息*/ PopHtml += '
'; PopHtml += '
评价信息
'; PopHtml += '
'; //双方都评价 // PopHtml += ' '; PopHtml += '
'; // PopHtml += '

专家姓名

职称,职位

XXX学校,XXX机222222222222222构

'; // PopHtml += '
'; // PopHtml += '
  • XXXXXX资源的合作2016-09-06
'; // PopHtml += '
'; // PopHtml += '

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo co Proin gravida dolor sit amet lacus accumsan etiverra justo co Proin gravida dolor sit amet lacus accumsan et iverra justo co Proin gravida dolor sit amet lacus accumsan et iverra justo co Proin gravida dolor sit amet lacus accumsan et

'; // PopHtml += '
'; // //对方未评价 // PopHtml += '
'; // PopHtml += '

专家姓名

职称,职位

XXX学校,XXX机222222222222222构

'; // PopHtml += '
对方还未评价
'; // PopHtml += '
' PopHtml += '
'; PopHtml += ''; PopHtml += '
'; //必须先将html添加到body,再设置Css样式 $("body").prepend(PopHtml); $("body").css("position","fixed"); var _widht = $(".blackcover").width(); var _height = $(".blackcover").height(); var boxWidth = $(".commentinfo").width(); var boxHeight = $(".commentinfo").height(); //让提示框居中 $(".commentinfo").css({top:"40px", left: (_widht - boxWidth) / 2 + "px" }); //关闭按钮 $(".workclose").click(function(){ $(".blackcover").remove(); $("body").css("position",""); }); } // 评价// //留言 // function GuestbookInfo() { var PopHtml=""; PopHtml += '
'; PopHtml += '
'; PopHtml += '
留言板
'; PopHtml += '
'; PopHtml += '
字数限制为5~200个
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
  • 李四2016-09-06 08:00
'; PopHtml += '

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo co Proin gravida dolor sit amet lacus accumsan etiverra justo co Proin gravida dolor sit amet lacus accumsan et iverra justo co Proin gravida dolor sit amet lacus accumsan et iverra justo co Proin gravida dolor sit amet lacus accumsan et

'; PopHtml += '
'; PopHtml += ''; PopHtml += '
'; //必须先将html添加到body,再设置Css样式 $("body").prepend(PopHtml); $("body").css("position","fixed"); var _widht = $(".blackcover").width(); var _height = $(".blackcover").height(); var boxWidth = $(".guestbookinfo").width(); var boxHeight = $(".guestbookinfo").height(); //让提示框居中 $(".guestbookinfo").css({ top:"40px", left: (_widht - boxWidth) / 2 + "px" }); //关闭按钮 $(".workclose").click(function(){ $(".blackcover").remove(); $("body").css("position",""); }); } // 留言// //款项记录 // function PaymentInfo() { var PopHtml=""; PopHtml += '
'; PopHtml += '
'; PopHtml += '
款项记录
'; // /*添加款项记录*/ // PopHtml += '
'; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += '
付款方
支付方式
金额
状态
备注
'; // /*款项记录*/ PopHtml += '
'; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += '
总费用
¥1000
实收费用
¥2000
剩余费用
¥8000
'; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += '
时间
付款方
支付方式
金额
状态
备注
2016-08-10 08:00
张三
线下
¥1000
确认收款
之后尾款另行支付
'; PopHtml += ''; PopHtml += '
'; //必须先将html添加到body,再设置Css样式 $("body").prepend(PopHtml); $("body").css("position","fixed"); var _widht = $(".blackcover").width(); var _height = $(".blackcover").height(); var boxWidth = $(".paymentinfo").width(); var boxHeight = $(".paymentinfo").height(); //让提示框居中 $(".paymentinfo").css({ top:(_height-boxHeight)/2 + "px", left: (_widht - boxWidth) / 2 + "px" }); //关闭按钮 $(".workclose").click(function(){ $(".blackcover").remove(); $("body").css("position",""); }); } // 款项记录// //详细信息 function DetailInfo(){ var PopHtml=""; PopHtml += '
'; PopHtml += '
'; //**************************************************** /*//资源申请模块*/ PopHtml += '
详细信息
合作进行中
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; //合作编号在申请的时候还未生成,不显示;申请完成之后产生,在申请确认是显示 PopHtml += ''; PopHtml += ''; //资源申请信息 PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; /*//报价模块*/ //PopHtml += '
合作编号
00001109
申请时间
需求资源
资源发布者
需求方'; PopHtml += '
李四
'; PopHtml += '
交付时间
具体需求
'; PopHtml += ''; PopHtml += ''; PopHtml += '
付款方式
费用
备注
'; PopHtml += ''; PopHtml += '
'; //文件 PopHtml += '
'; PopHtml += '
相关文件
上传文件
'; PopHtml += '
'; PopHtml += '
323333333333333
'; PopHtml += ' '; PopHtml += '
'; //**************************************************** //款项记录 PopHtml += '
'; PopHtml += '
款项记录
'; /*添加款项记录*/ PopHtml += '
'; PopHtml += ''; //PopHtml += ''; //PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; //PopHtml += ''; //PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += '
付款方
支付方式
金额
状态
备注
'; /*款项记录*/ PopHtml += '
'; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += '
总费用
¥10000
实收费用
¥2000
剩余费用
'; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; // PopHtml += ''; PopHtml += '
时间
付款方
支付方式
金额
状态
备注
2016-08-10 08:00
张三
线下
¥1000
确认收款
之后尾款另行支付
'; //**************************************************** //合作动态 PopHtml += '
'; PopHtml += '
留言板
'; PopHtml += '
'; PopHtml += '
字数限制为5~200个
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
  • 李四2016-09-06 08:00
'; PopHtml += '

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo co Proin gravida dolor sit amet lacus accumsan etiverra justo co Proin gravida dolor sit amet lacus accumsan et iverra justo co Proin gravida dolor sit amet lacus accumsan et iverra justo co Proin gravida dolor sit amet lacus accumsan et

'; PopHtml += '
'; //**************************************************** //评价 PopHtml += '
'; /*查看评价信息*/ PopHtml += '
评价信息
'; PopHtml += '
'; //双方都评价 PopHtml += '
'; PopHtml += '

专家姓名

职称,职位

XXX学校,XXX机222222222222222构

'; PopHtml += '
'; PopHtml += '
  • XXXXXX资源的合作2016-09-06
'; PopHtml += '
'; PopHtml += '

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo co Proin gravida dolor sit amet lacus accumsan etiverra justo co Proin gravida dolor sit amet lacus accumsan et iverra justo co Proin gravida dolor sit amet lacus accumsan et iverra justo co Proin gravida dolor sit amet lacus accumsan et

'; PopHtml += '
'; //对方未评价 PopHtml += '
'; PopHtml += '

专家姓名

职称,职位

XXX学校,XXX机222222222222222构

'; PopHtml += '
对方还未评价
'; //您本人未评价 PopHtml += '
'; PopHtml += '

专家姓名

职称,职位

XXX学校,XXX机222222222222222构

'; PopHtml += '
您还未进行评价,现在去评价!
'; PopHtml += '
'; //**************************************************** //关闭按钮 PopHtml += ''; PopHtml += '
'; PopHtml += '
'; //必须先将html添加到body,再设置Css样式 $("body").prepend(PopHtml); $("body").css("position","fixed"); var _widht = $(".blackcover").width(); var _height = $(".blackcover").height(); var boxWidth = $(".resoudetailinfo").width(); var boxHeight = $(".resoudetailinfo").height(); //让提示框居中 $(".resoudetailinfo").css({ top:"40px", left: (_widht - boxWidth) / 2 + "px" }); //关闭按钮 $(".workclose").click(function(){ $(".blackcover").remove(); $("body").css("position",""); }); } /****咨询申请*****/ function ConsultApply() { var PopHtml=""; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; //专家头像 PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += '
'; PopHtml += '已完成咨询
'; PopHtml += '
'; PopHtml += '
'; //咨询类型菜单选择 PopHtml += '
'; PopHtml += ''; PopHtml += ''; // PopHtml += '

隐私条款

为使您的请求得到快速响应,您填写的信息可能被他的助手或科袖工作人员查阅,所以请不要填写机密信息。

'; PopHtml += '
'; PopHtml += '
'; //专家信息 PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; //发送咨询主题与内容 PopHtml += '
'; PopHtml += '
发送信息
'; PopHtml += '
    '; PopHtml += '
  • *
  • '; PopHtml += '
  • *
  • '; PopHtml += '
  • 请不要超过300个字
  • '; PopHtml += '
  • '; PopHtml += '
'; //关闭按钮 PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; //必须先将html添加到body,再设置Css样式 $("body").prepend(PopHtml); $("body").css("position","fixed"); var _widht = $(".blackcover").width(); var _height = $(".blackcover").height(); var boxWidth = $(".consultapply").width(); var boxHeight = $(".consultapply").height(); //让提示框居中 $(".consultapply").css({ top:"40px", left: (_widht - boxWidth) / 2 + "px" }); //咨询类型选择 $(".consultmenu .menucon li").click(function(){ $(this).addClass("clicknow").siblings().removeClass("clicknow"); }) //关闭按钮 $(".workclose").click(function(){ $(".blackcover").remove(); //$("body").css({"overflow-y":"auto","-ms-overflow-y":"auto","-webkit-overflow-y":"auto","-moz-overflow-y":"auto"}); $("body").css("position",""); }); } /****咨询专家结束评价*****/ function ConsultComment() { var PopHtml=""; PopHtml += '
'; PopHtml += '
'; /*输入评价tab*/ PopHtml += '
'; PopHtml += '
请对专家进行评价
'; PopHtml += '
'; //星级评价 PopHtml += ''; //评价内容 PopHtml += ''; PopHtml += ''; PopHtml += '
总体评价
详细评价
字数限制为200
'; //按钮 PopHtml += '
'; PopHtml += '
'; PopHtml +=''; PopHtml +=''; PopHtml +='
'; PopHtml += '
'; /////******感谢专家tab*/ PopHtml += '
'; PopHtml += '
本次咨询已经结束
'; PopHtml += '
'; //按钮 PopHtml += ' '; PopHtml += '
'; PopHtml += '
'; PopHtml += ''; PopHtml += ' '; PopHtml += '
' PopHtml += '
'; PopHtml += ''; PopHtml += '
'; //必须先将html添加到body,再设置Css样式 $("body").prepend(PopHtml); $("body").css("position","fixed"); var _widht = $(".blackcover").width(); var _height = $(".blackcover").height(); var boxWidth = $(".concombox").width(); var boxHeight = $(".concombox").height(); //让提示框居中 $(".concombox").css({top:(_height - boxHeight) / 2 + "px", left: (_widht - boxWidth) / 2 + "px" }); //关闭按钮 $(".workclose").click(function(){ $(".blackcover").remove(); $("body").css("position",""); }); } /****咨询专家结束评价*****/ /****是否确定完成*****/ function finish() { var PopHtml=""; PopHtml += '
'; PopHtml += '
'; PopHtml += '
确定完成??
'; PopHtml += '
确定
'; PopHtml += ''; PopHtml += '
'; //必须先将html添加到body,再设置Css样式 $("body").prepend(PopHtml); $("body").css("position","fixed"); var _widht = $(".blackcover").width(); var _height = $(".blackcover").height(); var boxWidth = $(".commentinfo").width(); var boxHeight = $(".commentinfo").height(); //让提示框居中 $(".commentinfo").css({top:(_height - boxHeight) / 2 + "px", left: (_widht - boxWidth) / 2 + "px" }); //关闭按钮 $(".workclose").click(function(){ $(".blackcover").remove(); $("body").css("position",""); }); } /*科研文章*/ function newsBombBox() { var PopHtml=""; PopHtml += '
'; PopHtml += '
'; PopHtml += '
科研文章
文章发布中
'; PopHtml += '
'; PopHtml += '
'; PopHtml += ''; PopHtml += ''; PopHtml += ''; PopHtml += ' '; PopHtml += ''; PopHtml += ' '; PopHtml += '' PopHtml += ''; PopHtml += ' '; PopHtml += ''; PopHtml +='
文章标题
*
涉及学术领域
涉及应用行业
'; /////////////文章图片上传//////////////////// PopHtml +='
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
选择图片
'; PopHtml += '建议尺寸640*640,大小在5M以内,
JPG、PNG格式
'; PopHtml += '
'; PopHtml +='
正文内容
'; /////////////文章图片上传 结束//////////////////// //按钮盒子 PopHtml +='
'; PopHtml += '
'; PopHtml += '
'; PopHtml += '
'; //关闭按钮 PopHtml += ''; PopHtml += '
'; //必须先将html添加到body,再设置Css样式 $("body").prepend(PopHtml); $("body").css("position","fixed"); //初始引用编辑器 ue = UE.getEditor('editor', { // lang:"zh-cn" }); //让提示框居中 var _widht = $(".blackcover").width(); var _height = $(".blackcover").height(); var boxWidth = $(".resouinfo").width(); var boxHeight = $(".resouinfo").height(); $(".resouinfo").css({ top:"40px", left: (_widht - boxWidth) / 2 + "px" }); //关闭按钮 $(".workclose").click(function(){ $(".blackcover").remove(); $("body").css("position",""); UE.delEditor('editor'); }); //判断文章标题不能为空 function newsName() { var code = $("#newsName").val(); if(code.length==0||code==" "){ $(".workmsg1").text("发布文章名称不能为空"); newtitle = false; }else{ $(".workmsg1").text(""); newtitle= true; } } //失去焦点判断 $("#newsName").blur(function(){ newsName(); }); // 初始化Web Uploader var uploader = WebUploader.create({ // 选完文件后,是否自动上传。 auto: true, // 添加的文件数量 //fileNumLimit: 1, // swf文件路径 swf: '../js/webuploader/Uploader.swf', // 文件接收服务端。 server: '../ajax/cachedFileUpload', // 选择文件的按钮。可选。 // 内部根据当前运行是创建,可能是input元素,也可能是flash. pick : { id : "#filePicker", multiple: false }, // 只允许选择图片文件。 accept: { title: 'Images', extensions: 'gif,jpg,jpeg,bmp,png', mimeTypes: 'image/gif,image/jpg,image/jpeg,image/bmp,image/png' } }); // 当有文件添加进来的时候 uploader.on( 'fileQueued', function( file ) { var $li = $( '
' + '' + '
' ) $img = $li.find('img'); // $list为容器jQuery实例 var $list = $('#fileList'); $list.empty(""); $list.append( $li ); $(".upbox").css({"marginTop":"0px"}); // 创建缩略图 // 如果为非图片文件,可以不用调用此方法。 // thumbnailWidth x thumbnailHeight 为 100 x 100 uploader.makeThumb( file, function( error, src ) { if ( error ) { $img.replaceWith('不能预览'); return; } $img.attr( 'src', src ); }, 1, 1 ); }); // 文件上传成功,给item添加成功class, 用样式标记上传成功。 cacheImageKey=null; uploader.on( 'uploadSuccess', function(file,data) { cacheImageKey =data.data[0].cacheKey; //console.log(cacheImageKey); }); } /*科研文章 end*/