123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614 |
- $(document).ready(function() {
- var resourceId = GetQueryString("resourceId");
- if(resourceId) {
- $("#deleteResource").removeClass("disableLi").addClass("deleteResource");
- getRecourceMe();
- }
- var orgId = $.cookie('orgId');
- if(orgId == "" || orgId == null || orgId == "null"){
- location.href = "cmp-settled-log.html";
- }
- var temp = [];
- var array = [];
- var oProfessor=[];
- ue = UE.getEditor('editor', {});
-
- function getRecourceMe() {
- $.ajax({
- "url": "/ajax/resource/queryOne",
- "type": "GET",
- "success": function(data) {
- console.log(data);
- if(data.success) {
- $("#uploadDd").siblings().remove();
- $("#fileList").append("<dd></dd><dd></dd>");
- temp=[];
- array=[];
- resourceHtml(data.data);
- }
- },
- "data": {
- "resourceId": resourceId
- },
- dataType: "json",
- 'error': function() {
- $.MsgBox.Alert('提示', '服务器连接超时!');
- }
- });
- }
-
- function resourceHtml($da) {
- $("#resourceName").val($da.resourceName);
- $("#application").val($da.supportedServices);
- if($da.spec) {
- $("#modelNumber").val($da.spec);
- }
- if($da.parameter) {
- $("#performancePa").val($da.parameter);
- }
- if($da.cooperationNotes) {
- $("#remarkContent").val($da.cooperationNotes);
- }
- if($da.subject) {
- var oSub = $da.subject.split(",");
- var oSt = "";
- for(var i = 0; i < oSub.length; i++) {
- oSt += '<li><p class="h2Font">' + oSub[i] + '</p><div class="closeThis"></div></li>'
- }
- $("#keywordList").html(oSt);
- } else {
- $("#keywordList").html("");
- }
- if($da.descp) {
- ue.ready(function() {
- ue.setContent($da.descp);
- });
- }
- if($da.images.length) {
- var arr = [];
- for(var i = 0; i < $da.images.length; i++) {
- var oString = '<dd>' +
- '<div class="imgItem">' +
- '<img src="' + "/data/resource/" + $da.images[i].imageSrc + '"/>' +
- '</div>' +
- '<div class="file-panel">' +
- '<span class="cancel" flag=1></span>' +
- '</div>' +
- '</dd>'
- arr[i] = oString;
- array[i] = $da.images[i].imageId;
- }
- $("#fileList dd").eq(2).remove();
- if($da.images.length == 1) {
- $("#fileList").prepend(arr[0]);
- } else if($da.images.length == 2) {
- $("#fileList dd").eq(1).remove();
- $("#fileList").prepend(arr[1]);
- $("#fileList").prepend(arr[0]);
- } else if($da.images.length == 3) {
- $("#fileList dd").eq(1).remove();
- $("#fileList").prepend(arr[2]);
- $("#fileList").prepend(arr[1]);
- $("#fileList").prepend(arr[0]);
- }
- }
- }
- var uploader = WebUploader.create({
- auto: true,
- fileNumLimit: 3,
- swf: '../js/webuploader/Uploader.swf',
- server: '../ajax/cachedFileUpload',
- fileSingleSizeLimit: 2 * 1024 * 1024,
- pick: {
- id: "#filePicker",
- multiple: false
- },
- accept: {
- title: 'Images',
- extensions: 'jpg,jpeg,png',
- mimeTypes: 'image/jpg,image/png'
- }
- });
-
- uploader.on('fileQueued', function(file) {
- fileId = file.id;
- var $len = $("#fileList").find("img").length;
- if($len == 0 || $len == 1) {
- var oRemove = $("#fileList").find("dd");
- oRemove.eq(oRemove.length - 1).remove();
- }
- var $li = $(
- '<dd>' +
- '<div class="imgItem" id="' + file.id + '">' +
- '<img />' +
- '</div>' +
-
- '</dd>'
- ),
- $btns = $('<div class="file-panel">' +
- '<span class="cancel"></span>' +
- '</div>').appendTo($li),
- $img = $li.find('img');
- var $list = $("#fileList");
- if($len == 1) {
- $list.find("dd").eq(0).after($li)
- } else if($len == 2) {
- $list.find("dd").eq(1).after($li)
- } else {
- $list.prepend($li);
- }
-
-
-
- uploader.makeThumb(file, function(error, src) {
- if(error) {
- $img.replaceWith('<span>不能预览</span>');
- return;
- }
- $img.attr('src', src);
- }, 1, 1);
-
- $btns.stop().animate({
- height: 30
- });
- });
- $li.on('mouseleave', function() {
- $btns.stop().animate({
- height: 0
- });
- });*/
- });
- uploader.onError = function(code) {
- console.log(code)
- $.MsgBox.Alert('提示', '请上传jpg、png格式的图片,大小不超过2M')
- };
- uploader.on('uploadSuccess', function(file, data) {
- uploader.removeFile(fileId);
- var cacheImageKey = temp.push(data.data[0].cacheKey);
- });
-
- $("#fileList").on("click", ".cancel", function() {
- var flag = $(this).attr("flag");
- var oNum = $(this).parents("dd").index();
- if(flag == 1) {
- array.splice(oNum, 1);
- } else {
- temp.splice(oNum, 1);
- }
- $(this).parent().parent().remove();
- var $len = $("#fileList").find("img").length;
- if($len != 2) {
- $("#fileList").append("<dd></dd>")
- }
- });
-
- $("#resourceName").bind({
- focus: function() {
- $("#resourceNamePrompt").show();
- },
- blur: function() {
- $("#resourceNamePrompt").hide();
- },
- keyup: function() {
- if($(this).val().length > 30) {
- $(this).val($(this).val().substr(0, 30));
- }
- }
- })
-
- $("#keywordName").bind({
- focus: function() {
- $("#keywordPrompt").show().text('最多可添加5个关键词,每个关键词10字以内');
- },
- blur: function() {
- $("#keywordPrompt").hide();
- },
- keyup: function() {
- var lNum=$.trim($(this).val()).length;
- if(lNum > 10) {
- $(this).val($(this).val().substr(0, 10));
- } else if(0 < lNum && lNum < 10) {
- $("#addKeyword").show();
- $.ajax({
- "url": "/ajax/dataDict/qaHotKey",
- "type": "GET",
- "success": function(data) {
- console.log(data);
- if(data.success) {
- if(data.data.length==0) {
- $("#keyList").addClass("displayNone");
- $("#keyList ul").html("");
- }else{
- $("#keyList").removeClass("displayNone");
- var oSr = "";
- for(var i = 0; i < data.data.length; i++) {
- oSr += '<li><p class="h2Font">' + data.data[i].caption + '</p></li>'
- }
- $("#keyList ul").html(oSr);
- }
- }
- },
- "data": {
- "key": $(this).val()
- },
- dataType: "json",
- 'error': function() {
- $.MsgBox.Alert('提示', '服务器连接超时!');
- }
- });
- }if(lNum == 0){
- $("#addKeyword").hide();
- $("#keyList ul").html("");
- }
- }
- })
- $("#keyList ul").on("click","li",function(){
- keyWord($(this).find("p").text());
- $("#keyList ul").html("");
- $("#keyList").addClass("displayNone");
- $("#addKeyword").hide();
- })
-
- $("#addKeyword").click(function() {
- keyWord($("#keywordName").val());
- })
- function keyWord(atl) {
- var oKeywordName =$.trim(atl);
- var keywordListLength = $("#keywordList").find("li");
- if(oKeywordName.length == 0) {
- $("#keywordPrompt").text('关键词输入不能为空');
- return;
- }
- for(var i = 0; i < keywordListLength.length; i++) {
- if(oKeywordName == keywordListLength.find("p").eq(i).text()) {
- $("#keywordPrompt").text('该关键词已存在');
- return;
- }
- }
- $("#keyList ul").html("");
- $("#addKeyword").hide();
- var oStr = '<li><p class="h2Font">' + oKeywordName + '</p><div class="closeThis"></div></li>'
- $("#keywordList").append(oStr);
- $("#keywordName").val("");
- if((keywordListLength.length + 1) == 5) {
- $("#keywordHide").hide();
- $("#keyList").css("border-top","none");
- }
- }
-
- $("#keywordList").on("click", ".closeThis", function() {
- $(this).parent().remove();
- var keywordListLength = $("#keywordList").find("li");
- if(keywordListLength.length < 5) {
- $("#keywordHide").show();
- $("#keyList").css("border-top","1px solid #E5E5E5");
- }
- });
-
- $("#application").bind({
- focus: function() {
- $("#applicationPrompt").show();
- },
- blur: function() {
- $("#applicationPrompt").hide();
- },
- keyup: function() {
- if($(this).val().length > 50) {
- $(this).val($(this).val().substr(0, 50));
- }
- }
- })
-
- $("#modelNumber").bind({
- focus: function() {
- $("#model").show();
- },
- blur: function() {
- $("#model").hide();
- },
- keyup: function() {
- if($(this).val().length > 50) {
- $(this).val($(this).val().substr(0, 50));
- }
- }
- });
- function para(sel1, sel2, sel3) {
- $(sel1).bind({
- focus: function() {
- $(sel2).show();
- },
- blur: function() {
- $(sel2).hide();
- },
- keyup: function(e) {
- if($(this).val().length > 200) {
- $(this).val($(this).val().substring(0, 200));
- e.preventDefault();
- }
- setTimeout(function() {
- $(sel3).text($(sel1).val().length);
- }, 1);
- }
- });
- }
-
- para("#performancePa", "#performance", "#entry1");
-
- para('#remarkContent', '#remark', '#entry2');
-
- $(".goFabu").click(function() {
- var oYes = term();
- if(oYes == 0) {
- return;
- }
- $.MsgBox.Confirm("提示", "确认发布该资源?", ajsPost);
- })
-
- $("#oPreview").click(function() {
- var oYes = term();
- if(oYes == 0) {
- return;
- }
- ajsPost("/ajax/resource/orgDraft", 1);
- })
-
- $("#oDraft").click(function() {
- var oYes = term();
- if(oYes == 0) {
- return;
- }
- ajsPost("/ajax/resource/orgDraft", 2);
- })
-
- $("#operateBlocko").on("click", ".deleteResource", function() {
- $.MsgBox.Confirm("提示", "确认删除该资源?", deleResource);
- })
-
- function deleResource() {
- $.ajax({
- "url": "/ajax/resource/delete",
- "type": "POST",
- "success": function(data) {
- console.log(data)
- if(data.success) {
- location.href = "resourceList.html"
- }
- },
- "data": {
- "resourceId": resourceId
- },
- "beforeSend": function() { },
- "contentType": "application/x-www-form-urlencoded",
- dataType: "json"
- });
- }
-
- function term() {
- var $len = $("#fileList").find("img").length;
- var reName = $("#resourceName").val();
- var oIndustry = $("#application").val();
- var oLen=$("#expertli").find(".selectAdd").length
- if($len == 0) {
- $.MsgBox.Alert('提示', '请上传资源图片。');
- return 0;
- }
- if(reName == "") {
- $.MsgBox.Alert('提示', '请输入资源名称。');
- return 0;
- }
- if(oIndustry == "") {
- $.MsgBox.Alert('提示', '请输入应用用途。');
- return 0;
- }
- if(oLen==0) {
- $.MsgBox.Alert('提示', '至少选择一个负责人');
- return 0;
- }
- }
-
- function ajsPost(pa1, pa2) {
- var oUrl = "/ajax/resource/orgSave";
- if(pa1) {
- oUrl = pa1
- }
- var $data = {};
- if(resourceId) {
- $data.resourceId = resourceId;
- }
- $data.orgId = orgId;
- $data.resourceName = $("#resourceName").val();
- $data.cooperationNotes = $("#remarkContent").val();
- $data.subject = captiureSubInd("keywordList p");
- console.log($data.subject);
- $data.supportedServices = $("#application").val();
- $data.spec = $("#modelNumber").val();
- $data.parameter = $("#performancePa").val();
- $data.descp = ue.getContent();
- $data.fns = temp;
- $data.imageIds = array;
- $data.professorIds=oProfessor;
-
- console.log(temp);
- $.ajax({
- "url": oUrl,
- "type": "POST",
- "success": function(data) {
- console.log(data)
- if(data.success) {
- if(pa2 == 1) {
- resourceId = data.data;
- $("#deleteResource").removeClass("disableLi").addClass("deleteResource");
- window.open("../resourcePreview.html?resourceId=" + data.data);
- getRecourceMe();
-
- } else if(pa2 == 2) {
- $("#deleteResource").removeClass("disableLi").addClass("deleteResource");
- resourceId = data.data;
- $.MsgBox.Alert('提示', '资源已保存草稿。');
- $("#mb_msgicon").css("background", 'url("images/sign_icon_chenggong_nor.png") 0% 0% / contain');
- getRecourceMe();
- } else {
- $.MsgBox.Alert('提示', '资源发布成功!');
- $("#mb_msgicon").css("background", 'url("images/sign_icon_chenggong_nor.png") 0% 0% / contain');
- location.href = "resourceList.html"
- }
- }
- },
- "data": $data,
- "beforeSend": function() { },
- "contentType": "application/x-www-form-urlencoded",
- "traditional": true,
- dataType: "json"
- });
- }
- function captiureSubInd(subIndu) {
- var industrys = $("#" + subIndu + "");
- var industryAll = "";
- if(industrys.size() > 0) {
- for(var i = 0; i < industrys.size(); i++) {
- industryAll += industrys[i].innerText;
- industryAll += ',';
- };
- industryAll = industryAll.substring(0, industryAll.length - 1);
- }
- return industryAll;
- }
- function UnauthorizedUser() {
- $.ajax({
- url: "/ajax/professor/qaOrgAuth",
- type: "GET",
- timeout: 10000,
- dataType: "json",
- async:"false",
- data: {
- "orgId": orgId,
- "orgAuth": 1
- },
- success: function(data, textState) {
- if(data.success) {
- console.log(data);
- unauthUser(data.data);
- }
- },
- error: function(XMLHttpRequest, textStats, errorThrown) {
- $.MsgBox.Alert('提示', '服务器请求失败')
- }
- })
- }
- UnauthorizedUser();
- function unauthUser($res) {
- if(resourceId) {
- selUse();
- }
- var osting=""
- for(var i = 0; i < $res.length; i++) {
- var img;
- var styC="";
- var oClass = autho($res[i].authType, $res[i].orgAuth, $res[i].authStatus);
- var oTitle="";
- if(!resourceId) {
- if(i<5) {
- styC="selectAdd";
- oProfessor.push($res[i].id);
- }
- }
-
- if($res[i].title) {
- oTitle=$res[i].title;
- }else{
- if($res[i].office) {
- oTitle=$res[i].office;
- }
- }
- if($res[i].hasHeadImage) {
- img = "/images/head/" + $res[i].id + "_l.jpg";
- } else {
- img = "../images/default-photo.jpg"
- }
- var oSt = '<li class="flexCenter" style="cursor:pointer;" id="'+$res[i].id+'">'
- oSt += '<div class="madiaHead useHead" id="userimg" style="background-image: url('+img+');"></div>'
- oSt += '<div class = "madiaInfo">'
- oSt += '<p class = "ellipsisSty">'
- oSt += '<span class = "h1Font" id="name">'+$res[i].name+'</span><em class="authicon '+oClass.sty+'" title="'+oClass.title+'"></em >'
- oSt += '</p>'
- oSt += '<p class="h2Font ellipsisSty">'+oTitle+'</p>'
- oSt += '</div>'
- oSt += '<div class="selectNull '+styC+'" flag=1></div>'
- oSt += '</li>'
- osting+=oSt;
- }
- $("#expertli").html(osting);
- }
-
- $("#expertli").on("click","li",function(){
- var userL=$("#expertli").find(".selectAdd").length;
- var oSel=$(this).find(".selectAdd").length;
- var oId=$(this).attr("id");
- $("#linkman").text("");
- if(oSel == 0) {
- if(userL == 5) {
- $("#linkman").text("最多可选5个负责人");
- return;
- }
- $(this).find('[flag]').addClass("selectAdd");
- oProfessor.push(oId);
- } else {
- $(this).find('[flag]').removeClass("selectAdd");
- for(var i=0;i<oProfessor.length;i++) {
- if(oId==oProfessor[i]) {
- oProfessor.splice(i, 1);
- }
- }
- }
- });
-
- function selUse() {
- $.ajax({
- url: "/ajax/resource/qaLinkman",
- type: "GET",
- timeout: 10000,
- dataType: "json",
- async:true,
- data: {
- "resourceId": resourceId,
- },
- success: function(data, textState) {
- console.log(data)
- if(data.success) {
- var arr=[];
- var arr1=[];
- var oLength=$("#expertli").find("li");
- for(var i=0;i<data.data.length;i++) {
- arr1.push(data.data[i].professorId);
- }
- for(var i=0;i<oLength.length;i++) {
- arr.push(oLength.eq(i).attr("id"));
- }
- for(var i=0;i<arr1.length;i++) {
- oProfessor.push(arr1[i]);
- oLength.eq(arr.indexOf(arr1[i])).find("[flag]").addClass("selectAdd")
- }
- }
- },
- error: function(XMLHttpRequest, textStats, errorThrown) {
- $.MsgBox.Alert('提示', '服务器请求失败')
- }
- })
- }
-
- })
|