portal html css js resource

resourceIssue.js 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. $(document).ready(function() {
  2. var resourceId = GetQueryString("resourceId");
  3. if(resourceId) {
  4. $("#deleteResource").removeClass("disableLi").addClass("deleteResource");
  5. getRecourceMe();
  6. }
  7. var orgId = $.cookie('orgId');
  8. if(orgId == "" || orgId == null || orgId == "null"){
  9. location.href = "cmp-settled-log.html";
  10. }
  11. var temp = [];
  12. var array = [];
  13. var oProfessor=[];
  14. ue = UE.getEditor('editor', {});
  15. /*获取资源信息*/
  16. function getRecourceMe() {
  17. $.ajax({
  18. "url": "/ajax/resource/queryOne",
  19. "type": "GET",
  20. "success": function(data) {
  21. console.log(data);
  22. if(data.success) {
  23. $("#uploadDd").siblings().remove();
  24. $("#fileList").append("<dd></dd><dd></dd>");
  25. temp=[];
  26. array=[];
  27. resourceHtml(data.data);
  28. }
  29. },
  30. "data": {
  31. "resourceId": resourceId
  32. },
  33. dataType: "json",
  34. 'error': function() {
  35. $.MsgBox.Alert('提示', '服务器连接超时!');
  36. }
  37. });
  38. }
  39. /*处理资源html代码*/
  40. function resourceHtml($da) {
  41. $("#resourceName").val($da.resourceName); //名字
  42. $("#application").val($da.supportedServices); //应用用途
  43. if($da.spec) { //厂商型号
  44. $("#modelNumber").val($da.spec);
  45. }
  46. if($da.parameter) { //性能参数
  47. $("#performancePa").val($da.parameter);
  48. }
  49. if($da.cooperationNotes) { //合作备注
  50. $("#remarkContent").val($da.cooperationNotes);
  51. }
  52. if($da.subject) {
  53. var oSub = $da.subject.split(",");
  54. var oSt = "";
  55. for(var i = 0; i < oSub.length; i++) {
  56. oSt += '<li><p class="h2Font">' + oSub[i] + '</p><div class="closeThis"></div></li>'
  57. }
  58. $("#keywordList").html(oSt);
  59. } else {
  60. $("#keywordList").html("");
  61. }
  62. if($da.descp) { //编辑器
  63. ue.ready(function() {
  64. ue.setContent($da.descp);
  65. });
  66. }
  67. if($da.images.length) {
  68. var arr = [];
  69. for(var i = 0; i < $da.images.length; i++) {
  70. var oString = '<dd>' +
  71. '<div class="imgItem">' +
  72. '<img src="' + "/data/resource/" + $da.images[i].imageSrc + '"/>' +
  73. '</div>' +
  74. '<div class="file-panel">' +
  75. '<span class="cancel" flag=1></span>' +
  76. '</div>' +
  77. '</dd>'
  78. arr[i] = oString;
  79. array[i] = $da.images[i].imageId;
  80. }
  81. $("#fileList dd").eq(2).remove();
  82. if($da.images.length == 1) {
  83. $("#fileList").prepend(arr[0]);
  84. } else if($da.images.length == 2) {
  85. $("#fileList dd").eq(1).remove();
  86. $("#fileList").prepend(arr[1]);
  87. $("#fileList").prepend(arr[0]);
  88. } else if($da.images.length == 3) {
  89. $("#fileList dd").eq(1).remove();
  90. $("#fileList").prepend(arr[2]);
  91. $("#fileList").prepend(arr[1]);
  92. $("#fileList").prepend(arr[0]);
  93. }
  94. }
  95. }
  96. var uploader = WebUploader.create({
  97. auto: true,
  98. fileNumLimit: 3,
  99. swf: '../js/webuploader/Uploader.swf',
  100. server: '../ajax/cachedFileUpload',
  101. fileSingleSizeLimit: 2 * 1024 * 1024,
  102. pick: {
  103. id: "#filePicker",
  104. multiple: false
  105. },
  106. accept: {
  107. title: 'Images',
  108. extensions: 'jpg,jpeg,png',
  109. mimeTypes: 'image/jpg,image/png'
  110. }
  111. });
  112. // 当有文件添加进来的时候
  113. uploader.on('fileQueued', function(file) {
  114. fileId = file.id;
  115. var $len = $("#fileList").find("img").length;
  116. if($len == 0 || $len == 1) {
  117. var oRemove = $("#fileList").find("dd");
  118. oRemove.eq(oRemove.length - 1).remove();
  119. }
  120. var $li = $(
  121. '<dd>' +
  122. '<div class="imgItem" id="' + file.id + '">' +
  123. '<img />' +
  124. '</div>' +
  125. //'<div class="info">' + file.name + '</div>' +
  126. '</dd>'
  127. ),
  128. $btns = $('<div class="file-panel">' +
  129. '<span class="cancel"></span>' +
  130. '</div>').appendTo($li),
  131. $img = $li.find('img');
  132. var $list = $("#fileList");
  133. if($len == 1) {
  134. $list.find("dd").eq(0).after($li)
  135. } else if($len == 2) {
  136. $list.find("dd").eq(1).after($li)
  137. } else {
  138. $list.prepend($li);
  139. }
  140. // 创建缩略图
  141. // 如果为非图片文件,可以不用调用此方法。
  142. // thumbnailWidth x thumbnailHeight 为 100 x 100
  143. uploader.makeThumb(file, function(error, src) {
  144. if(error) {
  145. $img.replaceWith('<span>不能预览</span>');
  146. return;
  147. }
  148. $img.attr('src', src);
  149. }, 1, 1);
  150. /*$li.on('mouseenter', function() {
  151. $btns.stop().animate({
  152. height: 30
  153. });
  154. });
  155. $li.on('mouseleave', function() {
  156. $btns.stop().animate({
  157. height: 0
  158. });
  159. });*/
  160. });
  161. uploader.onError = function(code) {
  162. console.log(code)
  163. $.MsgBox.Alert('提示', '请上传jpg、png格式的图片,大小不超过2M')
  164. };
  165. uploader.on('uploadSuccess', function(file, data) {
  166. uploader.removeFile(fileId);
  167. var cacheImageKey = temp.push(data.data[0].cacheKey);
  168. });
  169. /*删除图片*/
  170. $("#fileList").on("click", ".cancel", function() {
  171. var flag = $(this).attr("flag");
  172. var oNum = $(this).parents("dd").index();
  173. if(flag == 1) {
  174. array.splice(oNum, 1);
  175. } else {
  176. temp.splice(oNum, 1);
  177. }
  178. $(this).parent().parent().remove();
  179. var $len = $("#fileList").find("img").length;
  180. if($len != 2) {
  181. $("#fileList").append("<dd></dd>")
  182. }
  183. });
  184. /*资源名称*/
  185. $("#resourceName").bind({
  186. focus: function() {
  187. $("#resourceNamePrompt").show();
  188. },
  189. blur: function() {
  190. $("#resourceNamePrompt").hide();
  191. },
  192. keyup: function() {
  193. if($(this).val().length > 30) {
  194. $(this).val($(this).val().substr(0, 30));
  195. }
  196. }
  197. })
  198. /*关键词*/
  199. $("#keywordName").bind({
  200. focus: function() {
  201. $("#keywordPrompt").show().text('最多可添加5个关键词,每个关键词10字以内');
  202. },
  203. blur: function() {
  204. $("#keywordPrompt").hide();
  205. },
  206. keyup: function() {
  207. var lNum=$.trim($(this).val()).length;
  208. if(lNum > 10) {
  209. $(this).val($(this).val().substr(0, 10));
  210. } else if(0 < lNum && lNum < 10) {
  211. $("#addKeyword").show();
  212. $.ajax({
  213. "url": "/ajax/dataDict/qaHotKey",
  214. "type": "GET",
  215. "success": function(data) {
  216. console.log(data);
  217. if(data.success) {
  218. if(data.data.length==0) {
  219. $("#keyList").addClass("displayNone");
  220. $("#keyList ul").html("");
  221. }else{
  222. $("#keyList").removeClass("displayNone");
  223. var oSr = "";
  224. for(var i = 0; i < data.data.length; i++) {
  225. oSr += '<li><p class="h2Font">' + data.data[i].caption + '</p></li>'
  226. }
  227. $("#keyList ul").html(oSr);
  228. }
  229. }
  230. },
  231. "data": {
  232. "key": $(this).val()
  233. },
  234. dataType: "json",
  235. 'error': function() {
  236. $.MsgBox.Alert('提示', '服务器连接超时!');
  237. }
  238. });
  239. }if(lNum == 0){
  240. $("#addKeyword").hide();
  241. $("#keyList ul").html("");
  242. }
  243. }
  244. })
  245. $("#keyList ul").on("click","li",function(){
  246. keyWord($(this).find("p").text());
  247. $("#keyList ul").html("");
  248. $("#keyList").addClass("displayNone");
  249. $("#addKeyword").hide();
  250. })
  251. /*添加关键词*/
  252. $("#addKeyword").click(function() {
  253. keyWord($("#keywordName").val());
  254. })
  255. function keyWord(atl) {
  256. var oKeywordName =$.trim(atl);
  257. var keywordListLength = $("#keywordList").find("li");
  258. if(oKeywordName.length == 0) {
  259. $("#keywordPrompt").text('关键词输入不能为空');
  260. return;
  261. }
  262. for(var i = 0; i < keywordListLength.length; i++) {
  263. if(oKeywordName == keywordListLength.find("p").eq(i).text()) {
  264. $("#keywordPrompt").text('该关键词已存在');
  265. return;
  266. }
  267. }
  268. $("#keyList ul").html("");
  269. $("#addKeyword").hide();
  270. var oStr = '<li><p class="h2Font">' + oKeywordName + '</p><div class="closeThis"></div></li>'
  271. $("#keywordList").append(oStr);
  272. $("#keywordName").val("");
  273. if((keywordListLength.length + 1) == 5) {
  274. $("#keywordHide").hide();
  275. $("#keyList").css("border-top","none");
  276. }
  277. }
  278. /*删除关键词*/
  279. $("#keywordList").on("click", ".closeThis", function() {
  280. $(this).parent().remove();
  281. var keywordListLength = $("#keywordList").find("li");
  282. if(keywordListLength.length < 5) {
  283. $("#keywordHide").show();
  284. $("#keyList").css("border-top","1px solid #E5E5E5");
  285. }
  286. });
  287. /*应用用途*/
  288. $("#application").bind({
  289. focus: function() {
  290. $("#applicationPrompt").show();
  291. },
  292. blur: function() {
  293. $("#applicationPrompt").hide();
  294. },
  295. keyup: function() {
  296. if($(this).val().length > 50) {
  297. $(this).val($(this).val().substr(0, 50));
  298. }
  299. }
  300. })
  301. /*厂商型号*/
  302. $("#modelNumber").bind({
  303. focus: function() {
  304. $("#model").show();
  305. },
  306. blur: function() {
  307. $("#model").hide();
  308. },
  309. keyup: function() {
  310. if($(this).val().length > 50) {
  311. $(this).val($(this).val().substr(0, 50));
  312. }
  313. }
  314. });
  315. function para(sel1, sel2, sel3) {
  316. $(sel1).bind({
  317. focus: function() {
  318. $(sel2).show();
  319. },
  320. blur: function() {
  321. $(sel2).hide();
  322. },
  323. keyup: function(e) {
  324. if($(this).val().length > 200) {
  325. $(this).val($(this).val().substring(0, 200));
  326. e.preventDefault();
  327. }
  328. setTimeout(function() {
  329. $(sel3).text($(sel1).val().length);
  330. }, 1);
  331. }
  332. });
  333. }
  334. /*性能参数*/
  335. para("#performancePa", "#performance", "#entry1");
  336. /*合作备注*/
  337. para('#remarkContent', '#remark', '#entry2');
  338. /*发布*/
  339. $(".goFabu").click(function() {
  340. var oYes = term();
  341. if(oYes == 0) {
  342. return;
  343. }
  344. $.MsgBox.Confirm("提示", "确认发布该资源?", ajsPost);
  345. })
  346. /*预览*/
  347. $("#oPreview").click(function() {
  348. var oYes = term();
  349. if(oYes == 0) {
  350. return;
  351. }
  352. ajsPost("/ajax/resource/orgDraft", 1);
  353. })
  354. /*存草稿*/
  355. $("#oDraft").click(function() {
  356. var oYes = term();
  357. if(oYes == 0) {
  358. return;
  359. }
  360. ajsPost("/ajax/resource/orgDraft", 2);
  361. })
  362. /*删除*/
  363. $("#operateBlocko").on("click", ".deleteResource", function() {
  364. $.MsgBox.Confirm("提示", "确认删除该资源?", deleResource);
  365. })
  366. /*删除函数*/
  367. function deleResource() {
  368. $.ajax({
  369. "url": "/ajax/resource/delete",
  370. "type": "POST",
  371. "success": function(data) {
  372. console.log(data)
  373. if(data.success) {
  374. location.href = "resourceList.html"
  375. }
  376. },
  377. "data": {
  378. "resourceId": resourceId
  379. },
  380. "beforeSend": function() { /*console.log(this.data)*/ },
  381. "contentType": "application/x-www-form-urlencoded",
  382. dataType: "json"
  383. });
  384. }
  385. /*条件是否匹配*/
  386. function term() {
  387. var $len = $("#fileList").find("img").length;
  388. var reName = $("#resourceName").val();
  389. var oIndustry = $("#application").val();
  390. var oLen=$("#expertli").find(".selectAdd").length
  391. if($len == 0) {
  392. $.MsgBox.Alert('提示', '请上传资源图片。');
  393. return 0;
  394. }
  395. if(reName == "") {
  396. $.MsgBox.Alert('提示', '请输入资源名称。');
  397. return 0;
  398. }
  399. if(oIndustry == "") {
  400. $.MsgBox.Alert('提示', '请输入应用用途。');
  401. return 0;
  402. }
  403. if(oLen==0) {
  404. $.MsgBox.Alert('提示', '至少选择一个负责人');
  405. return 0;
  406. }
  407. }
  408. /*发布函数*/
  409. function ajsPost(pa1, pa2) {
  410. var oUrl = "/ajax/resource/orgSave";
  411. if(pa1) {
  412. oUrl = pa1
  413. }
  414. var $data = {};
  415. if(resourceId) {
  416. $data.resourceId = resourceId;
  417. }
  418. $data.orgId = orgId;
  419. $data.resourceName = $("#resourceName").val(); //资源名字
  420. $data.cooperationNotes = $("#remarkContent").val(); //合作备注
  421. $data.subject = captiureSubInd("keywordList p");
  422. console.log($data.subject);
  423. $data.supportedServices = $("#application").val();
  424. $data.spec = $("#modelNumber").val();
  425. $data.parameter = $("#performancePa").val();
  426. $data.descp = ue.getContent();
  427. $data.fns = temp;
  428. $data.imageIds = array;
  429. $data.professorIds=oProfessor;
  430. //$data.imageIds:资源图片ID NULL 字符串数组
  431. console.log(temp);
  432. $.ajax({
  433. "url": oUrl,
  434. "type": "POST",
  435. "success": function(data) {
  436. console.log(data)
  437. if(data.success) {
  438. if(pa2 == 1) {
  439. resourceId = data.data;
  440. $("#deleteResource").removeClass("disableLi").addClass("deleteResource");
  441. window.open("../resourcePreview.html?resourceId=" + data.data);
  442. getRecourceMe();
  443. //弹出预览
  444. } else if(pa2 == 2) {
  445. $("#deleteResource").removeClass("disableLi").addClass("deleteResource");
  446. resourceId = data.data;
  447. $.MsgBox.Alert('提示', '资源已保存草稿。');
  448. $("#mb_msgicon").css("background", 'url("images/sign_icon_chenggong_nor.png") 0% 0% / contain');
  449. getRecourceMe();
  450. } else {
  451. $.MsgBox.Alert('提示', '资源发布成功!');
  452. $("#mb_msgicon").css("background", 'url("images/sign_icon_chenggong_nor.png") 0% 0% / contain');
  453. location.href = "resourceList.html"
  454. }
  455. }
  456. },
  457. "data": $data,
  458. "beforeSend": function() { /*console.log(this.data)*/ },
  459. "contentType": "application/x-www-form-urlencoded",
  460. "traditional": true,
  461. dataType: "json"
  462. });
  463. }
  464. function captiureSubInd(subIndu) {
  465. var industrys = $("#" + subIndu + "");
  466. var industryAll = "";
  467. if(industrys.size() > 0) {
  468. for(var i = 0; i < industrys.size(); i++) {
  469. industryAll += industrys[i].innerText;
  470. industryAll += ',';
  471. };
  472. industryAll = industryAll.substring(0, industryAll.length - 1);
  473. }
  474. return industryAll;
  475. }
  476. function UnauthorizedUser() {
  477. $.ajax({
  478. url: "/ajax/professor/qaOrgAuth",
  479. type: "GET",
  480. timeout: 10000,
  481. dataType: "json",
  482. async:"false",
  483. data: {
  484. "orgId": orgId,
  485. "orgAuth": 1
  486. },
  487. success: function(data, textState) {
  488. if(data.success) {
  489. console.log(data);
  490. unauthUser(data.data);
  491. }
  492. },
  493. error: function(XMLHttpRequest, textStats, errorThrown) {
  494. $.MsgBox.Alert('提示', '服务器请求失败')
  495. }
  496. })
  497. }
  498. UnauthorizedUser();
  499. function unauthUser($res) {
  500. if(resourceId) {
  501. selUse();
  502. }
  503. var osting=""
  504. for(var i = 0; i < $res.length; i++) {
  505. var img;
  506. var styC="";
  507. var oClass = autho($res[i].authType, $res[i].orgAuth, $res[i].authStatus);
  508. var oTitle="";
  509. if(!resourceId) {
  510. if(i<5) {
  511. styC="selectAdd";
  512. oProfessor.push($res[i].id);
  513. }
  514. }
  515. if($res[i].title) {
  516. oTitle=$res[i].title;
  517. }else{
  518. if($res[i].office) {
  519. oTitle=$res[i].office;
  520. }
  521. }
  522. if($res[i].hasHeadImage) {
  523. img = "/images/head/" + $res[i].id + "_l.jpg";
  524. } else {
  525. img = "../images/default-photo.jpg"
  526. }
  527. var oSt = '<li class="flexCenter" style="cursor:pointer;" id="'+$res[i].id+'">'
  528. oSt += '<div class="madiaHead useHead" id="userimg" style="background-image: url('+img+');"></div>'
  529. oSt += '<div class = "madiaInfo">'
  530. oSt += '<p class = "ellipsisSty">'
  531. oSt += '<span class = "h1Font" id="name">'+$res[i].name+'</span><em class="authicon '+oClass.sty+'" title="'+oClass.title+'"></em >'
  532. oSt += '</p>'
  533. oSt += '<p class="h2Font ellipsisSty">'+oTitle+'</p>'
  534. oSt += '</div>'
  535. oSt += '<div class="selectNull '+styC+'" flag=1></div>'
  536. oSt += '</li>'
  537. osting+=oSt;
  538. }
  539. $("#expertli").html(osting);
  540. }
  541. /*选择用户*/
  542. $("#expertli").on("click","li",function(){
  543. var userL=$("#expertli").find(".selectAdd").length;
  544. var oSel=$(this).find(".selectAdd").length;
  545. var oId=$(this).attr("id");
  546. $("#linkman").text("");
  547. if(oSel == 0) {
  548. if(userL == 5) {
  549. $("#linkman").text("最多可选5个负责人");
  550. return;
  551. }
  552. $(this).find('[flag]').addClass("selectAdd");
  553. oProfessor.push(oId);
  554. } else {
  555. $(this).find('[flag]').removeClass("selectAdd");
  556. for(var i=0;i<oProfessor.length;i++) {
  557. if(oId==oProfessor[i]) {
  558. oProfessor.splice(i, 1);
  559. }
  560. }
  561. }
  562. });
  563. function selUse() {
  564. $.ajax({
  565. url: "/ajax/resource/qaLinkman",
  566. type: "GET",
  567. timeout: 10000,
  568. dataType: "json",
  569. async:true,
  570. data: {
  571. "resourceId": resourceId,
  572. },
  573. success: function(data, textState) {
  574. console.log(data)
  575. if(data.success) {
  576. var arr=[];
  577. var arr1=[];
  578. var oLength=$("#expertli").find("li");
  579. for(var i=0;i<data.data.length;i++) {
  580. arr1.push(data.data[i].professorId);
  581. }
  582. for(var i=0;i<oLength.length;i++) {
  583. arr.push(oLength.eq(i).attr("id"));
  584. }
  585. for(var i=0;i<arr1.length;i++) {
  586. oProfessor.push(arr1[i]);
  587. oLength.eq(arr.indexOf(arr1[i])).find("[flag]").addClass("selectAdd")
  588. }
  589. }
  590. },
  591. error: function(XMLHttpRequest, textStats, errorThrown) {
  592. $.MsgBox.Alert('提示', '服务器请求失败')
  593. }
  594. })
  595. }
  596. })